From aa83cc63adf8a603a83d393c7c037aa97f905113 Mon Sep 17 00:00:00 2001 From: Autumn Lamonte Date: Fri, 7 Jan 2022 06:45:15 -0600 Subject: [PATCH] Update to 2022 --- .gitignore | 2 +- resources/help.xml | 2 +- src/jexer/EditMenuUser.java | 4 ++-- src/jexer/Scrollable.java | 4 ++-- src/jexer/TAction.java | 4 ++-- src/jexer/TApplication.java | 4 ++-- src/jexer/TButton.java | 4 ++-- src/jexer/TCalendar.java | 4 ++-- src/jexer/TCheckBox.java | 4 ++-- src/jexer/TComboBox.java | 4 ++-- src/jexer/TCommand.java | 4 ++-- src/jexer/TDesktop.java | 4 ++-- src/jexer/TDirectoryList.java | 4 ++-- src/jexer/TEditColorThemeWindow.java | 4 ++-- src/jexer/TEditorWidget.java | 4 ++-- src/jexer/TEditorWindow.java | 4 ++-- src/jexer/TExceptionDialog.java | 4 ++-- src/jexer/TField.java | 4 ++-- src/jexer/TFileOpenBox.java | 4 ++-- src/jexer/THScroller.java | 4 ++-- src/jexer/THelpWindow.java | 4 ++-- src/jexer/TImage.java | 4 ++-- src/jexer/TImageWindow.java | 4 ++-- src/jexer/TInputBox.java | 4 ++-- src/jexer/TKeypress.java | 4 ++-- src/jexer/TLabel.java | 4 ++-- src/jexer/TList.java | 4 ++-- src/jexer/TMessageBox.java | 4 ++-- src/jexer/TPanel.java | 4 ++-- src/jexer/TPasswordField.java | 4 ++-- src/jexer/TProgressBar.java | 4 ++-- src/jexer/TRadioButton.java | 4 ++-- src/jexer/TRadioGroup.java | 4 ++-- src/jexer/TScreenOptionsWindow.java | 4 ++-- src/jexer/TScrollableWidget.java | 4 ++-- src/jexer/TScrollableWindow.java | 4 ++-- src/jexer/TSpinner.java | 4 ++-- src/jexer/TSplitPane.java | 4 ++-- src/jexer/TStatusBar.java | 4 ++-- src/jexer/TTableWidget.java | 4 ++-- src/jexer/TTableWindow.java | 4 ++-- src/jexer/TTerminalWidget.java | 4 ++-- src/jexer/TTerminalWindow.java | 4 ++-- src/jexer/TText.java | 4 ++-- src/jexer/TTextPicture.java | 4 ++-- src/jexer/TTextPictureWindow.java | 4 ++-- src/jexer/TTimer.java | 4 ++-- src/jexer/TVScroller.java | 4 ++-- src/jexer/TWidget.java | 4 ++-- src/jexer/TWindow.java | 4 ++-- src/jexer/backend/Backend.java | 4 ++-- src/jexer/backend/ECMA48Backend.java | 4 ++-- src/jexer/backend/ECMA48Terminal.java | 4 ++-- src/jexer/backend/GenericBackend.java | 4 ++-- src/jexer/backend/GlyphMaker.java | 4 ++-- src/jexer/backend/HQSixelEncoder.java | 4 ++-- src/jexer/backend/HeadlessBackend.java | 4 ++-- src/jexer/backend/LegacySixelEncoder.java | 4 ++-- src/jexer/backend/LogicalScreen.java | 4 ++-- src/jexer/backend/MultiBackend.java | 4 ++-- src/jexer/backend/MultiScreen.java | 4 ++-- src/jexer/backend/Screen.java | 4 ++-- src/jexer/backend/SessionInfo.java | 4 ++-- src/jexer/backend/SixelEncoder.java | 4 ++-- src/jexer/backend/SwingBackend.java | 4 ++-- src/jexer/backend/SwingComponent.java | 4 ++-- src/jexer/backend/SwingSessionInfo.java | 4 ++-- src/jexer/backend/SwingTerminal.java | 4 ++-- src/jexer/backend/TSessionInfo.java | 4 ++-- src/jexer/backend/TTYSessionInfo.java | 4 ++-- src/jexer/backend/TWindowBackend.java | 4 ++-- src/jexer/backend/TerminalReader.java | 4 ++-- src/jexer/backend/package-info.java | 4 ++-- src/jexer/bits/Animation.java | 4 ++-- src/jexer/bits/Cell.java | 4 ++-- src/jexer/bits/CellAttributes.java | 4 ++-- src/jexer/bits/Clipboard.java | 4 ++-- src/jexer/bits/Color.java | 4 ++-- src/jexer/bits/ColorTheme.java | 4 ++-- src/jexer/bits/GraphicsChars.java | 4 ++-- src/jexer/bits/ImageUtils.java | 4 ++-- src/jexer/bits/MnemonicString.java | 4 ++-- src/jexer/bits/StringUtils.java | 4 ++-- src/jexer/bits/WidgetUtils.java | 4 ++-- src/jexer/bits/package-info.java | 4 ++-- src/jexer/demos/Demo1.java | 4 ++-- src/jexer/demos/Demo2.java | 4 ++-- src/jexer/demos/Demo3.java | 4 ++-- src/jexer/demos/Demo4.java | 4 ++-- src/jexer/demos/Demo5.java | 4 ++-- src/jexer/demos/Demo6.java | 4 ++-- src/jexer/demos/Demo7.java | 4 ++-- src/jexer/demos/Demo8.java | 4 ++-- src/jexer/demos/DemoApplication.java | 4 ++-- src/jexer/demos/DemoCheckBoxWindow.java | 4 ++-- src/jexer/demos/DemoEditorWindow.java | 4 ++-- src/jexer/demos/DemoMainWindow.java | 4 ++-- src/jexer/demos/DemoMsgBoxWindow.java | 4 ++-- src/jexer/demos/DemoPixelsWindow.java | 4 ++-- src/jexer/demos/DemoTableWindow.java | 4 ++-- src/jexer/demos/DemoTextFieldWindow.java | 4 ++-- src/jexer/demos/DemoTextWindow.java | 4 ++-- src/jexer/demos/DemoTreeViewWindow.java | 4 ++-- src/jexer/demos/DesktopDemo.java | 4 ++-- src/jexer/demos/DesktopDemoApplication.java | 4 ++-- src/jexer/demos/package-info.java | 4 ++-- src/jexer/event/TCommandEvent.java | 4 ++-- src/jexer/event/TInputEvent.java | 4 ++-- src/jexer/event/TKeypressEvent.java | 4 ++-- src/jexer/event/TMenuEvent.java | 4 ++-- src/jexer/event/TMouseEvent.java | 4 ++-- src/jexer/event/TResizeEvent.java | 4 ++-- src/jexer/event/package-info.java | 4 ++-- src/jexer/help/HelpFile.java | 4 ++-- src/jexer/help/Link.java | 4 ++-- src/jexer/help/THelpText.java | 4 ++-- src/jexer/help/TParagraph.java | 4 ++-- src/jexer/help/TWord.java | 4 ++-- src/jexer/help/Topic.java | 4 ++-- src/jexer/help/package-info.java | 4 ++-- src/jexer/io/ReadTimeoutException.java | 4 ++-- src/jexer/io/TimeoutInputStream.java | 4 ++-- src/jexer/io/package-info.java | 4 ++-- src/jexer/layout/BoxLayoutManager.java | 4 ++-- src/jexer/layout/LayoutManager.java | 4 ++-- src/jexer/layout/StretchLayoutManager.java | 4 ++-- src/jexer/layout/package-info.java | 4 ++-- src/jexer/menu/TMenu.java | 4 ++-- src/jexer/menu/TMenuItem.java | 4 ++-- src/jexer/menu/TMenuSeparator.java | 4 ++-- src/jexer/menu/TSubMenu.java | 4 ++-- src/jexer/menu/package-info.java | 4 ++-- src/jexer/net/TelnetInputStream.java | 4 ++-- src/jexer/net/TelnetOutputStream.java | 4 ++-- src/jexer/net/TelnetServerSocket.java | 4 ++-- src/jexer/net/TelnetSocket.java | 4 ++-- src/jexer/net/package-info.java | 4 ++-- src/jexer/package-info.java | 4 ++-- src/jexer/tackboard/Bitmap.java | 4 ++-- src/jexer/tackboard/MousePointer.java | 4 ++-- src/jexer/tackboard/Pointer.java | 4 ++-- src/jexer/tackboard/Tackboard.java | 4 ++-- src/jexer/tackboard/TackboardItem.java | 4 ++-- src/jexer/tackboard/Text.java | 4 ++-- src/jexer/tackboard/package-info.java | 4 ++-- src/jexer/teditor/Document.java | 4 ++-- src/jexer/teditor/Highlighter.java | 4 ++-- src/jexer/teditor/Line.java | 4 ++-- src/jexer/teditor/Word.java | 4 ++-- src/jexer/teditor/package-info.java | 4 ++-- src/jexer/tterminal/DECCharacterSets.java | 4 ++-- src/jexer/tterminal/DisplayLine.java | 4 ++-- src/jexer/tterminal/DisplayListener.java | 4 ++-- src/jexer/tterminal/ECMA48.java | 4 ++-- src/jexer/tterminal/SixelDecoder.java | 4 ++-- src/jexer/tterminal/package-info.java | 4 ++-- src/jexer/ttree/TDirectoryTreeItem.java | 4 ++-- src/jexer/ttree/TTreeItem.java | 4 ++-- src/jexer/ttree/TTreeView.java | 4 ++-- src/jexer/ttree/TTreeViewWidget.java | 4 ++-- src/jexer/ttree/TTreeViewWindow.java | 4 ++-- src/jexer/ttree/package-info.java | 4 ++-- 162 files changed, 322 insertions(+), 322 deletions(-) diff --git a/.gitignore b/.gitignore index 888e7eb..547c5a0 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ build/** *.png *.gif *.six -autumn.bash +autumn.bash* run_swing.bash run_xterm.bash err* diff --git a/resources/help.xml b/resources/help.xml index f54833e..a105237 100644 --- a/resources/help.xml +++ b/resources/help.xml @@ -50,7 +50,7 @@ - Copyright (C) 2021 Autumn Lamonte + Copyright (C) 2022 Autumn Lamonte Available to all under the MIT License. diff --git a/src/jexer/EditMenuUser.java b/src/jexer/EditMenuUser.java index 5a8bfe6..73a8c4e 100644 --- a/src/jexer/EditMenuUser.java +++ b/src/jexer/EditMenuUser.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/Scrollable.java b/src/jexer/Scrollable.java index b180756..1235bb0 100644 --- a/src/jexer/Scrollable.java +++ b/src/jexer/Scrollable.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TAction.java b/src/jexer/TAction.java index 4ca6b9d..1322665 100644 --- a/src/jexer/TAction.java +++ b/src/jexer/TAction.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TApplication.java b/src/jexer/TApplication.java index fa8ce34..8838fb3 100644 --- a/src/jexer/TApplication.java +++ b/src/jexer/TApplication.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TButton.java b/src/jexer/TButton.java index 4230998..0078266 100644 --- a/src/jexer/TButton.java +++ b/src/jexer/TButton.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TCalendar.java b/src/jexer/TCalendar.java index 56514fb..67340b8 100644 --- a/src/jexer/TCalendar.java +++ b/src/jexer/TCalendar.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TCheckBox.java b/src/jexer/TCheckBox.java index 634db0b..4eb85ff 100644 --- a/src/jexer/TCheckBox.java +++ b/src/jexer/TCheckBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TComboBox.java b/src/jexer/TComboBox.java index cae6c12..85c024c 100644 --- a/src/jexer/TComboBox.java +++ b/src/jexer/TComboBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TCommand.java b/src/jexer/TCommand.java index 454caff..272baff 100644 --- a/src/jexer/TCommand.java +++ b/src/jexer/TCommand.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TDesktop.java b/src/jexer/TDesktop.java index c5c58f5..d44f617 100644 --- a/src/jexer/TDesktop.java +++ b/src/jexer/TDesktop.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TDirectoryList.java b/src/jexer/TDirectoryList.java index c1323d5..c3badbd 100644 --- a/src/jexer/TDirectoryList.java +++ b/src/jexer/TDirectoryList.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TEditColorThemeWindow.java b/src/jexer/TEditColorThemeWindow.java index c8fd086..1301d19 100644 --- a/src/jexer/TEditColorThemeWindow.java +++ b/src/jexer/TEditColorThemeWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TEditorWidget.java b/src/jexer/TEditorWidget.java index 8656a47..0a86483 100644 --- a/src/jexer/TEditorWidget.java +++ b/src/jexer/TEditorWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TEditorWindow.java b/src/jexer/TEditorWindow.java index f289e77..9dbe446 100644 --- a/src/jexer/TEditorWindow.java +++ b/src/jexer/TEditorWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TExceptionDialog.java b/src/jexer/TExceptionDialog.java index 583121a..4f09728 100644 --- a/src/jexer/TExceptionDialog.java +++ b/src/jexer/TExceptionDialog.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TField.java b/src/jexer/TField.java index f2f10b1..0e06072 100644 --- a/src/jexer/TField.java +++ b/src/jexer/TField.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TFileOpenBox.java b/src/jexer/TFileOpenBox.java index 999f982..2edf23c 100644 --- a/src/jexer/TFileOpenBox.java +++ b/src/jexer/TFileOpenBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/THScroller.java b/src/jexer/THScroller.java index 8d6fc52..8fcf74c 100644 --- a/src/jexer/THScroller.java +++ b/src/jexer/THScroller.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/THelpWindow.java b/src/jexer/THelpWindow.java index 47ad718..bb7acce 100644 --- a/src/jexer/THelpWindow.java +++ b/src/jexer/THelpWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TImage.java b/src/jexer/TImage.java index e0b834f..f6a8eb8 100644 --- a/src/jexer/TImage.java +++ b/src/jexer/TImage.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TImageWindow.java b/src/jexer/TImageWindow.java index fbcc7f2..2e5b6ee 100644 --- a/src/jexer/TImageWindow.java +++ b/src/jexer/TImageWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TInputBox.java b/src/jexer/TInputBox.java index 220836d..97727a4 100644 --- a/src/jexer/TInputBox.java +++ b/src/jexer/TInputBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TKeypress.java b/src/jexer/TKeypress.java index c1bda60..8095dac 100644 --- a/src/jexer/TKeypress.java +++ b/src/jexer/TKeypress.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TLabel.java b/src/jexer/TLabel.java index 5183097..64df631 100644 --- a/src/jexer/TLabel.java +++ b/src/jexer/TLabel.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TList.java b/src/jexer/TList.java index e953e90..e49970b 100644 --- a/src/jexer/TList.java +++ b/src/jexer/TList.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TMessageBox.java b/src/jexer/TMessageBox.java index 1e2b646..33ec5c6 100644 --- a/src/jexer/TMessageBox.java +++ b/src/jexer/TMessageBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TPanel.java b/src/jexer/TPanel.java index 2a1c0f5..a81889c 100644 --- a/src/jexer/TPanel.java +++ b/src/jexer/TPanel.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TPasswordField.java b/src/jexer/TPasswordField.java index 8d59169..9fdcb6c 100644 --- a/src/jexer/TPasswordField.java +++ b/src/jexer/TPasswordField.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TProgressBar.java b/src/jexer/TProgressBar.java index 473446d..1c55a75 100644 --- a/src/jexer/TProgressBar.java +++ b/src/jexer/TProgressBar.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TRadioButton.java b/src/jexer/TRadioButton.java index e3d8c6b..40f8c10 100644 --- a/src/jexer/TRadioButton.java +++ b/src/jexer/TRadioButton.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TRadioGroup.java b/src/jexer/TRadioGroup.java index a3824af..9c07ce3 100644 --- a/src/jexer/TRadioGroup.java +++ b/src/jexer/TRadioGroup.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TScreenOptionsWindow.java b/src/jexer/TScreenOptionsWindow.java index d0bf7d3..60ff890 100644 --- a/src/jexer/TScreenOptionsWindow.java +++ b/src/jexer/TScreenOptionsWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TScrollableWidget.java b/src/jexer/TScrollableWidget.java index f6f1d89..8b7adfb 100644 --- a/src/jexer/TScrollableWidget.java +++ b/src/jexer/TScrollableWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TScrollableWindow.java b/src/jexer/TScrollableWindow.java index 7d549d1..331bc43 100644 --- a/src/jexer/TScrollableWindow.java +++ b/src/jexer/TScrollableWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TSpinner.java b/src/jexer/TSpinner.java index 7c88e68..1ac5113 100644 --- a/src/jexer/TSpinner.java +++ b/src/jexer/TSpinner.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TSplitPane.java b/src/jexer/TSplitPane.java index c517508..1dec47b 100644 --- a/src/jexer/TSplitPane.java +++ b/src/jexer/TSplitPane.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TStatusBar.java b/src/jexer/TStatusBar.java index 3383f24..dce1332 100644 --- a/src/jexer/TStatusBar.java +++ b/src/jexer/TStatusBar.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTableWidget.java b/src/jexer/TTableWidget.java index 34683e2..22bb20e 100644 --- a/src/jexer/TTableWidget.java +++ b/src/jexer/TTableWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTableWindow.java b/src/jexer/TTableWindow.java index 83be601..adad1cd 100644 --- a/src/jexer/TTableWindow.java +++ b/src/jexer/TTableWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTerminalWidget.java b/src/jexer/TTerminalWidget.java index a3b1275..23603f2 100644 --- a/src/jexer/TTerminalWidget.java +++ b/src/jexer/TTerminalWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTerminalWindow.java b/src/jexer/TTerminalWindow.java index 66b9771..4098773 100644 --- a/src/jexer/TTerminalWindow.java +++ b/src/jexer/TTerminalWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TText.java b/src/jexer/TText.java index c18714d..4f04ed4 100644 --- a/src/jexer/TText.java +++ b/src/jexer/TText.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTextPicture.java b/src/jexer/TTextPicture.java index c707bdb..8ae4007 100644 --- a/src/jexer/TTextPicture.java +++ b/src/jexer/TTextPicture.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTextPictureWindow.java b/src/jexer/TTextPictureWindow.java index a2d62fb..30c1cc6 100644 --- a/src/jexer/TTextPictureWindow.java +++ b/src/jexer/TTextPictureWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TTimer.java b/src/jexer/TTimer.java index 83bfbeb..052ffa6 100644 --- a/src/jexer/TTimer.java +++ b/src/jexer/TTimer.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TVScroller.java b/src/jexer/TVScroller.java index d1893a0..b0e3087 100644 --- a/src/jexer/TVScroller.java +++ b/src/jexer/TVScroller.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TWidget.java b/src/jexer/TWidget.java index 51200aa..320bf93 100644 --- a/src/jexer/TWidget.java +++ b/src/jexer/TWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/TWindow.java b/src/jexer/TWindow.java index c09c195..88244b4 100644 --- a/src/jexer/TWindow.java +++ b/src/jexer/TWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer; diff --git a/src/jexer/backend/Backend.java b/src/jexer/backend/Backend.java index b0ecdb1..30a56a7 100644 --- a/src/jexer/backend/Backend.java +++ b/src/jexer/backend/Backend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/ECMA48Backend.java b/src/jexer/backend/ECMA48Backend.java index 2d79c29..dd01060 100644 --- a/src/jexer/backend/ECMA48Backend.java +++ b/src/jexer/backend/ECMA48Backend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/ECMA48Terminal.java b/src/jexer/backend/ECMA48Terminal.java index 6d10fe1..07ab596 100644 --- a/src/jexer/backend/ECMA48Terminal.java +++ b/src/jexer/backend/ECMA48Terminal.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/GenericBackend.java b/src/jexer/backend/GenericBackend.java index d2b36d4..3ac5afd 100644 --- a/src/jexer/backend/GenericBackend.java +++ b/src/jexer/backend/GenericBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/GlyphMaker.java b/src/jexer/backend/GlyphMaker.java index 27be73f..73f94bb 100644 --- a/src/jexer/backend/GlyphMaker.java +++ b/src/jexer/backend/GlyphMaker.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/HQSixelEncoder.java b/src/jexer/backend/HQSixelEncoder.java index b86b2ae..0bfec18 100644 --- a/src/jexer/backend/HQSixelEncoder.java +++ b/src/jexer/backend/HQSixelEncoder.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/HeadlessBackend.java b/src/jexer/backend/HeadlessBackend.java index 6fadff9..6fcdd5f 100644 --- a/src/jexer/backend/HeadlessBackend.java +++ b/src/jexer/backend/HeadlessBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/LegacySixelEncoder.java b/src/jexer/backend/LegacySixelEncoder.java index d6c1194..bcf26fa 100644 --- a/src/jexer/backend/LegacySixelEncoder.java +++ b/src/jexer/backend/LegacySixelEncoder.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/LogicalScreen.java b/src/jexer/backend/LogicalScreen.java index 21cc3b7..d351ff9 100644 --- a/src/jexer/backend/LogicalScreen.java +++ b/src/jexer/backend/LogicalScreen.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/MultiBackend.java b/src/jexer/backend/MultiBackend.java index 7f86ca8..3578f99 100644 --- a/src/jexer/backend/MultiBackend.java +++ b/src/jexer/backend/MultiBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/MultiScreen.java b/src/jexer/backend/MultiScreen.java index b4182fb..26183f6 100644 --- a/src/jexer/backend/MultiScreen.java +++ b/src/jexer/backend/MultiScreen.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/Screen.java b/src/jexer/backend/Screen.java index 5610edd..cbd441b 100644 --- a/src/jexer/backend/Screen.java +++ b/src/jexer/backend/Screen.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SessionInfo.java b/src/jexer/backend/SessionInfo.java index 7f0e924..94d9322 100644 --- a/src/jexer/backend/SessionInfo.java +++ b/src/jexer/backend/SessionInfo.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SixelEncoder.java b/src/jexer/backend/SixelEncoder.java index 21df84f..1b26427 100644 --- a/src/jexer/backend/SixelEncoder.java +++ b/src/jexer/backend/SixelEncoder.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SwingBackend.java b/src/jexer/backend/SwingBackend.java index f63f636..858dc04 100644 --- a/src/jexer/backend/SwingBackend.java +++ b/src/jexer/backend/SwingBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SwingComponent.java b/src/jexer/backend/SwingComponent.java index f40904c..bf37fc4 100644 --- a/src/jexer/backend/SwingComponent.java +++ b/src/jexer/backend/SwingComponent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SwingSessionInfo.java b/src/jexer/backend/SwingSessionInfo.java index d634987..5154140 100644 --- a/src/jexer/backend/SwingSessionInfo.java +++ b/src/jexer/backend/SwingSessionInfo.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/SwingTerminal.java b/src/jexer/backend/SwingTerminal.java index f6473d0..dd986b0 100644 --- a/src/jexer/backend/SwingTerminal.java +++ b/src/jexer/backend/SwingTerminal.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/TSessionInfo.java b/src/jexer/backend/TSessionInfo.java index 715c61b..02b716e 100644 --- a/src/jexer/backend/TSessionInfo.java +++ b/src/jexer/backend/TSessionInfo.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/TTYSessionInfo.java b/src/jexer/backend/TTYSessionInfo.java index 399dcee..f9674f8 100644 --- a/src/jexer/backend/TTYSessionInfo.java +++ b/src/jexer/backend/TTYSessionInfo.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/TWindowBackend.java b/src/jexer/backend/TWindowBackend.java index fb50b74..dd11cce 100644 --- a/src/jexer/backend/TWindowBackend.java +++ b/src/jexer/backend/TWindowBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/TerminalReader.java b/src/jexer/backend/TerminalReader.java index 6e4f180..1342e42 100644 --- a/src/jexer/backend/TerminalReader.java +++ b/src/jexer/backend/TerminalReader.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.backend; diff --git a/src/jexer/backend/package-info.java b/src/jexer/backend/package-info.java index edf7a34..5056b66 100644 --- a/src/jexer/backend/package-info.java +++ b/src/jexer/backend/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/bits/Animation.java b/src/jexer/bits/Animation.java index b9ce51b..0a5cbb5 100644 --- a/src/jexer/bits/Animation.java +++ b/src/jexer/bits/Animation.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/Cell.java b/src/jexer/bits/Cell.java index e99bf66..8863c44 100644 --- a/src/jexer/bits/Cell.java +++ b/src/jexer/bits/Cell.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/CellAttributes.java b/src/jexer/bits/CellAttributes.java index 55a029a..4e0d8bb 100644 --- a/src/jexer/bits/CellAttributes.java +++ b/src/jexer/bits/CellAttributes.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/Clipboard.java b/src/jexer/bits/Clipboard.java index 97094cf..d3d425a 100644 --- a/src/jexer/bits/Clipboard.java +++ b/src/jexer/bits/Clipboard.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/Color.java b/src/jexer/bits/Color.java index 1c7b324..d1fe014 100644 --- a/src/jexer/bits/Color.java +++ b/src/jexer/bits/Color.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java index 8b5d908..0304902 100644 --- a/src/jexer/bits/ColorTheme.java +++ b/src/jexer/bits/ColorTheme.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/GraphicsChars.java b/src/jexer/bits/GraphicsChars.java index 2a25f65..a02c415 100644 --- a/src/jexer/bits/GraphicsChars.java +++ b/src/jexer/bits/GraphicsChars.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/ImageUtils.java b/src/jexer/bits/ImageUtils.java index 43a8f49..526f490 100644 --- a/src/jexer/bits/ImageUtils.java +++ b/src/jexer/bits/ImageUtils.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/MnemonicString.java b/src/jexer/bits/MnemonicString.java index ab1bcfa..41028db 100644 --- a/src/jexer/bits/MnemonicString.java +++ b/src/jexer/bits/MnemonicString.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/StringUtils.java b/src/jexer/bits/StringUtils.java index 5174ca6..2accc98 100644 --- a/src/jexer/bits/StringUtils.java +++ b/src/jexer/bits/StringUtils.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/WidgetUtils.java b/src/jexer/bits/WidgetUtils.java index 7dff0f6..dc74251 100644 --- a/src/jexer/bits/WidgetUtils.java +++ b/src/jexer/bits/WidgetUtils.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.bits; diff --git a/src/jexer/bits/package-info.java b/src/jexer/bits/package-info.java index 2960d74..2bbd27c 100644 --- a/src/jexer/bits/package-info.java +++ b/src/jexer/bits/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/demos/Demo1.java b/src/jexer/demos/Demo1.java index d095ce8..b84d5d3 100644 --- a/src/jexer/demos/Demo1.java +++ b/src/jexer/demos/Demo1.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo2.java b/src/jexer/demos/Demo2.java index 356e2ad..7c5fb1a 100644 --- a/src/jexer/demos/Demo2.java +++ b/src/jexer/demos/Demo2.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo3.java b/src/jexer/demos/Demo3.java index bafb87c..1d2e72f 100644 --- a/src/jexer/demos/Demo3.java +++ b/src/jexer/demos/Demo3.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo4.java b/src/jexer/demos/Demo4.java index f55686e..cb7f35a 100644 --- a/src/jexer/demos/Demo4.java +++ b/src/jexer/demos/Demo4.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo5.java b/src/jexer/demos/Demo5.java index 34779cf..72aea1a 100644 --- a/src/jexer/demos/Demo5.java +++ b/src/jexer/demos/Demo5.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo6.java b/src/jexer/demos/Demo6.java index 67cde8d..17c6c10 100644 --- a/src/jexer/demos/Demo6.java +++ b/src/jexer/demos/Demo6.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo7.java b/src/jexer/demos/Demo7.java index 7307910..e67f34f 100644 --- a/src/jexer/demos/Demo7.java +++ b/src/jexer/demos/Demo7.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/Demo8.java b/src/jexer/demos/Demo8.java index 7c77d7a..33b69eb 100644 --- a/src/jexer/demos/Demo8.java +++ b/src/jexer/demos/Demo8.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoApplication.java b/src/jexer/demos/DemoApplication.java index c919a5f..856d958 100644 --- a/src/jexer/demos/DemoApplication.java +++ b/src/jexer/demos/DemoApplication.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoCheckBoxWindow.java b/src/jexer/demos/DemoCheckBoxWindow.java index 2509d29..b376be8 100644 --- a/src/jexer/demos/DemoCheckBoxWindow.java +++ b/src/jexer/demos/DemoCheckBoxWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoEditorWindow.java b/src/jexer/demos/DemoEditorWindow.java index dc0e0ab..dcc4a52 100644 --- a/src/jexer/demos/DemoEditorWindow.java +++ b/src/jexer/demos/DemoEditorWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoMainWindow.java b/src/jexer/demos/DemoMainWindow.java index a6d6abe..ebea35f 100644 --- a/src/jexer/demos/DemoMainWindow.java +++ b/src/jexer/demos/DemoMainWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoMsgBoxWindow.java b/src/jexer/demos/DemoMsgBoxWindow.java index 8988978..8ab7ead 100644 --- a/src/jexer/demos/DemoMsgBoxWindow.java +++ b/src/jexer/demos/DemoMsgBoxWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoPixelsWindow.java b/src/jexer/demos/DemoPixelsWindow.java index f00bfcd..d048a73 100644 --- a/src/jexer/demos/DemoPixelsWindow.java +++ b/src/jexer/demos/DemoPixelsWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoTableWindow.java b/src/jexer/demos/DemoTableWindow.java index 5a0e2f3..f652e15 100644 --- a/src/jexer/demos/DemoTableWindow.java +++ b/src/jexer/demos/DemoTableWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoTextFieldWindow.java b/src/jexer/demos/DemoTextFieldWindow.java index 0442c1a..462b4fc 100644 --- a/src/jexer/demos/DemoTextFieldWindow.java +++ b/src/jexer/demos/DemoTextFieldWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoTextWindow.java b/src/jexer/demos/DemoTextWindow.java index e3b7443..646486f 100644 --- a/src/jexer/demos/DemoTextWindow.java +++ b/src/jexer/demos/DemoTextWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DemoTreeViewWindow.java b/src/jexer/demos/DemoTreeViewWindow.java index caf63ed..08513df 100644 --- a/src/jexer/demos/DemoTreeViewWindow.java +++ b/src/jexer/demos/DemoTreeViewWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DesktopDemo.java b/src/jexer/demos/DesktopDemo.java index c2faf41..b72884c 100644 --- a/src/jexer/demos/DesktopDemo.java +++ b/src/jexer/demos/DesktopDemo.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/DesktopDemoApplication.java b/src/jexer/demos/DesktopDemoApplication.java index 406f2f9..cafdf33 100644 --- a/src/jexer/demos/DesktopDemoApplication.java +++ b/src/jexer/demos/DesktopDemoApplication.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.demos; diff --git a/src/jexer/demos/package-info.java b/src/jexer/demos/package-info.java index 99def0e..e9d2286 100644 --- a/src/jexer/demos/package-info.java +++ b/src/jexer/demos/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/event/TCommandEvent.java b/src/jexer/event/TCommandEvent.java index 66a7f1d..a35813f 100644 --- a/src/jexer/event/TCommandEvent.java +++ b/src/jexer/event/TCommandEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/TInputEvent.java b/src/jexer/event/TInputEvent.java index 605ceb2..6bcf5f5 100644 --- a/src/jexer/event/TInputEvent.java +++ b/src/jexer/event/TInputEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/TKeypressEvent.java b/src/jexer/event/TKeypressEvent.java index 4d3ad2e..eab367d 100644 --- a/src/jexer/event/TKeypressEvent.java +++ b/src/jexer/event/TKeypressEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/TMenuEvent.java b/src/jexer/event/TMenuEvent.java index 5c31c05..3a0d815 100644 --- a/src/jexer/event/TMenuEvent.java +++ b/src/jexer/event/TMenuEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/TMouseEvent.java b/src/jexer/event/TMouseEvent.java index 0039224..20ed073 100644 --- a/src/jexer/event/TMouseEvent.java +++ b/src/jexer/event/TMouseEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/TResizeEvent.java b/src/jexer/event/TResizeEvent.java index dd16383..de63e26 100644 --- a/src/jexer/event/TResizeEvent.java +++ b/src/jexer/event/TResizeEvent.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.event; diff --git a/src/jexer/event/package-info.java b/src/jexer/event/package-info.java index f0aec7c..6de239c 100644 --- a/src/jexer/event/package-info.java +++ b/src/jexer/event/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/help/HelpFile.java b/src/jexer/help/HelpFile.java index 286050c..1870939 100644 --- a/src/jexer/help/HelpFile.java +++ b/src/jexer/help/HelpFile.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/Link.java b/src/jexer/help/Link.java index 6b7f1c2..c2cc968 100644 --- a/src/jexer/help/Link.java +++ b/src/jexer/help/Link.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/THelpText.java b/src/jexer/help/THelpText.java index ea9d186..6011f5a 100644 --- a/src/jexer/help/THelpText.java +++ b/src/jexer/help/THelpText.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/TParagraph.java b/src/jexer/help/TParagraph.java index 1476b30..f32b05c 100644 --- a/src/jexer/help/TParagraph.java +++ b/src/jexer/help/TParagraph.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/TWord.java b/src/jexer/help/TWord.java index ea320ed..d36be92 100644 --- a/src/jexer/help/TWord.java +++ b/src/jexer/help/TWord.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/Topic.java b/src/jexer/help/Topic.java index da8b5cc..caeb5cb 100644 --- a/src/jexer/help/Topic.java +++ b/src/jexer/help/Topic.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.help; diff --git a/src/jexer/help/package-info.java b/src/jexer/help/package-info.java index 9bc92ca..d255f5f 100644 --- a/src/jexer/help/package-info.java +++ b/src/jexer/help/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/io/ReadTimeoutException.java b/src/jexer/io/ReadTimeoutException.java index b072298..01c855e 100644 --- a/src/jexer/io/ReadTimeoutException.java +++ b/src/jexer/io/ReadTimeoutException.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.io; diff --git a/src/jexer/io/TimeoutInputStream.java b/src/jexer/io/TimeoutInputStream.java index 4ea140c..e126c44 100644 --- a/src/jexer/io/TimeoutInputStream.java +++ b/src/jexer/io/TimeoutInputStream.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.io; diff --git a/src/jexer/io/package-info.java b/src/jexer/io/package-info.java index fcc95c0..1e174fe 100644 --- a/src/jexer/io/package-info.java +++ b/src/jexer/io/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/layout/BoxLayoutManager.java b/src/jexer/layout/BoxLayoutManager.java index 46dc904..7dfead5 100644 --- a/src/jexer/layout/BoxLayoutManager.java +++ b/src/jexer/layout/BoxLayoutManager.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.layout; diff --git a/src/jexer/layout/LayoutManager.java b/src/jexer/layout/LayoutManager.java index 49f501f..503de62 100644 --- a/src/jexer/layout/LayoutManager.java +++ b/src/jexer/layout/LayoutManager.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.layout; diff --git a/src/jexer/layout/StretchLayoutManager.java b/src/jexer/layout/StretchLayoutManager.java index f5463d5..b442fc4 100644 --- a/src/jexer/layout/StretchLayoutManager.java +++ b/src/jexer/layout/StretchLayoutManager.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.layout; diff --git a/src/jexer/layout/package-info.java b/src/jexer/layout/package-info.java index 4cea747..2532382 100644 --- a/src/jexer/layout/package-info.java +++ b/src/jexer/layout/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/menu/TMenu.java b/src/jexer/menu/TMenu.java index ee98d88..262b28a 100644 --- a/src/jexer/menu/TMenu.java +++ b/src/jexer/menu/TMenu.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.menu; diff --git a/src/jexer/menu/TMenuItem.java b/src/jexer/menu/TMenuItem.java index ed48c66..107fbc9 100644 --- a/src/jexer/menu/TMenuItem.java +++ b/src/jexer/menu/TMenuItem.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.menu; diff --git a/src/jexer/menu/TMenuSeparator.java b/src/jexer/menu/TMenuSeparator.java index 44984a2..85474ca 100644 --- a/src/jexer/menu/TMenuSeparator.java +++ b/src/jexer/menu/TMenuSeparator.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.menu; diff --git a/src/jexer/menu/TSubMenu.java b/src/jexer/menu/TSubMenu.java index fc00af4..e1cdb3e 100644 --- a/src/jexer/menu/TSubMenu.java +++ b/src/jexer/menu/TSubMenu.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.menu; diff --git a/src/jexer/menu/package-info.java b/src/jexer/menu/package-info.java index e14bed5..efaef05 100644 --- a/src/jexer/menu/package-info.java +++ b/src/jexer/menu/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/net/TelnetInputStream.java b/src/jexer/net/TelnetInputStream.java index 67df40f..c52e3a9 100644 --- a/src/jexer/net/TelnetInputStream.java +++ b/src/jexer/net/TelnetInputStream.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.net; diff --git a/src/jexer/net/TelnetOutputStream.java b/src/jexer/net/TelnetOutputStream.java index 8975d8e..b07f20c 100644 --- a/src/jexer/net/TelnetOutputStream.java +++ b/src/jexer/net/TelnetOutputStream.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.net; diff --git a/src/jexer/net/TelnetServerSocket.java b/src/jexer/net/TelnetServerSocket.java index 9549df4..a6c1140 100644 --- a/src/jexer/net/TelnetServerSocket.java +++ b/src/jexer/net/TelnetServerSocket.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.net; diff --git a/src/jexer/net/TelnetSocket.java b/src/jexer/net/TelnetSocket.java index 89f6a0e..bdf0e2e 100644 --- a/src/jexer/net/TelnetSocket.java +++ b/src/jexer/net/TelnetSocket.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.net; diff --git a/src/jexer/net/package-info.java b/src/jexer/net/package-info.java index 1142f6a..fa195ac 100644 --- a/src/jexer/net/package-info.java +++ b/src/jexer/net/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/package-info.java b/src/jexer/package-info.java index 44dc3f6..b9747e0 100644 --- a/src/jexer/package-info.java +++ b/src/jexer/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/tackboard/Bitmap.java b/src/jexer/tackboard/Bitmap.java index 16529aa..33e6dbe 100644 --- a/src/jexer/tackboard/Bitmap.java +++ b/src/jexer/tackboard/Bitmap.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/MousePointer.java b/src/jexer/tackboard/MousePointer.java index d4ac07e..db07843 100644 --- a/src/jexer/tackboard/MousePointer.java +++ b/src/jexer/tackboard/MousePointer.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/Pointer.java b/src/jexer/tackboard/Pointer.java index 7753231..8fce917 100644 --- a/src/jexer/tackboard/Pointer.java +++ b/src/jexer/tackboard/Pointer.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/Tackboard.java b/src/jexer/tackboard/Tackboard.java index b5c789f..4a0d51a 100644 --- a/src/jexer/tackboard/Tackboard.java +++ b/src/jexer/tackboard/Tackboard.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/TackboardItem.java b/src/jexer/tackboard/TackboardItem.java index c537ddb..2761a69 100644 --- a/src/jexer/tackboard/TackboardItem.java +++ b/src/jexer/tackboard/TackboardItem.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/Text.java b/src/jexer/tackboard/Text.java index a798184..e1c119b 100644 --- a/src/jexer/tackboard/Text.java +++ b/src/jexer/tackboard/Text.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tackboard; diff --git a/src/jexer/tackboard/package-info.java b/src/jexer/tackboard/package-info.java index c5f166b..631cf98 100644 --- a/src/jexer/tackboard/package-info.java +++ b/src/jexer/tackboard/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/teditor/Document.java b/src/jexer/teditor/Document.java index 648eb70..697bda2 100644 --- a/src/jexer/teditor/Document.java +++ b/src/jexer/teditor/Document.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.teditor; diff --git a/src/jexer/teditor/Highlighter.java b/src/jexer/teditor/Highlighter.java index 5f74e20..e1f52b5 100644 --- a/src/jexer/teditor/Highlighter.java +++ b/src/jexer/teditor/Highlighter.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.teditor; diff --git a/src/jexer/teditor/Line.java b/src/jexer/teditor/Line.java index 0d14be6..7b305fe 100644 --- a/src/jexer/teditor/Line.java +++ b/src/jexer/teditor/Line.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.teditor; diff --git a/src/jexer/teditor/Word.java b/src/jexer/teditor/Word.java index 71e8cf3..5d0995c 100644 --- a/src/jexer/teditor/Word.java +++ b/src/jexer/teditor/Word.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.teditor; diff --git a/src/jexer/teditor/package-info.java b/src/jexer/teditor/package-info.java index 26162b9..08f1dd1 100644 --- a/src/jexer/teditor/package-info.java +++ b/src/jexer/teditor/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/tterminal/DECCharacterSets.java b/src/jexer/tterminal/DECCharacterSets.java index 1084349..328403c 100644 --- a/src/jexer/tterminal/DECCharacterSets.java +++ b/src/jexer/tterminal/DECCharacterSets.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tterminal; diff --git a/src/jexer/tterminal/DisplayLine.java b/src/jexer/tterminal/DisplayLine.java index 99075d1..2a4fc26 100644 --- a/src/jexer/tterminal/DisplayLine.java +++ b/src/jexer/tterminal/DisplayLine.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tterminal; diff --git a/src/jexer/tterminal/DisplayListener.java b/src/jexer/tterminal/DisplayListener.java index 7415347..479962b 100644 --- a/src/jexer/tterminal/DisplayListener.java +++ b/src/jexer/tterminal/DisplayListener.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tterminal; diff --git a/src/jexer/tterminal/ECMA48.java b/src/jexer/tterminal/ECMA48.java index e0246ed..c7fae5e 100644 --- a/src/jexer/tterminal/ECMA48.java +++ b/src/jexer/tterminal/ECMA48.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tterminal; diff --git a/src/jexer/tterminal/SixelDecoder.java b/src/jexer/tterminal/SixelDecoder.java index 17a24c9..f7246c9 100644 --- a/src/jexer/tterminal/SixelDecoder.java +++ b/src/jexer/tterminal/SixelDecoder.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.tterminal; diff --git a/src/jexer/tterminal/package-info.java b/src/jexer/tterminal/package-info.java index 7514a0d..966ec1b 100644 --- a/src/jexer/tterminal/package-info.java +++ b/src/jexer/tterminal/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ diff --git a/src/jexer/ttree/TDirectoryTreeItem.java b/src/jexer/ttree/TDirectoryTreeItem.java index f311a19..63d5973 100644 --- a/src/jexer/ttree/TDirectoryTreeItem.java +++ b/src/jexer/ttree/TDirectoryTreeItem.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.ttree; diff --git a/src/jexer/ttree/TTreeItem.java b/src/jexer/ttree/TTreeItem.java index 1fa95c6..503991f 100644 --- a/src/jexer/ttree/TTreeItem.java +++ b/src/jexer/ttree/TTreeItem.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.ttree; diff --git a/src/jexer/ttree/TTreeView.java b/src/jexer/ttree/TTreeView.java index 932858b..a35ce9f 100644 --- a/src/jexer/ttree/TTreeView.java +++ b/src/jexer/ttree/TTreeView.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.ttree; diff --git a/src/jexer/ttree/TTreeViewWidget.java b/src/jexer/ttree/TTreeViewWidget.java index 0770212..7bbe1cf 100644 --- a/src/jexer/ttree/TTreeViewWidget.java +++ b/src/jexer/ttree/TTreeViewWidget.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.ttree; diff --git a/src/jexer/ttree/TTreeViewWindow.java b/src/jexer/ttree/TTreeViewWindow.java index a407572..651c701 100644 --- a/src/jexer/ttree/TTreeViewWindow.java +++ b/src/jexer/ttree/TTreeViewWindow.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */ package jexer.ttree; diff --git a/src/jexer/ttree/package-info.java b/src/jexer/ttree/package-info.java index 58275e8..1935267 100644 --- a/src/jexer/ttree/package-info.java +++ b/src/jexer/ttree/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2021 Autumn Lamonte + * Copyright (C) 2022 Autumn Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * - * @author Autumn Lamonte [AutumnWalksTheLake@gmail.com] ⚧ Trans Liberation Now + * @author Autumn Lamonte ⚧ Trans Liberation Now * @version 1 */