From e8757deb0d555d52f45aa4cc614ad4e6d096b906 Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Sat, 8 Dec 2018 21:00:23 +0800 Subject: [PATCH 1/5] Use license-gradle-plugin --- build.gradle | 103 ++++++++++++++++++++------------------------- license-header.txt | 15 +++++++ 2 files changed, 61 insertions(+), 57 deletions(-) create mode 100644 license-header.txt diff --git a/build.gradle b/build.gradle index 7418c2e8f..547372966 100644 --- a/build.gradle +++ b/build.gradle @@ -1,57 +1,46 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. - */ - -group 'org.jackhuang' -version '3.0' - -buildscript { - repositories { - jcenter() - } - dependencies { - classpath 'org.tukaani:xz:1.8' - } -} - - -subprojects { - apply plugin: 'java' - apply plugin: 'idea' - - repositories { - mavenCentral() - jcenter() - - maven { url 'https://jitpack.io' } - } - - sourceCompatibility = 1.8 - compileJava.options.encoding = "UTF-8" - compileTestJava.options.encoding = "UTF-8" - - dependencies { - compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5' - compile group: 'org.tukaani', name: 'xz', version: '1.8' - compile group: 'org.hildan.fxgson', name: 'fx-gson', version: '3.1.0' - compile group: 'org.jenkins-ci', name: 'constant-pool-scanner', version: '1.2' - compile group: 'com.github.steveice10', name: 'opennbt', version: '1.1' - - testCompile group: 'junit', name: 'junit', version: '4.12' - } - -} +buildscript { + repositories { + jcenter() + maven { url 'https://plugins.gradle.org/m2/' } + } + dependencies { + classpath 'org.tukaani:xz:1.8' + classpath 'gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0' + } +} + +group 'org.jackhuang' +version '3.0' + +subprojects { + apply plugin: 'java' + apply plugin: 'idea' + apply plugin: 'com.github.hierynomus.license' + + repositories { + mavenCentral() + jcenter() + + maven { url 'https://jitpack.io' } + } + + sourceCompatibility = 1.8 + compileJava.options.encoding = "UTF-8" + compileTestJava.options.encoding = "UTF-8" + + dependencies { + compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5' + compile group: 'org.tukaani', name: 'xz', version: '1.8' + compile group: 'org.hildan.fxgson', name: 'fx-gson', version: '3.1.0' + compile group: 'org.jenkins-ci', name: 'constant-pool-scanner', version: '1.2' + compile group: 'com.github.steveice10', name: 'opennbt', version: '1.1' + + testCompile group: 'junit', name: 'junit', version: '4.12' + } + + license { + header rootProject.file('license-header.txt') + strictCheck true + ext.year = Calendar.getInstance().get(Calendar.YEAR) + } +} diff --git a/license-header.txt b/license-header.txt new file mode 100644 index 000000000..b3ce7882d --- /dev/null +++ b/license-header.txt @@ -0,0 +1,15 @@ +Hello Minecraft! Launcher +Copyright (C) ${year} huangyuhui and contributors + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . From 7820f748a0238d64f54ee2ceeec26c01f286e8d0 Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Sat, 8 Dec 2018 21:03:15 +0800 Subject: [PATCH 2/5] Restore original GPLv3 license From: https://www.gnu.org/licenses/gpl-3.0.txt --- LICENSE | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index e8a8b24cf..f288702d2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ - GNU GENERAL PUBLIC LICENSE + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2007 Free Software Foundation, Inc. {http://fsf.org/} + Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -576,8 +576,8 @@ Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - If the Program specifies that a PROXY can decide which future -versions of the GNU General Public License can be used, that PROXY's + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. @@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - Hello Minecraft! Launcher, a Minecraft Launcher which is easy to use. - Copyright (C) 2018 huangyuhui + + Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -645,14 +645,14 @@ the "copyright" line and a pointer to where the full notice is found. GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see {http://www.gnu.org/licenses/}. + along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - Hello Minecraft! Launcher Copyright (C) 2018 huangyuhui + Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. @@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see -{http://www.gnu.org/licenses/}. +. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -{http://www.gnu.org/philosophy/why-not-lgpl.html}. \ No newline at end of file +. From 924067e4dd7d9154838fed94b78878e2f08d077e Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Sat, 8 Dec 2018 21:06:01 +0800 Subject: [PATCH 3/5] Specify GPL version in the readme link in case FSF updates it --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b49a9c53f..c82033405 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Hello Minecraft! Launcher [![Build Status](https://ci.huangyuhui.net/job/HMCL/badge/icon?.svg)](https://ci.huangyuhui.net/job/HMCL) -GPL v3, see http://www.gnu.org/licenses/gpl.html +GPL v3, see https://www.gnu.org/licenses/gpl-3.0.html ## Introduction From d2486732d2dc509b8713dae1eb9246bf403eabc4 Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Sat, 8 Dec 2018 21:08:03 +0800 Subject: [PATCH 4/5] Prevent translation contributors being removed by license-gradle-plugin --- HMCL/src/main/resources/assets/lang/I18N.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HMCL/src/main/resources/assets/lang/I18N.properties b/HMCL/src/main/resources/assets/lang/I18N.properties index 374773ff7..6b2b5c98c 100644 --- a/HMCL/src/main/resources/assets/lang/I18N.properties +++ b/HMCL/src/main/resources/assets/lang/I18N.properties @@ -14,7 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see {http://www.gnu.org/licenses/}. # -#author: huangyuhui, dxNeil + +# Contributors: dxNeil about.copyright=Copyright about.copyright.statement=Copyright (c) 2018 huangyuhui. about.author=Author From 672b6054a6cb75cebfe13120625ff7db0dbaa6a0 Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Sat, 8 Dec 2018 21:13:03 +0800 Subject: [PATCH 5/5] Format license headers --- .../java/org/jackhuang/hmcl/Launcher.java | 8 ++++---- .../main/java/org/jackhuang/hmcl/Main.java | 8 ++++---- .../java/org/jackhuang/hmcl/Metadata.java | 8 ++++---- .../jackhuang/hmcl/game/AccountHelper.java | 10 +++++----- .../hmcl/game/HMCLCacheRepository.java | 17 +++++++++++++++++ .../jackhuang/hmcl/game/HMCLGameLauncher.java | 10 +++++----- .../hmcl/game/HMCLGameRepository.java | 10 +++++----- .../hmcl/game/HMCLModpackExportTask.java | 10 +++++----- .../hmcl/game/HMCLModpackInstallTask.java | 10 +++++----- .../hmcl/game/HMCLModpackManager.java | 10 +++++----- .../hmcl/game/HMCLModpackManifest.java | 10 +++++----- .../jackhuang/hmcl/game/LauncherHelper.java | 10 +++++----- .../org/jackhuang/hmcl/game/LoadingState.java | 10 +++++----- .../org/jackhuang/hmcl/game/ModAdviser.java | 10 +++++----- .../jackhuang/hmcl/game/ModpackHelper.java | 10 +++++----- .../MultiMCInstallVersionSettingTask.java | 10 +++++----- .../org/jackhuang/hmcl/setting/Accounts.java | 8 ++++---- .../org/jackhuang/hmcl/setting/Config.java | 10 +++++----- .../jackhuang/hmcl/setting/ConfigHolder.java | 8 ++++---- .../hmcl/setting/ConfigUpgrader.java | 8 ++++---- .../hmcl/setting/DownloadProviders.java | 10 +++++----- .../hmcl/setting/EnumBackgroundImage.java | 8 ++++---- .../hmcl/setting/EnumCommonDirectory.java | 8 ++++---- .../hmcl/setting/EnumGameDirectory.java | 10 +++++----- .../hmcl/setting/LauncherVisibility.java | 10 +++++----- .../org/jackhuang/hmcl/setting/Profile.java | 8 ++++---- .../org/jackhuang/hmcl/setting/Profiles.java | 8 ++++---- .../jackhuang/hmcl/setting/ProxyManager.java | 8 ++++---- .../org/jackhuang/hmcl/setting/Settings.java | 10 +++++----- .../org/jackhuang/hmcl/setting/Theme.java | 8 ++++---- .../hmcl/setting/VersionSetting.java | 8 ++++---- .../org/jackhuang/hmcl/ui/Controllers.java | 10 +++++----- .../org/jackhuang/hmcl/ui/CrashWindow.java | 8 ++++---- .../jackhuang/hmcl/ui/DialogController.java | 10 +++++----- .../java/org/jackhuang/hmcl/ui/FXUtils.java | 8 ++++---- .../org/jackhuang/hmcl/ui/InstallerItem.java | 10 +++++----- .../jackhuang/hmcl/ui/LeftPaneController.java | 8 ++++---- .../java/org/jackhuang/hmcl/ui/ListPage.java | 8 ++++---- .../org/jackhuang/hmcl/ui/ListPageSkin.java | 8 ++++---- .../java/org/jackhuang/hmcl/ui/LogWindow.java | 8 ++++---- .../java/org/jackhuang/hmcl/ui/MainPage.java | 8 ++++---- .../main/java/org/jackhuang/hmcl/ui/SVG.java | 8 ++++---- .../hmcl/ui/SafeIntStringConverter.java | 10 +++++----- .../org/jackhuang/hmcl/ui/SettingsPage.java | 8 ++++---- .../org/jackhuang/hmcl/ui/SettingsView.java | 8 ++++---- .../jackhuang/hmcl/ui/WeakListenerHolder.java | 8 ++++---- .../java/org/jackhuang/hmcl/ui/WebStage.java | 10 +++++----- .../ui/account/AccountAdvancedListItem.java | 8 ++++---- .../hmcl/ui/account/AccountList.java | 8 ++++---- .../hmcl/ui/account/AccountListItem.java | 8 ++++---- .../hmcl/ui/account/AccountListItemSkin.java | 8 ++++---- .../hmcl/ui/account/AccountLoginPane.java | 8 ++++---- .../hmcl/ui/account/AddAccountPane.java | 8 ++++---- .../account/AddAuthlibInjectorServerPane.java | 8 ++++---- .../ui/account/AuthlibInjectorServerItem.java | 10 +++++----- .../account/AuthlibInjectorServersPage.java | 8 ++++---- .../hmcl/ui/animation/AnimationHandler.java | 10 +++++----- .../hmcl/ui/animation/AnimationProducer.java | 10 +++++----- .../ui/animation/ContainerAnimations.java | 10 +++++----- .../hmcl/ui/animation/TransitionHandler.java | 10 +++++----- .../hmcl/ui/construct/AdvancedListBox.java | 8 ++++---- .../hmcl/ui/construct/AdvancedListItem.java | 8 ++++---- .../ui/construct/AdvancedListItemSkin.java | 8 ++++---- .../hmcl/ui/construct/ClassTitle.java | 10 +++++----- .../hmcl/ui/construct/ComponentList.java | 8 ++++---- .../hmcl/ui/construct/ComponentListCell.java | 10 +++++----- .../hmcl/ui/construct/ComponentSublist.java | 17 +++++++++++++++++ .../hmcl/ui/construct/DialogAware.java | 8 ++++---- .../hmcl/ui/construct/DialogCloseEvent.java | 8 ++++---- .../jackhuang/hmcl/ui/construct/FileItem.java | 10 +++++----- .../hmcl/ui/construct/FontComboBox.java | 10 +++++----- .../hmcl/ui/construct/IconedItem.java | 10 +++++----- .../hmcl/ui/construct/IconedMenuItem.java | 8 ++++---- .../hmcl/ui/construct/ImagePickerItem.java | 17 +++++++++++++++++ .../hmcl/ui/construct/InputDialogPane.java | 8 ++++---- .../hmcl/ui/construct/MenuSeparator.java | 17 +++++++++++++++++ .../hmcl/ui/construct/MessageBox.java | 10 +++++----- .../hmcl/ui/construct/MessageDialogPane.java | 10 +++++----- .../hmcl/ui/construct/MultiColorItem.java | 17 +++++++++++++++++ .../hmcl/ui/construct/MultiFileItem.java | 8 ++++---- .../hmcl/ui/construct/Navigator.java | 8 ++++---- .../construct/NoneMultipleSelectionModel.java | 10 +++++----- .../hmcl/ui/construct/NumberValidator.java | 10 +++++----- .../hmcl/ui/construct/PageCloseEvent.java | 8 ++++---- .../hmcl/ui/construct/PopupMenu.java | 8 ++++---- .../hmcl/ui/construct/RipplerContainer.java | 8 ++++---- .../hmcl/ui/construct/SpinnerPane.java | 8 ++++---- .../hmcl/ui/construct/StackContainerPane.java | 8 ++++---- .../ui/construct/TaskExecutorDialogPane.java | 10 +++++----- .../hmcl/ui/construct/TaskListPane.java | 8 ++++---- .../hmcl/ui/construct/TwoLineListItem.java | 8 ++++---- .../hmcl/ui/construct/Validator.java | 10 +++++----- .../hmcl/ui/decorator/Decorator.java | 8 ++++---- .../ui/decorator/DecoratorController.java | 8 ++++---- .../hmcl/ui/decorator/DecoratorPage.java | 10 +++++----- .../hmcl/ui/decorator/DecoratorSkin.java | 8 ++++---- .../decorator/DecoratorWizardDisplayer.java | 8 ++++---- .../ui/download/AdditionalInstallersPage.java | 10 +++++----- .../ui/download/InstallerWizardProvider.java | 10 +++++----- .../hmcl/ui/download/InstallersPage.java | 10 +++++----- .../ModpackInstallWizardProvider.java | 17 +++++++++++++++++ .../hmcl/ui/download/ModpackPage.java | 10 +++++----- .../VanillaInstallWizardProvider.java | 10 +++++----- .../hmcl/ui/download/VersionsPage.java | 10 +++++----- .../hmcl/ui/download/VersionsPageItem.java | 10 +++++----- .../hmcl/ui/export/ExportWizardProvider.java | 10 +++++----- .../ui/export/ModpackFileSelectionPage.java | 10 +++++----- .../hmcl/ui/export/ModpackInfoPage.java | 10 +++++----- .../ui/profile/ProfileAdvancedListItem.java | 8 ++++---- .../hmcl/ui/profile/ProfileList.java | 8 ++++---- .../hmcl/ui/profile/ProfileListItem.java | 8 ++++---- .../hmcl/ui/profile/ProfileListItemSkin.java | 8 ++++---- .../hmcl/ui/profile/ProfilePage.java | 8 ++++---- .../hmcl/ui/versions/DatapackListItem.java | 17 +++++++++++++++++ .../hmcl/ui/versions/DatapackListPage.java | 17 +++++++++++++++++ .../ui/versions/GameAdvancedListItem.java | 8 ++++---- .../jackhuang/hmcl/ui/versions/GameItem.java | 8 ++++---- .../hmcl/ui/versions/GameItemSkin.java | 17 +++++++++++++++++ .../jackhuang/hmcl/ui/versions/GameList.java | 8 ++++---- .../hmcl/ui/versions/GameListItem.java | 8 ++++---- .../hmcl/ui/versions/GameListItemSkin.java | 8 ++++---- .../hmcl/ui/versions/GameListSkin.java | 8 ++++---- .../hmcl/ui/versions/InstallerListPage.java | 10 +++++----- .../jackhuang/hmcl/ui/versions/ModItem.java | 10 +++++----- .../hmcl/ui/versions/ModListPage.java | 8 ++++---- .../hmcl/ui/versions/VersionPage.java | 8 ++++---- .../hmcl/ui/versions/VersionSettingsPage.java | 8 ++++---- .../jackhuang/hmcl/ui/versions/Versions.java | 8 ++++---- .../hmcl/ui/versions/WorldExportPage.java | 17 +++++++++++++++++ .../hmcl/ui/versions/WorldExportPageSkin.java | 17 +++++++++++++++++ .../hmcl/ui/versions/WorldListItem.java | 17 +++++++++++++++++ .../hmcl/ui/versions/WorldListItemSkin.java | 17 +++++++++++++++++ .../hmcl/ui/versions/WorldListPage.java | 17 +++++++++++++++++ .../ui/wizard/AbstractWizardDisplayer.java | 10 +++++----- .../ui/wizard/DefaultWizardDisplayer.java | 10 +++++----- .../jackhuang/hmcl/ui/wizard/Navigation.java | 10 +++++----- .../jackhuang/hmcl/ui/wizard/Refreshable.java | 10 +++++----- .../ui/wizard/SinglePageWizardProvider.java | 17 +++++++++++++++++ .../org/jackhuang/hmcl/ui/wizard/Summary.java | 10 +++++----- .../TaskExecutorDialogWizardDisplayer.java | 8 ++++---- .../org/jackhuang/hmcl/ui/wizard/Wizard.java | 10 +++++----- .../hmcl/ui/wizard/WizardController.java | 10 +++++----- .../hmcl/ui/wizard/WizardDisplayer.java | 10 +++++----- .../ui/wizard/WizardNavigationResult.java | 10 +++++----- .../jackhuang/hmcl/ui/wizard/WizardPage.java | 10 +++++----- .../hmcl/ui/wizard/WizardProvider.java | 10 +++++----- .../hmcl/ui/wizard/WizardSinglePage.java | 17 +++++++++++++++++ .../hmcl/upgrade/ExecutableHeaderHelper.java | 8 ++++---- .../hmcl/upgrade/HMCLDownloadTask.java | 8 ++++---- .../hmcl/upgrade/IntegrityChecker.java | 8 ++++---- .../jackhuang/hmcl/upgrade/RemoteVersion.java | 8 ++++---- .../jackhuang/hmcl/upgrade/UpdateChannel.java | 8 ++++---- .../jackhuang/hmcl/upgrade/UpdateChecker.java | 8 ++++---- .../jackhuang/hmcl/upgrade/UpdateHandler.java | 8 ++++---- .../jackhuang/hmcl/util/CrashReporter.java | 8 ++++---- .../org/jackhuang/hmcl/util/i18n/I18n.java | 8 ++++---- .../org/jackhuang/hmcl/util/i18n/Locales.java | 8 ++++---- .../jackhuang/hmcl/util/i18n/UTF8Control.java | 8 ++++---- HMCL/src/main/resources/assets/css/blue.css | 17 +++++++++++++++++ HMCL/src/main/resources/assets/css/custom.css | 17 +++++++++++++++++ HMCL/src/main/resources/assets/css/root.css | 17 +++++++++++++++++ .../resources/assets/lang/I18N.properties | 7 ++++--- .../resources/assets/lang/I18N_zh.properties | 9 +++++---- .../assets/lang/I18N_zh_CN.properties | 9 +++++---- .../resources/assets/log-window-content.html | 19 +++++++++++++++++++ .../java/org/jackhuang/hmcl/auth/Account.java | 10 +++++----- .../jackhuang/hmcl/auth/AccountFactory.java | 10 +++++----- .../org/jackhuang/hmcl/auth/AuthInfo.java | 10 +++++----- .../hmcl/auth/AuthenticationException.java | 10 +++++----- .../hmcl/auth/CharacterSelector.java | 10 +++++----- .../hmcl/auth/CredentialExpiredException.java | 8 ++++---- .../hmcl/auth/NoCharacterException.java | 10 +++++----- .../auth/NoSelectedCharacterException.java | 10 +++++----- .../hmcl/auth/ServerDisconnectException.java | 8 ++++---- .../ServerResponseMalformedException.java | 8 ++++---- .../hmcl/auth/SpecificCharacterSelector.java | 8 ++++---- .../AuthlibInjectorAccount.java | 8 ++++---- .../AuthlibInjectorAccountFactory.java | 8 ++++---- .../AuthlibInjectorArtifactInfo.java | 8 ++++---- .../AuthlibInjectorArtifactProvider.java | 8 ++++---- .../authlibinjector/AuthlibInjectorDnD.java | 8 ++++---- .../AuthlibInjectorDownloadException.java | 8 ++++---- .../AuthlibInjectorDownloader.java | 8 ++++---- .../AuthlibInjectorProvider.java | 8 ++++---- .../AuthlibInjectorServer.java | 8 ++++---- ...SimpleAuthlibInjectorArtifactProvider.java | 8 ++++---- .../hmcl/auth/offline/OfflineAccount.java | 10 +++++----- .../auth/offline/OfflineAccountFactory.java | 10 +++++----- .../hmcl/auth/yggdrasil/GameProfile.java | 10 +++++----- .../yggdrasil/MojangYggdrasilProvider.java | 17 +++++++++++++++++ .../hmcl/auth/yggdrasil/PropertyMap.java | 8 ++++---- .../RemoteAuthenticationException.java | 17 +++++++++++++++++ .../hmcl/auth/yggdrasil/Texture.java | 8 ++++---- .../hmcl/auth/yggdrasil/TextureType.java | 17 +++++++++++++++++ .../jackhuang/hmcl/auth/yggdrasil/User.java | 10 +++++----- .../hmcl/auth/yggdrasil/YggdrasilAccount.java | 10 +++++----- .../yggdrasil/YggdrasilAccountFactory.java | 10 +++++----- .../auth/yggdrasil/YggdrasilProvider.java | 17 +++++++++++++++++ .../hmcl/auth/yggdrasil/YggdrasilService.java | 17 +++++++++++++++++ .../hmcl/auth/yggdrasil/YggdrasilSession.java | 17 +++++++++++++++++ .../download/AbstractDependencyManager.java | 10 +++++----- .../download/BMCLAPIDownloadProvider.java | 10 +++++----- .../hmcl/download/DefaultCacheRepository.java | 8 ++++---- .../download/DefaultDependencyManager.java | 10 +++++----- .../hmcl/download/DefaultGameBuilder.java | 10 +++++----- .../hmcl/download/DependencyManager.java | 10 +++++----- .../hmcl/download/DownloadProvider.java | 10 +++++----- .../jackhuang/hmcl/download/GameBuilder.java | 10 +++++----- .../hmcl/download/LibraryAnalyzer.java | 8 ++++---- .../jackhuang/hmcl/download/MaintainTask.java | 8 ++++---- .../hmcl/download/MojangDownloadProvider.java | 10 +++++----- .../hmcl/download/RemoteVersion.java | 10 +++++----- .../jackhuang/hmcl/download/VersionList.java | 10 +++++----- .../hmcl/download/forge/ForgeInstall.java | 10 +++++----- .../download/forge/ForgeInstallProfile.java | 10 +++++----- .../hmcl/download/forge/ForgeInstallTask.java | 10 +++++----- .../download/forge/ForgeRemoteVersion.java | 8 ++++---- .../hmcl/download/forge/ForgeVersion.java | 10 +++++----- .../hmcl/download/forge/ForgeVersionList.java | 10 +++++----- .../hmcl/download/forge/ForgeVersionRoot.java | 10 +++++----- .../download/game/GameAssetDownloadTask.java | 10 +++++----- .../game/GameAssetIndexDownloadTask.java | 10 +++++----- .../hmcl/download/game/GameDownloadTask.java | 10 +++++----- .../hmcl/download/game/GameLibrariesTask.java | 10 +++++----- .../game/GameRemoteLatestVersions.java | 10 +++++----- .../hmcl/download/game/GameRemoteVersion.java | 10 +++++----- .../download/game/GameRemoteVersionInfo.java | 10 +++++----- .../download/game/GameRemoteVersions.java | 10 +++++----- .../hmcl/download/game/GameVersionList.java | 10 +++++----- .../download/game/LibrariesUniqueTask.java | 8 ++++---- .../game/LibraryDownloadException.java | 8 ++++---- .../download/game/LibraryDownloadTask.java | 17 +++++++++++++++++ .../game/VersionJsonDownloadTask.java | 10 +++++----- .../download/game/VersionJsonSaveTask.java | 10 +++++----- .../liteloader/LiteLoaderBMCLVersionList.java | 8 ++++---- .../download/liteloader/LiteLoaderBranch.java | 10 +++++----- .../liteloader/LiteLoaderGameVersions.java | 10 +++++----- .../liteloader/LiteLoaderInstallTask.java | 10 +++++----- .../liteloader/LiteLoaderRemoteVersion.java | 8 ++++---- .../liteloader/LiteLoaderRepository.java | 10 +++++----- .../liteloader/LiteLoaderVersion.java | 10 +++++----- .../liteloader/LiteLoaderVersionList.java | 10 +++++----- .../liteloader/LiteLoaderVersionsMeta.java | 10 +++++----- .../liteloader/LiteLoaderVersionsRoot.java | 10 +++++----- .../optifine/OptiFineBMCLVersionList.java | 10 +++++----- .../optifine/OptiFineInstallTask.java | 10 +++++----- .../optifine/OptiFineRemoteVersion.java | 8 ++++---- .../download/optifine/OptiFineVersion.java | 10 +++++----- .../java/org/jackhuang/hmcl/event/Event.java | 10 +++++----- .../org/jackhuang/hmcl/event/EventBus.java | 10 +++++----- .../jackhuang/hmcl/event/EventManager.java | 10 +++++----- .../jackhuang/hmcl/event/EventPriority.java | 10 +++++----- .../org/jackhuang/hmcl/event/FailedEvent.java | 10 +++++----- .../hmcl/event/GameJsonParseFailedEvent.java | 10 +++++----- .../hmcl/event/JVMLaunchFailedEvent.java | 10 +++++----- .../hmcl/event/LoadedOneVersionEvent.java | 10 +++++----- .../event/ProcessExitedAbnormallyEvent.java | 10 +++++----- .../hmcl/event/ProcessStoppedEvent.java | 10 +++++----- .../hmcl/event/RefreshedVersionsEvent.java | 10 +++++----- .../hmcl/event/RefreshingVersionsEvent.java | 10 +++++----- .../hmcl/event/RemoveVersionEvent.java | 8 ++++---- .../hmcl/event/RenameVersionEvent.java | 8 ++++---- .../org/jackhuang/hmcl/game/Argument.java | 10 +++++----- .../org/jackhuang/hmcl/game/Arguments.java | 10 +++++----- .../org/jackhuang/hmcl/game/AssetIndex.java | 10 +++++----- .../jackhuang/hmcl/game/AssetIndexInfo.java | 10 +++++----- .../org/jackhuang/hmcl/game/AssetObject.java | 10 +++++----- .../hmcl/game/CircleDependencyException.java | 10 +++++----- .../jackhuang/hmcl/game/ClassicLibrary.java | 10 +++++----- .../jackhuang/hmcl/game/ClassicVersion.java | 10 +++++----- .../hmcl/game/CompatibilityRule.java | 10 +++++----- .../hmcl/game/DefaultGameRepository.java | 10 +++++----- .../org/jackhuang/hmcl/game/DownloadInfo.java | 10 +++++----- .../org/jackhuang/hmcl/game/DownloadType.java | 10 +++++----- .../org/jackhuang/hmcl/game/ExtractRules.java | 10 +++++----- .../jackhuang/hmcl/game/GameException.java | 10 +++++----- .../jackhuang/hmcl/game/GameRepository.java | 10 +++++----- .../org/jackhuang/hmcl/game/GameVersion.java | 10 +++++----- .../jackhuang/hmcl/game/IdDownloadInfo.java | 10 +++++----- .../jackhuang/hmcl/game/LaunchOptions.java | 10 +++++----- .../hmcl/game/LibrariesDownloadInfo.java | 10 +++++----- .../java/org/jackhuang/hmcl/game/Library.java | 10 +++++----- .../hmcl/game/LibraryDownloadInfo.java | 10 +++++----- .../org/jackhuang/hmcl/game/LoggingInfo.java | 10 +++++----- .../jackhuang/hmcl/game/OSRestriction.java | 10 +++++----- .../org/jackhuang/hmcl/game/ReleaseType.java | 10 +++++----- .../jackhuang/hmcl/game/RuledArgument.java | 10 +++++----- .../hmcl/game/SimpleVersionProvider.java | 10 +++++----- .../jackhuang/hmcl/game/StringArgument.java | 10 +++++----- .../java/org/jackhuang/hmcl/game/Version.java | 10 +++++----- .../hmcl/game/VersionNotFoundException.java | 10 +++++----- .../jackhuang/hmcl/game/VersionProvider.java | 10 +++++----- .../java/org/jackhuang/hmcl/game/World.java | 17 +++++++++++++++++ .../hmcl/launch/DefaultLauncher.java | 10 +++++----- .../org/jackhuang/hmcl/launch/ExitWaiter.java | 10 +++++----- .../org/jackhuang/hmcl/launch/Launcher.java | 10 +++++----- .../NotDecompressingNativesException.java | 8 ++++---- .../hmcl/launch/PermissionException.java | 8 ++++---- .../hmcl/launch/ProcessCreationException.java | 8 ++++---- .../hmcl/launch/ProcessListener.java | 10 +++++----- .../org/jackhuang/hmcl/launch/StreamPump.java | 10 +++++----- .../hmcl/mod/CurseCompletionException.java | 8 ++++---- .../hmcl/mod/CurseCompletionTask.java | 10 +++++----- .../jackhuang/hmcl/mod/CurseInstallTask.java | 10 +++++----- .../org/jackhuang/hmcl/mod/CurseManifest.java | 10 +++++----- .../jackhuang/hmcl/mod/CurseManifestFile.java | 10 +++++----- .../hmcl/mod/CurseManifestMinecraft.java | 10 +++++----- .../hmcl/mod/CurseManifestModLoader.java | 10 +++++----- .../org/jackhuang/hmcl/mod/CurseMetaMod.java | 8 ++++---- .../java/org/jackhuang/hmcl/mod/Datapack.java | 17 +++++++++++++++++ .../jackhuang/hmcl/mod/ForgeModMetadata.java | 10 +++++----- .../jackhuang/hmcl/mod/LiteModMetadata.java | 10 +++++----- .../hmcl/mod/MinecraftInstanceTask.java | 8 ++++---- .../mod/MismatchedModpackTypeException.java | 8 ++++---- .../java/org/jackhuang/hmcl/mod/ModInfo.java | 10 +++++----- .../org/jackhuang/hmcl/mod/ModManager.java | 10 +++++----- .../java/org/jackhuang/hmcl/mod/Modpack.java | 10 +++++----- .../hmcl/mod/ModpackConfiguration.java | 8 ++++---- .../hmcl/mod/ModpackInstallTask.java | 8 ++++---- .../mod/MultiMCInstanceConfiguration.java | 10 +++++----- .../hmcl/mod/MultiMCInstancePatch.java | 10 +++++----- .../jackhuang/hmcl/mod/MultiMCManifest.java | 8 ++++---- .../hmcl/mod/MultiMCModpackInstallTask.java | 10 +++++----- .../jackhuang/hmcl/mod/RiftModMetadata.java | 8 ++++---- .../hmcl/mod/UnsupportedModpackException.java | 8 ++++---- .../org/jackhuang/hmcl/task/CoupleTask.java | 10 +++++----- .../hmcl/task/DownloadException.java | 8 ++++---- .../jackhuang/hmcl/task/FileDownloadTask.java | 10 +++++----- .../hmcl/task/FinalizedCallback.java | 8 ++++---- .../jackhuang/hmcl/task/FinalizedTask.java | 8 ++++---- .../java/org/jackhuang/hmcl/task/GetTask.java | 10 +++++----- .../org/jackhuang/hmcl/task/ParallelTask.java | 10 +++++----- .../org/jackhuang/hmcl/task/Scheduler.java | 10 +++++----- .../hmcl/task/SchedulerExecutorService.java | 10 +++++----- .../jackhuang/hmcl/task/SchedulerImpl.java | 10 +++++----- .../org/jackhuang/hmcl/task/Schedulers.java | 10 +++++----- .../jackhuang/hmcl/task/SilentException.java | 10 +++++----- .../org/jackhuang/hmcl/task/SimpleTask.java | 10 +++++----- .../jackhuang/hmcl/task/SimpleTaskResult.java | 8 ++++---- .../java/org/jackhuang/hmcl/task/Task.java | 10 +++++----- .../org/jackhuang/hmcl/task/TaskCallable.java | 10 +++++----- .../jackhuang/hmcl/task/TaskCallable2.java | 10 +++++----- .../org/jackhuang/hmcl/task/TaskEvent.java | 10 +++++----- .../org/jackhuang/hmcl/task/TaskExecutor.java | 10 +++++----- .../org/jackhuang/hmcl/task/TaskListener.java | 10 +++++----- .../org/jackhuang/hmcl/task/TaskResult.java | 10 +++++----- .../jackhuang/hmcl/util/AutoTypingMap.java | 10 +++++----- .../jackhuang/hmcl/util/CacheRepository.java | 8 ++++---- .../org/jackhuang/hmcl/util/Constants.java | 10 +++++----- .../org/jackhuang/hmcl/util/DigestUtils.java | 8 ++++---- .../jackhuang/hmcl/util/FutureCallback.java | 8 ++++---- .../java/org/jackhuang/hmcl/util/Hex.java | 8 ++++---- .../org/jackhuang/hmcl/util/Immutable.java | 10 +++++----- .../hmcl/util/InvocationDispatcher.java | 9 ++++----- .../java/org/jackhuang/hmcl/util/Lang.java | 8 ++++---- .../org/jackhuang/hmcl/util/Log4jLevel.java | 10 +++++----- .../java/org/jackhuang/hmcl/util/Logging.java | 10 +++++----- .../java/org/jackhuang/hmcl/util/Pair.java | 10 +++++----- .../jackhuang/hmcl/util/ReflectionHelper.java | 10 +++++----- .../jackhuang/hmcl/util/SimpleMultimap.java | 10 +++++----- .../org/jackhuang/hmcl/util/StringUtils.java | 10 +++++----- .../jackhuang/hmcl/util/ToStringBuilder.java | 8 ++++---- .../util/function/ExceptionalConsumer.java | 10 +++++----- .../util/function/ExceptionalFunction.java | 10 +++++----- .../util/function/ExceptionalRunnable.java | 10 +++++----- .../util/function/ExceptionalSupplier.java | 10 +++++----- .../hmcl/util/gson/DateTypeAdapter.java | 10 +++++----- .../util/gson/EnumOrdinalDeserializer.java | 8 ++++---- .../hmcl/util/gson/FileTypeAdapter.java | 10 +++++----- .../jackhuang/hmcl/util/gson/JsonUtils.java | 8 ++++---- .../gson/LowerCaseEnumTypeAdapterFactory.java | 10 +++++----- .../hmcl/util/gson/UUIDTypeAdapter.java | 10 +++++----- .../jackhuang/hmcl/util/gson/Validation.java | 10 +++++----- .../gson/ValidationTypeAdapterFactory.java | 10 +++++----- .../util/io/ChecksumMismatchException.java | 8 ++++---- .../hmcl/util/io/CompressingUtils.java | 8 ++++---- .../org/jackhuang/hmcl/util/io/FileUtils.java | 10 +++++----- .../org/jackhuang/hmcl/util/io/IOUtils.java | 10 +++++----- .../org/jackhuang/hmcl/util/io/JarUtils.java | 8 ++++---- .../jackhuang/hmcl/util/io/NetworkUtils.java | 10 +++++----- .../org/jackhuang/hmcl/util/io/Unzipper.java | 8 ++++---- .../org/jackhuang/hmcl/util/io/Zipper.java | 10 +++++----- .../util/javafx/AutomatedToggleGroup.java | 8 ++++---- .../hmcl/util/javafx/ExtendedProperties.java | 8 ++++---- .../util/javafx/ImmediateBooleanProperty.java | 10 +++++----- .../util/javafx/ImmediateIntegerProperty.java | 10 +++++----- .../util/javafx/ImmediateObjectProperty.java | 10 +++++----- .../util/javafx/ImmediateStringProperty.java | 10 +++++----- .../util/javafx/MappedObservableList.java | 8 ++++---- .../hmcl/util/javafx/MappedProperty.java | 8 ++++---- .../hmcl/util/javafx/MultiStepBinding.java | 8 ++++---- .../hmcl/util/javafx/ObservableHelper.java | 8 ++++---- .../hmcl/util/javafx/PropertyUtils.java | 8 ++++---- .../javafx/ReadWriteComposedProperty.java | 8 ++++---- .../hmcl/util/javafx/ReferenceHolder.java | 8 ++++---- .../hmcl/util/javafx/SafeStringConverter.java | 8 ++++---- .../hmcl/util/platform/CommandBuilder.java | 8 ++++---- .../hmcl/util/platform/JavaVersion.java | 10 +++++----- .../hmcl/util/platform/ManagedProcess.java | 10 +++++----- .../hmcl/util/platform/OperatingSystem.java | 10 +++++----- .../hmcl/util/platform/Platform.java | 10 +++++----- .../hmcl/util/versioning/VersionNumber.java | 17 +++++++++++++++++ .../hmcl/util/VersionNumberTest.java | 17 +++++++++++++++++ 403 files changed, 2241 insertions(+), 1710 deletions(-) diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/Launcher.java b/HMCL/src/main/java/org/jackhuang/hmcl/Launcher.java index 54bd515fc..5c1b9f713 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/Launcher.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/Launcher.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/Main.java b/HMCL/src/main/java/org/jackhuang/hmcl/Main.java index a0f61f7b1..9f3d8237f 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/Main.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/Main.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/Metadata.java b/HMCL/src/main/java/org/jackhuang/hmcl/Metadata.java index ba20571e5..5331f7b93 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/Metadata.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/Metadata.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/AccountHelper.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/AccountHelper.java index f4913b264..007ffd57b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/AccountHelper.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/AccountHelper.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLCacheRepository.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLCacheRepository.java index 0022609bd..b356784dd 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLCacheRepository.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLCacheRepository.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.game; import javafx.beans.property.SimpleStringProperty; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameLauncher.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameLauncher.java index f586b2e29..71daf487e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameLauncher.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameLauncher.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameRepository.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameRepository.java index 89cdf14ed..31eea6af5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameRepository.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLGameRepository.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackExportTask.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackExportTask.java index 13bf1f3d7..78da3894b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackExportTask.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackExportTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackInstallTask.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackInstallTask.java index f01d7847c..7b65b12ef 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackInstallTask.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManager.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManager.java index 5b85437dd..90aa6a85d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManager.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManifest.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManifest.java index 14daff199..873d2e7a4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManifest.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/HMCLModpackManifest.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/LauncherHelper.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/LauncherHelper.java index 1e9d05bd7..3f812b81f 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/LauncherHelper.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/LauncherHelper.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/LoadingState.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/LoadingState.java index c19c6707e..40e0712d3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/LoadingState.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/LoadingState.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/ModAdviser.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/ModAdviser.java index ac9fb44ff..ea4e932b6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/ModAdviser.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/ModAdviser.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/ModpackHelper.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/ModpackHelper.java index fa2202cb2..759fbbe17 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/ModpackHelper.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/ModpackHelper.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/game/MultiMCInstallVersionSettingTask.java b/HMCL/src/main/java/org/jackhuang/hmcl/game/MultiMCInstallVersionSettingTask.java index 7685d84f3..c01f86c8d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/game/MultiMCInstallVersionSettingTask.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/game/MultiMCInstallVersionSettingTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Accounts.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Accounts.java index 75fa01fc5..2654e33d2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Accounts.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Accounts.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Config.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Config.java index ca0dce598..530a5472c 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Config.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Config.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigHolder.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigHolder.java index 33b899165..877746c80 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigHolder.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigHolder.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigUpgrader.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigUpgrader.java index 4e624ad09..50aa32164 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigUpgrader.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ConfigUpgrader.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/DownloadProviders.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/DownloadProviders.java index 306192664..d97a10e79 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/DownloadProviders.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/DownloadProviders.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumBackgroundImage.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumBackgroundImage.java index cf197287a..fe4175bf5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumBackgroundImage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumBackgroundImage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumCommonDirectory.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumCommonDirectory.java index b6cb26556..b684a0bdd 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumCommonDirectory.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumCommonDirectory.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumGameDirectory.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumGameDirectory.java index db1b16fa1..f13b16004 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumGameDirectory.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/EnumGameDirectory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/LauncherVisibility.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/LauncherVisibility.java index 45a3de910..b97ae31f5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/LauncherVisibility.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/LauncherVisibility.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profile.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profile.java index 7cc2b8755..2c5aca7bf 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profile.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profile.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profiles.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profiles.java index 62fb54f74..b1945ada4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profiles.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Profiles.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ProxyManager.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ProxyManager.java index 52a9e0d60..971168b34 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/ProxyManager.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/ProxyManager.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Settings.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Settings.java index f7ce2ce1c..ae01db8a1 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Settings.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Settings.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Theme.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Theme.java index fa432b838..6082e525e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/Theme.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/Theme.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/setting/VersionSetting.java b/HMCL/src/main/java/org/jackhuang/hmcl/setting/VersionSetting.java index 04a180a57..6c5bc4947 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/setting/VersionSetting.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/setting/VersionSetting.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.setting; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/Controllers.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/Controllers.java index eb92d04ee..5a22c0745 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/Controllers.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/Controllers.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/CrashWindow.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/CrashWindow.java index 6d6be4394..75d3beeb5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/CrashWindow.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/CrashWindow.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/DialogController.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/DialogController.java index c47790a1a..97ce98c10 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/DialogController.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/DialogController.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/FXUtils.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/FXUtils.java index 097978396..0854b7e61 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/FXUtils.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/FXUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/InstallerItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/InstallerItem.java index 314bc52c7..e77343bf9 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/InstallerItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/InstallerItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/LeftPaneController.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/LeftPaneController.java index cceae5ced..c9c314377 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/LeftPaneController.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/LeftPaneController.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPage.java index 2c2fa98a8..4eca96e2f 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPageSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPageSkin.java index 3f5547cdd..2464e8042 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPageSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/ListPageSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/LogWindow.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/LogWindow.java index 0f4d9b065..24a0325f3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/LogWindow.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/LogWindow.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/MainPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/MainPage.java index 2b91bd082..f6bdd5d4d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/MainPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/MainPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SVG.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SVG.java index 531e6247b..b448b0b1c 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SVG.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SVG.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SafeIntStringConverter.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SafeIntStringConverter.java index 548b218fc..53ccb413a 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SafeIntStringConverter.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SafeIntStringConverter.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsPage.java index 8997f22bf..bd75c9cf7 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsView.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsView.java index 1cf349aba..bcff442fd 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsView.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/SettingsView.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/WeakListenerHolder.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/WeakListenerHolder.java index 1e34d01e0..843511deb 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/WeakListenerHolder.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/WeakListenerHolder.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/WebStage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/WebStage.java index 46b05493a..7cbaccfb2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/WebStage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/WebStage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountAdvancedListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountAdvancedListItem.java index 34c176abe..4408235ff 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountAdvancedListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountAdvancedListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountList.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountList.java index a2c6b6d77..24866067e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountList.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItem.java index ca0f8ca3f..411615fb2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItemSkin.java index b4723bff2..a4596a2ba 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountListItemSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountLoginPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountLoginPane.java index 340cb8489..316c3eb98 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountLoginPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AccountLoginPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAccountPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAccountPane.java index 460b4d919..80f18e712 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAccountPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAccountPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAuthlibInjectorServerPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAuthlibInjectorServerPane.java index 0041db67a..20b1d39cf 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAuthlibInjectorServerPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AddAuthlibInjectorServerPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServerItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServerItem.java index 570988b42..acc7fe711 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServerItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServerItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServersPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServersPage.java index 22eb3f5dc..18693ccc1 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServersPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/account/AuthlibInjectorServersPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.account; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationHandler.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationHandler.java index 5cfa76893..f874d9481 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationHandler.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationHandler.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.animation; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationProducer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationProducer.java index 770f87810..9c86ba842 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationProducer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/AnimationProducer.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.animation; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/ContainerAnimations.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/ContainerAnimations.java index 8eaf67baa..fce785c51 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/ContainerAnimations.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/ContainerAnimations.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright c 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.animation; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/TransitionHandler.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/TransitionHandler.java index 8959c05e3..4df5ddafd 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/TransitionHandler.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/animation/TransitionHandler.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.animation; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListBox.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListBox.java index 0695bc013..de947b719 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListBox.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListBox.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItem.java index b3f9cab03..e15ca669d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItemSkin.java index ac595f509..c38a7c0d6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/AdvancedListItemSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ClassTitle.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ClassTitle.java index 88c168d43..bae6e2887 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ClassTitle.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ClassTitle.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentList.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentList.java index 2ba143e02..65825fda0 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentList.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentListCell.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentListCell.java index d5bd2fe50..dea039cf2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentListCell.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentListCell.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentSublist.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentSublist.java index d4a6dfc9b..e4accdafd 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentSublist.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ComponentSublist.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.construct; import javafx.beans.DefaultProperty; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogAware.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogAware.java index 5dbcdc79c..6d98424e4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogAware.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogAware.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogCloseEvent.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogCloseEvent.java index 7081b4288..f7bd9f023 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogCloseEvent.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/DialogCloseEvent.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FileItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FileItem.java index 86146c6ac..edd66361b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FileItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FileItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FontComboBox.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FontComboBox.java index 6b7bfe155..6caddc967 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FontComboBox.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/FontComboBox.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedItem.java index 8b7fdb47e..8682604c5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedMenuItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedMenuItem.java index 79bf2b4e6..d3ad292aa 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedMenuItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/IconedMenuItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ImagePickerItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ImagePickerItem.java index cb371253d..3e527c273 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ImagePickerItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/ImagePickerItem.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.construct; import com.jfoenix.controls.JFXButton; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/InputDialogPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/InputDialogPane.java index b7699e98f..67a1de8ea 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/InputDialogPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/InputDialogPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MenuSeparator.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MenuSeparator.java index a747fc368..549a2bbbb 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MenuSeparator.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MenuSeparator.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.construct; import javafx.geometry.Insets; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageBox.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageBox.java index 4bf2ef4c3..0600a57c3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageBox.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageBox.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageDialogPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageDialogPane.java index 67b7868e5..5e3d9d257 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageDialogPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MessageDialogPane.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiColorItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiColorItem.java index 6fd823ebb..a37b6589a 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiColorItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiColorItem.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.construct; import com.jfoenix.controls.JFXColorPicker; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiFileItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiFileItem.java index 684958611..b2f1cd5a2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiFileItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/MultiFileItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Navigator.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Navigator.java index 9e7ee6dc0..6df697759 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Navigator.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Navigator.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NoneMultipleSelectionModel.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NoneMultipleSelectionModel.java index 6b3031c9c..ed946fd97 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NoneMultipleSelectionModel.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NoneMultipleSelectionModel.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NumberValidator.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NumberValidator.java index a621c0f14..4f86a0e1d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NumberValidator.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/NumberValidator.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PageCloseEvent.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PageCloseEvent.java index 55601ded6..61075238e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PageCloseEvent.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PageCloseEvent.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PopupMenu.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PopupMenu.java index 9ca16d845..f546ae183 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PopupMenu.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/PopupMenu.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/RipplerContainer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/RipplerContainer.java index 3a82fe16e..f1b919f3f 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/RipplerContainer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/RipplerContainer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/SpinnerPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/SpinnerPane.java index 6b297dd9c..99d6d8f23 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/SpinnerPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/SpinnerPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/StackContainerPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/StackContainerPane.java index 9454f1cc1..982f5ab4a 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/StackContainerPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/StackContainerPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskExecutorDialogPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskExecutorDialogPane.java index 4e89bcc0b..36d3b42fe 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskExecutorDialogPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskExecutorDialogPane.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskListPane.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskListPane.java index 243aff1d1..bc9f47e33 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskListPane.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TaskListPane.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TwoLineListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TwoLineListItem.java index 6cd45bfea..1c27cb656 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TwoLineListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/TwoLineListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Validator.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Validator.java index d0a878f21..f29c4e4a6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Validator.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/construct/Validator.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.construct; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/Decorator.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/Decorator.java index c11c0d8cf..745f81d65 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/Decorator.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/Decorator.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.decorator; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorController.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorController.java index de287459a..09e5c505b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorController.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorController.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.decorator; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorPage.java index 6830747bd..edf049954 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.decorator; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorSkin.java index b3fe9bfa3..12d945169 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.decorator; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorWizardDisplayer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorWizardDisplayer.java index ae03f2397..755057975 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorWizardDisplayer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/decorator/DecoratorWizardDisplayer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.decorator; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/AdditionalInstallersPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/AdditionalInstallersPage.java index 27627c62e..d02c5145a 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/AdditionalInstallersPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/AdditionalInstallersPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallerWizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallerWizardProvider.java index 293937bba..42be00458 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallerWizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallerWizardProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallersPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallersPage.java index 8a658f11b..a78dfad94 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallersPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/InstallersPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackInstallWizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackInstallWizardProvider.java index c4ee265e7..2c42cc635 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackInstallWizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackInstallWizardProvider.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.download; import javafx.scene.Node; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackPage.java index 99fefac37..bfcb448de 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/ModpackPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VanillaInstallWizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VanillaInstallWizardProvider.java index 9cf394af8..8a205808b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VanillaInstallWizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VanillaInstallWizardProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPage.java index 462c83c91..be91c8a40 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPageItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPageItem.java index dddca340f..d155db93c 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPageItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/VersionsPageItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.download; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ExportWizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ExportWizardProvider.java index d6154feae..34e15f28f 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ExportWizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ExportWizardProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.export; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackFileSelectionPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackFileSelectionPage.java index e492a9ad9..8367e1f15 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackFileSelectionPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackFileSelectionPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.export; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackInfoPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackInfoPage.java index cbd8bfe0b..fceaa027e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackInfoPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/export/ModpackInfoPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.export; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileAdvancedListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileAdvancedListItem.java index 6dadaf8d9..ddc13c9c3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileAdvancedListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileAdvancedListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.profile; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileList.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileList.java index 87457ca9b..d733aacb9 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileList.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.profile; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItem.java index e4ae28d2f..37a6fa3f3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.profile; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItemSkin.java index 704cc57ce..8a3259e14 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfileListItemSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.profile; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfilePage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfilePage.java index a04f6ce02..d6923bea7 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfilePage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/profile/ProfilePage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.profile; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListItem.java index e2e24c73d..a6594e0f3 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListItem.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import com.jfoenix.controls.JFXButton; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListPage.java index ca8454862..805b7fb5b 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DatapackListPage.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import javafx.beans.property.SimpleStringProperty; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameAdvancedListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameAdvancedListItem.java index 4cc736576..4f8ec9d8e 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameAdvancedListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameAdvancedListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItem.java index 7c1ae7708..d6de7a7c6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItemSkin.java index 9a616edcc..d942decb2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameItemSkin.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import javafx.geometry.Pos; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameList.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameList.java index 783a41da3..7a1e7b535 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameList.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItem.java index 62a07fd40..b2374d682 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItem.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItemSkin.java index 5e7c9037b..06fede28a 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListItemSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListSkin.java index b7cf3bb13..210d10980 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/GameListSkin.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/InstallerListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/InstallerListPage.java index b2258879e..ca773e1f1 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/InstallerListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/InstallerListPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModItem.java index 3b3f5cc89..a69e1ebd6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModItem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModListPage.java index ee029a625..aca9dcc80 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModListPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionPage.java index 1478afee4..86d8733d4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionSettingsPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionSettingsPage.java index b122e6151..d63d91743 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionSettingsPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/VersionSettingsPage.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/Versions.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/Versions.java index 2e6fc0173..79fae2182 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/Versions.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/Versions.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.versions; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPage.java index 7a8e4a18f..5317cb30c 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPage.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import javafx.beans.property.SimpleStringProperty; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPageSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPageSkin.java index 4d5ef7ba0..a744b6dd4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPageSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldExportPageSkin.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import com.jfoenix.controls.JFXButton; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItem.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItem.java index 6f8e25a80..63636a696 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItem.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItem.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import javafx.beans.property.ObjectProperty; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItemSkin.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItemSkin.java index 48a4d274a..190b8e650 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItemSkin.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListItemSkin.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import com.jfoenix.controls.JFXButton; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListPage.java index 40c9a7732..ce719ea40 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/WorldListPage.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.versions; import javafx.stage.FileChooser; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/AbstractWizardDisplayer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/AbstractWizardDisplayer.java index 7b90defa7..0f957fc15 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/AbstractWizardDisplayer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/AbstractWizardDisplayer.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/DefaultWizardDisplayer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/DefaultWizardDisplayer.java index 395a6e5df..016b33cc4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/DefaultWizardDisplayer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/DefaultWizardDisplayer.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Navigation.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Navigation.java index 97da3e83e..f01926313 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Navigation.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Navigation.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Refreshable.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Refreshable.java index e4a70aa0b..106a73fe6 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Refreshable.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Refreshable.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/SinglePageWizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/SinglePageWizardProvider.java index cef4fc592..5c7f4b13d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/SinglePageWizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/SinglePageWizardProvider.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.wizard; import javafx.scene.Node; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Summary.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Summary.java index fd1d7724a..f68f8ae41 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Summary.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Summary.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/TaskExecutorDialogWizardDisplayer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/TaskExecutorDialogWizardDisplayer.java index 1b89f647d..a14d3f16d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/TaskExecutorDialogWizardDisplayer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/TaskExecutorDialogWizardDisplayer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Wizard.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Wizard.java index c04a40737..d4d08113d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Wizard.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/Wizard.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardController.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardController.java index 1194ff11f..b9f14fe77 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardController.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardController.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardDisplayer.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardDisplayer.java index 32960ae50..0382c7990 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardDisplayer.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardDisplayer.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardNavigationResult.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardNavigationResult.java index d063d9dd8..45cfefb41 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardNavigationResult.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardNavigationResult.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardPage.java index 43f03edf2..9ec21edfe 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardPage.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardProvider.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardProvider.java index 7c45a2957..c68eb90ff 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardProvider.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.ui.wizard; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardSinglePage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardSinglePage.java index 9b596320c..94604b3f5 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardSinglePage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/wizard/WizardSinglePage.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.ui.wizard; import javafx.scene.control.Control; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/ExecutableHeaderHelper.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/ExecutableHeaderHelper.java index 4d60c0600..e15734d90 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/ExecutableHeaderHelper.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/ExecutableHeaderHelper.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/HMCLDownloadTask.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/HMCLDownloadTask.java index 517120e01..f4eeea139 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/HMCLDownloadTask.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/HMCLDownloadTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/IntegrityChecker.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/IntegrityChecker.java index c2ed66dd1..e0603b050 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/IntegrityChecker.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/IntegrityChecker.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/RemoteVersion.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/RemoteVersion.java index febcf48a2..05144fed2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/RemoteVersion.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/RemoteVersion.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChannel.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChannel.java index e31926266..3462a70a8 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChannel.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChannel.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChecker.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChecker.java index 16e5be10f..49ac605df 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChecker.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateChecker.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateHandler.java b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateHandler.java index 393387fa7..05e026dd4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateHandler.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/upgrade/UpdateHandler.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.upgrade; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/util/CrashReporter.java b/HMCL/src/main/java/org/jackhuang/hmcl/util/CrashReporter.java index 392eafa0d..0be619b74 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/util/CrashReporter.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/util/CrashReporter.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/I18n.java b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/I18n.java index f11040815..41b89dba2 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/I18n.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/I18n.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.i18n; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/Locales.java b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/Locales.java index 9e4960d8c..34ad6e7b4 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/Locales.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/Locales.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.i18n; diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/UTF8Control.java b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/UTF8Control.java index 670b60906..686940fad 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/UTF8Control.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/util/i18n/UTF8Control.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.i18n; diff --git a/HMCL/src/main/resources/assets/css/blue.css b/HMCL/src/main/resources/assets/css/blue.css index e8ca15b82..2aca53e51 100644 --- a/HMCL/src/main/resources/assets/css/blue.css +++ b/HMCL/src/main/resources/assets/css/blue.css @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ .root { -fx-base-color: #5c6bc0; -fx-base-darker-color: derive(-fx-base-color, -10%); diff --git a/HMCL/src/main/resources/assets/css/custom.css b/HMCL/src/main/resources/assets/css/custom.css index 7ce96f596..8f29d1370 100644 --- a/HMCL/src/main/resources/assets/css/custom.css +++ b/HMCL/src/main/resources/assets/css/custom.css @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ .root { -fx-base-color: %base-color%; -fx-base-darker-color: derive(-fx-base-color, -10%); diff --git a/HMCL/src/main/resources/assets/css/root.css b/HMCL/src/main/resources/assets/css/root.css index 7b646d8d2..31b29218e 100644 --- a/HMCL/src/main/resources/assets/css/root.css +++ b/HMCL/src/main/resources/assets/css/root.css @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ .root { } diff --git a/HMCL/src/main/resources/assets/lang/I18N.properties b/HMCL/src/main/resources/assets/lang/I18N.properties index 6b2b5c98c..7e8ac4027 100644 --- a/HMCL/src/main/resources/assets/lang/I18N.properties +++ b/HMCL/src/main/resources/assets/lang/I18N.properties @@ -1,5 +1,6 @@ -# Hello Minecraft! Launcher. -# Copyright (C) 2013 huangyuhui +# +# Hello Minecraft! Launcher +# Copyright (C) 2018 huangyuhui and contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,7 +13,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see {http://www.gnu.org/licenses/}. +# along with this program. If not, see . # # Contributors: dxNeil diff --git a/HMCL/src/main/resources/assets/lang/I18N_zh.properties b/HMCL/src/main/resources/assets/lang/I18N_zh.properties index 3fc39de7c..311b27338 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh.properties @@ -1,5 +1,6 @@ -# Hello Minecraft! Launcher. -# Copyright (C) 2013 huangyuhui +# +# Hello Minecraft! Launcher +# Copyright (C) 2018 huangyuhui and contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,9 +13,9 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see {http://www.gnu.org/licenses/}. +# along with this program. If not, see . # -# author: huangyuhui + about.copyright=版權 about.copyright.statement=Copyright (c) 2018 huangyuhui. about.author=作者 diff --git a/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties b/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties index 533934709..99fd40c31 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties @@ -1,5 +1,6 @@ -# Hello Minecraft! Launcher. -# Copyright (C) 2013 huangyuhui +# +# Hello Minecraft! Launcher +# Copyright (C) 2018 huangyuhui and contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,9 +13,9 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see {http://www.gnu.org/licenses/}. +# along with this program. If not, see . # -#author: huangyuhui + about.copyright=版权 about.copyright.statement=Copyright (c) 2018 huangyuhui. about.author=作者 diff --git a/HMCL/src/main/resources/assets/log-window-content.html b/HMCL/src/main/resources/assets/log-window-content.html index 2cda7d564..ea1d95165 100644 --- a/HMCL/src/main/resources/assets/log-window-content.html +++ b/HMCL/src/main/resources/assets/log-window-content.html @@ -1,3 +1,22 @@ + diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/Account.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/Account.java index 7215b36b7..3250331cb 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/Account.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/Account.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AccountFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AccountFactory.java index 65c4c0f27..3a0b3b890 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AccountFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AccountFactory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthInfo.java index 18b3a81cc..6e8268cce 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthenticationException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthenticationException.java index 1ff9f998b..484537eeb 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthenticationException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/AuthenticationException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CharacterSelector.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CharacterSelector.java index f5b4f46ff..0c98be029 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CharacterSelector.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CharacterSelector.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CredentialExpiredException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CredentialExpiredException.java index 9461d5880..3c3e3da0e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CredentialExpiredException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/CredentialExpiredException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoCharacterException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoCharacterException.java index 86c90f9ec..671deac05 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoCharacterException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoCharacterException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoSelectedCharacterException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoSelectedCharacterException.java index c8d58c3a0..6c7d7be6f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoSelectedCharacterException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/NoSelectedCharacterException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerDisconnectException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerDisconnectException.java index 4a5bd8069..50bc38a20 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerDisconnectException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerDisconnectException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerResponseMalformedException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerResponseMalformedException.java index ef8c98b25..90dd5b32c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerResponseMalformedException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/ServerResponseMalformedException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/SpecificCharacterSelector.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/SpecificCharacterSelector.java index 884a976ee..ef2ff4a38 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/SpecificCharacterSelector.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/SpecificCharacterSelector.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccount.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccount.java index bd2c811c9..d86909e2b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccount.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccount.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccountFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccountFactory.java index 30b41e0f0..47b3a7f7e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccountFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorAccountFactory.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactInfo.java index 95418990b..edd95166a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactInfo.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactProvider.java index 94b8ed33f..85f41fb06 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorArtifactProvider.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDnD.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDnD.java index 24f0aa491..28cea7cd4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDnD.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDnD.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloadException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloadException.java index 3b8dd3683..938beaee1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloadException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloadException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloader.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloader.java index 35e99c34c..737277c9d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloader.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorDownloader.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorProvider.java index 0715d3bde..84fc36c2f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorProvider.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorServer.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorServer.java index 54b156314..e68cd1e61 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorServer.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/AuthlibInjectorServer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/SimpleAuthlibInjectorArtifactProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/SimpleAuthlibInjectorArtifactProvider.java index 9084cac8f..6e61fd13b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/SimpleAuthlibInjectorArtifactProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/authlibinjector/SimpleAuthlibInjectorArtifactProvider.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.authlibinjector; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccount.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccount.java index a1008f4d8..16be9c720 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccount.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccount.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.offline; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccountFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccountFactory.java index ea5b7c08d..15cf0458b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccountFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/offline/OfflineAccountFactory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.offline; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/GameProfile.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/GameProfile.java index 4391bf894..b8c1978ce 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/GameProfile.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/GameProfile.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/MojangYggdrasilProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/MojangYggdrasilProvider.java index dd8a3bf1f..2b7ffe882 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/MojangYggdrasilProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/MojangYggdrasilProvider.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; import org.jackhuang.hmcl.util.gson.UUIDTypeAdapter; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/PropertyMap.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/PropertyMap.java index c0ddc6ecf..aab697ac5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/PropertyMap.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/PropertyMap.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/RemoteAuthenticationException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/RemoteAuthenticationException.java index 923271d48..a987a28a1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/RemoteAuthenticationException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/RemoteAuthenticationException.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; import org.jackhuang.hmcl.auth.AuthenticationException; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/Texture.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/Texture.java index 6b1492832..767e6fe19 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/Texture.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/Texture.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/TextureType.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/TextureType.java index 34be51015..53fd5f1e4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/TextureType.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/TextureType.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; public enum TextureType { diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/User.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/User.java index 780f91c15..2a4cbea72 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/User.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/User.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccount.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccount.java index f1ec430a3..a7f02eb89 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccount.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccount.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccountFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccountFactory.java index a5806f1f1..651c48ce7 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccountFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilAccountFactory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.auth.yggdrasil; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilProvider.java index a67583c84..15580d189 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilProvider.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; import java.net.URL; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilService.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilService.java index 50c5a004c..22df374a1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilService.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilService.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; import com.google.gson.Gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilSession.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilSession.java index 34215fd0b..902daec04 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilSession.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/auth/yggdrasil/YggdrasilSession.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.auth.yggdrasil; import com.google.gson.Gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/AbstractDependencyManager.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/AbstractDependencyManager.java index f7d6595de..1fd2cd2e3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/AbstractDependencyManager.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/AbstractDependencyManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/BMCLAPIDownloadProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/BMCLAPIDownloadProvider.java index d8f4de694..fd6fa9c1f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/BMCLAPIDownloadProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/BMCLAPIDownloadProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultCacheRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultCacheRepository.java index 88df70611..bc170e8af 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultCacheRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultCacheRepository.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultDependencyManager.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultDependencyManager.java index e3800b0c2..4fc9987e3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultDependencyManager.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultDependencyManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultGameBuilder.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultGameBuilder.java index dd613e59d..583e79f90 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultGameBuilder.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DefaultGameBuilder.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DependencyManager.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DependencyManager.java index 0d619db8b..1dff13d40 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DependencyManager.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DependencyManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DownloadProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DownloadProvider.java index 372747958..72d543cd8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DownloadProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/DownloadProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/GameBuilder.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/GameBuilder.java index a07f77e0f..7ca7f5157 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/GameBuilder.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/GameBuilder.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/LibraryAnalyzer.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/LibraryAnalyzer.java index 265a114e0..4f7463b46 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/LibraryAnalyzer.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/LibraryAnalyzer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MaintainTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MaintainTask.java index d5b4e53f5..be2146128 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MaintainTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MaintainTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MojangDownloadProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MojangDownloadProvider.java index 73bf1b907..56f221246 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MojangDownloadProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/MojangDownloadProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/RemoteVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/RemoteVersion.java index 4d76b252d..1379ec734 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/RemoteVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/RemoteVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/VersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/VersionList.java index 475dafafa..3f5e0d50b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/VersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/VersionList.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstall.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstall.java index 2eb19fb2d..b143be511 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstall.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstall.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallProfile.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallProfile.java index 190277ff7..3c0fa1d87 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallProfile.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallProfile.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallTask.java index e1664b36e..3a0852b1e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeRemoteVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeRemoteVersion.java index abd04e3a9..515d876c5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeRemoteVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeRemoteVersion.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersion.java index b3b17f5d2..ccf9faaf9 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionList.java index 0ad273eed..97b8e8910 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionList.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionRoot.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionRoot.java index 17c7e488a..d5ec491dd 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionRoot.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/forge/ForgeVersionRoot.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.forge; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetDownloadTask.java index 5a30ba6f8..0e3e566de 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetDownloadTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetIndexDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetIndexDownloadTask.java index 117ac48c4..5c974b0e4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetIndexDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameAssetIndexDownloadTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameDownloadTask.java index 856c5bd2d..f399ff48d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameDownloadTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameLibrariesTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameLibrariesTask.java index f1eab5640..40b97420a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameLibrariesTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameLibrariesTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteLatestVersions.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteLatestVersions.java index 8bf4f8abd..796b4e456 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteLatestVersions.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteLatestVersions.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersion.java index e63737bd3..e5bddcf14 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersionInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersionInfo.java index c4454396e..90fc786ed 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersionInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersionInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersions.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersions.java index 1c2112b98..b620bb5d4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersions.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameRemoteVersions.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameVersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameVersionList.java index 8214bc1c3..e311aa71b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameVersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/GameVersionList.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibrariesUniqueTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibrariesUniqueTask.java index 1e664d8bf..bfb3acea4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibrariesUniqueTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibrariesUniqueTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadException.java index 5787153a1..41654fabb 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadTask.java index 6048932fb..db07051c8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/LibraryDownloadTask.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.download.game; import org.jackhuang.hmcl.download.AbstractDependencyManager; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonDownloadTask.java index 18a440d05..a95c33354 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonDownloadTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonSaveTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonSaveTask.java index b0e14f863..c8897eeb8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonSaveTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/game/VersionJsonSaveTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBMCLVersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBMCLVersionList.java index a1866a0f4..dc64eca9c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBMCLVersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBMCLVersionList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBranch.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBranch.java index 8d09e7636..454c3b217 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBranch.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderBranch.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderGameVersions.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderGameVersions.java index 1d6481b07..0cc70a3a2 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderGameVersions.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderGameVersions.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderInstallTask.java index 440e880b9..30fd73e02 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRemoteVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRemoteVersion.java index 0f1507be1..48633afde 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRemoteVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRemoteVersion.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRepository.java index 7c8420e1b..1505f5608 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderRepository.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersion.java index 88e8642e8..5c0808924 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionList.java index 6b4be0eec..e5e29dc49 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionList.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsMeta.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsMeta.java index a7daffc57..8f10e26e8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsMeta.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsMeta.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsRoot.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsRoot.java index a744bf0f5..b065739ea 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsRoot.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/liteloader/LiteLoaderVersionsRoot.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.liteloader; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineBMCLVersionList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineBMCLVersionList.java index 3323b8fa4..b2635d677 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineBMCLVersionList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineBMCLVersionList.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.optifine; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineInstallTask.java index f59f3124a..14580e08e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.optifine; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineRemoteVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineRemoteVersion.java index 8f66bd811..76bb9349a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineRemoteVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineRemoteVersion.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.optifine; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineVersion.java index 14b25f832..a5e06dbc3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/optifine/OptiFineVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.download.optifine; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/Event.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/Event.java index c55de587a..12226f4ae 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/Event.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/Event.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventBus.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventBus.java index 944bbe52a..93f6eac1e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventBus.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventBus.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventManager.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventManager.java index f28d558c5..efc71ec88 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventManager.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventPriority.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventPriority.java index df23486f0..9bcc3fd89 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventPriority.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/EventPriority.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/FailedEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/FailedEvent.java index e8dc70810..cfc7ea09f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/FailedEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/FailedEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/GameJsonParseFailedEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/GameJsonParseFailedEvent.java index d070df240..8cc2dd158 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/GameJsonParseFailedEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/GameJsonParseFailedEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/JVMLaunchFailedEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/JVMLaunchFailedEvent.java index 38a9d6d81..1cf239d47 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/JVMLaunchFailedEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/JVMLaunchFailedEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/LoadedOneVersionEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/LoadedOneVersionEvent.java index 47e44da64..6cb31550a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/LoadedOneVersionEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/LoadedOneVersionEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessExitedAbnormallyEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessExitedAbnormallyEvent.java index 1487a8617..418cbff8c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessExitedAbnormallyEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessExitedAbnormallyEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessStoppedEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessStoppedEvent.java index 10b127249..05ae2e01e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessStoppedEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/ProcessStoppedEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshedVersionsEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshedVersionsEvent.java index 64d55662e..3a5ed15aa 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshedVersionsEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshedVersionsEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshingVersionsEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshingVersionsEvent.java index 2f7291b6f..64772b4f6 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshingVersionsEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RefreshingVersionsEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RemoveVersionEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RemoveVersionEvent.java index 3deab872c..20a3d17ff 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RemoveVersionEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RemoveVersionEvent.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RenameVersionEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RenameVersionEvent.java index fb2597c39..09116bffd 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RenameVersionEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/event/RenameVersionEvent.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.event; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Argument.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Argument.java index c241ffec6..48cc0d43a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Argument.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Argument.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Arguments.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Arguments.java index 48f53723b..230d4820c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Arguments.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Arguments.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndex.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndex.java index cbe60bf79..195b9e920 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndex.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndex.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndexInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndexInfo.java index 7f1a78114..bcef8a818 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndexInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetIndexInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetObject.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetObject.java index 139748066..cca3dd88f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetObject.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/AssetObject.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CircleDependencyException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CircleDependencyException.java index 512c1f641..645193643 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CircleDependencyException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CircleDependencyException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicLibrary.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicLibrary.java index 991e1f9b3..e800d3f72 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicLibrary.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicLibrary.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicVersion.java index 408175259..044467c17 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ClassicVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CompatibilityRule.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CompatibilityRule.java index b5afb3977..fff2604e9 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CompatibilityRule.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/CompatibilityRule.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DefaultGameRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DefaultGameRepository.java index 1313444f5..c10ddfa7b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DefaultGameRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DefaultGameRepository.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadInfo.java index dd6c383a0..6326adf39 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadType.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadType.java index 3698edab3..186bc47ac 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadType.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/DownloadType.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ExtractRules.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ExtractRules.java index b94433eaa..9ff6292ea 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ExtractRules.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ExtractRules.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameException.java index 4f9446cbe..a058a6762 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameRepository.java index dff0b3db1..f2a3ce4be 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameRepository.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameVersion.java index f4671051f..0a6ada49f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/GameVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/IdDownloadInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/IdDownloadInfo.java index 90383620e..8527794a9 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/IdDownloadInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/IdDownloadInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LaunchOptions.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LaunchOptions.java index 9927ad454..976fc34f1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LaunchOptions.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LaunchOptions.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibrariesDownloadInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibrariesDownloadInfo.java index e898be8ff..124db4ecf 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibrariesDownloadInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibrariesDownloadInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Library.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Library.java index 2bd73e4b8..8d5ce60c3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Library.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Library.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibraryDownloadInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibraryDownloadInfo.java index 121960bfb..bc6bbd6c0 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibraryDownloadInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LibraryDownloadInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LoggingInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LoggingInfo.java index 561279636..946328a3d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LoggingInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/LoggingInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/OSRestriction.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/OSRestriction.java index 1551cc99b..599ae4cf6 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/OSRestriction.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/OSRestriction.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ReleaseType.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ReleaseType.java index 6d5a041a5..9a1f8567b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ReleaseType.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/ReleaseType.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/RuledArgument.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/RuledArgument.java index 87603ba4c..0c1746b9f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/RuledArgument.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/RuledArgument.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/SimpleVersionProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/SimpleVersionProvider.java index 2dab95189..cd206ee51 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/SimpleVersionProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/SimpleVersionProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/StringArgument.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/StringArgument.java index 788379b4d..ef901bcf6 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/StringArgument.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/StringArgument.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2013 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Version.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Version.java index 0ff3255dd..0f12844c5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Version.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/Version.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionNotFoundException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionNotFoundException.java index 9062ae65e..aad99cb6f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionNotFoundException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionNotFoundException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionProvider.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionProvider.java index 15b85ffe1..d9b5ea43b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionProvider.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/VersionProvider.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.game; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/World.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/World.java index 006fab290..8e1793b76 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/game/World.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/game/World.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.game; import com.github.steveice10.opennbt.NBTIO; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/DefaultLauncher.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/DefaultLauncher.java index b2d57b7ba..f58eddbf4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/DefaultLauncher.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/DefaultLauncher.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ExitWaiter.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ExitWaiter.java index ffb042878..71a824ef0 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ExitWaiter.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ExitWaiter.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/Launcher.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/Launcher.java index 5abf27bb6..b30ae282a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/Launcher.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/Launcher.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/NotDecompressingNativesException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/NotDecompressingNativesException.java index 1a27ebf58..08620a8d8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/NotDecompressingNativesException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/NotDecompressingNativesException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/PermissionException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/PermissionException.java index dc7453fad..59df654ad 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/PermissionException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/PermissionException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessCreationException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessCreationException.java index 488c6f7b3..2f8ea4358 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessCreationException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessCreationException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessListener.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessListener.java index c2d2aeb20..d2dbafa30 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessListener.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/ProcessListener.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/StreamPump.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/StreamPump.java index 651db6e76..6d2689312 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/StreamPump.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/launch/StreamPump.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.launch; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionException.java index 20dcd6720..189cd61b5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionTask.java index 458a21c39..dae06f4d4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseCompletionTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseInstallTask.java index e9ffcd6e0..2a06d4129 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifest.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifest.java index 96414a306..78d4e2dc7 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifest.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifest.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestFile.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestFile.java index 01292ca52..93724a592 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestFile.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestFile.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestMinecraft.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestMinecraft.java index 104d817bc..2f9e5560b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestMinecraft.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestMinecraft.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestModLoader.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestModLoader.java index 86546f0d8..c82b9853a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestModLoader.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseManifestModLoader.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseMetaMod.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseMetaMod.java index 5fc9b91ed..0a70221ad 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseMetaMod.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/CurseMetaMod.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Datapack.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Datapack.java index 16488aaaa..df50b2d52 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Datapack.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Datapack.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.mod; import com.google.gson.JsonParseException; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ForgeModMetadata.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ForgeModMetadata.java index 6c6b84b65..d910fde4e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ForgeModMetadata.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ForgeModMetadata.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/LiteModMetadata.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/LiteModMetadata.java index 3b63ba3d0..34231daf0 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/LiteModMetadata.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/LiteModMetadata.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MinecraftInstanceTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MinecraftInstanceTask.java index d3e91574c..1427d861e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MinecraftInstanceTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MinecraftInstanceTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MismatchedModpackTypeException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MismatchedModpackTypeException.java index 6a0513d39..f9328641c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MismatchedModpackTypeException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MismatchedModpackTypeException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModInfo.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModInfo.java index 7d5a50991..c57e59985 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModInfo.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModInfo.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModManager.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModManager.java index 3eb8eef96..85531cd02 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModManager.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModManager.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Modpack.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Modpack.java index 10fcfcf95..1044fd060 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Modpack.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/Modpack.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackConfiguration.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackConfiguration.java index c14f1041e..5043ddad9 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackConfiguration.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackConfiguration.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackInstallTask.java index 37d5b80d7..fb0f57e97 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/ModpackInstallTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstanceConfiguration.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstanceConfiguration.java index d4fefa8b2..069c832d4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstanceConfiguration.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstanceConfiguration.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstancePatch.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstancePatch.java index 9b68e86e6..8d05c6a09 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstancePatch.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCInstancePatch.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCManifest.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCManifest.java index bf3c75323..13c11ec6e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCManifest.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCManifest.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCModpackInstallTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCModpackInstallTask.java index 67e8441ec..bafba55ca 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCModpackInstallTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/MultiMCModpackInstallTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/RiftModMetadata.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/RiftModMetadata.java index d17fc72cd..1444fbbd4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/RiftModMetadata.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/RiftModMetadata.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/UnsupportedModpackException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/UnsupportedModpackException.java index 52b26ef6f..01b22eefb 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/UnsupportedModpackException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/UnsupportedModpackException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.mod; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CoupleTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CoupleTask.java index 03fa46054..7bcacdb9d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CoupleTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CoupleTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/DownloadException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/DownloadException.java index 53bc9140c..db0e6c937 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/DownloadException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/DownloadException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FileDownloadTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FileDownloadTask.java index 39f0c123f..015046386 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FileDownloadTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FileDownloadTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedCallback.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedCallback.java index ad844c267..da6958dfb 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedCallback.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedCallback.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedTask.java index dd85b0dca..a3cf0b72a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/FinalizedTask.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/GetTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/GetTask.java index 83bf0159f..f80384e97 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/GetTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/GetTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/ParallelTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/ParallelTask.java index 022a7d45c..555e78b46 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/ParallelTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/ParallelTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Scheduler.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Scheduler.java index 2af05082b..8007bbf9f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Scheduler.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Scheduler.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerExecutorService.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerExecutorService.java index e07929ca4..88861b4a1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerExecutorService.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerExecutorService.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerImpl.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerImpl.java index 6ca73266b..e9f63406c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerImpl.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SchedulerImpl.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Schedulers.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Schedulers.java index 324369906..fd8ff399a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Schedulers.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Schedulers.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SilentException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SilentException.java index 20e8e4049..2f3fa7f4f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SilentException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SilentException.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTask.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTask.java index b5086aeb4..cdfa5f56e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTask.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTask.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTaskResult.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTaskResult.java index 5fc60108a..153b30637 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTaskResult.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/SimpleTaskResult.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Task.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Task.java index 5ad4639fe..b08f790b0 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Task.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/Task.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable.java index 8989e41f3..64a0670b1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable2.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable2.java index 3ce93edb6..26669c5cc 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable2.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskCallable2.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskEvent.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskEvent.java index 40a962639..c81472aa7 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskEvent.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskEvent.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java index 8c41dd7a2..a544a5bf3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskListener.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskListener.java index 977ecf515..aef0ff40c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskListener.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskListener.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskResult.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskResult.java index 7d7c1488e..d6f91c2fe 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskResult.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskResult.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.task; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/AutoTypingMap.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/AutoTypingMap.java index c31d47537..62725f58e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/AutoTypingMap.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/AutoTypingMap.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/CacheRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/CacheRepository.java index 49497bf53..939361994 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/CacheRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/CacheRepository.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Constants.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Constants.java index 1948ab633..78bee3ae2 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Constants.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Constants.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/DigestUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/DigestUtils.java index 6f1656840..0f4d5f702 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/DigestUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/DigestUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/FutureCallback.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/FutureCallback.java index e26950f72..ea08e82ee 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/FutureCallback.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/FutureCallback.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Hex.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Hex.java index 4a8b5e0e7..4e8aca86c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Hex.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Hex.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft!. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Immutable.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Immutable.java index a79c751e9..c49b2cadc 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Immutable.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Immutable.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/InvocationDispatcher.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/InvocationDispatcher.java index f80dfbf02..04bd3c74c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/InvocationDispatcher.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/InvocationDispatcher.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,9 +13,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ - package org.jackhuang.hmcl.util; import java.util.Optional; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Lang.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Lang.java index f9c437e28..63c43e715 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Lang.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Lang.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Log4jLevel.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Log4jLevel.java index c6295c1cc..eb95db087 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Log4jLevel.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Log4jLevel.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Logging.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Logging.java index 61c1e4640..f0812456e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Logging.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Logging.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Pair.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Pair.java index a7bdc191d..49188eec5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Pair.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/Pair.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ReflectionHelper.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ReflectionHelper.java index 0b3597f33..c46fee4fa 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ReflectionHelper.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ReflectionHelper.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/SimpleMultimap.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/SimpleMultimap.java index 08476d9f3..d369b188c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/SimpleMultimap.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/SimpleMultimap.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java index 80132bc66..16969a2b4 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ToStringBuilder.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ToStringBuilder.java index a9b923739..192cfd94e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ToStringBuilder.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/ToStringBuilder.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalConsumer.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalConsumer.java index 70ace889c..383da20e1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalConsumer.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalConsumer.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.function; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalFunction.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalFunction.java index 632cb8ce1..e58ab9cf5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalFunction.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalFunction.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.function; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalRunnable.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalRunnable.java index 05915c5b2..2f0ad05ac 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalRunnable.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalRunnable.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.function; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalSupplier.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalSupplier.java index 95713c565..40f8f8546 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalSupplier.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/function/ExceptionalSupplier.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.function; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/DateTypeAdapter.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/DateTypeAdapter.java index 470d12184..bfb884a35 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/DateTypeAdapter.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/DateTypeAdapter.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/EnumOrdinalDeserializer.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/EnumOrdinalDeserializer.java index 38d49cc71..d900c7e71 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/EnumOrdinalDeserializer.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/EnumOrdinalDeserializer.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/FileTypeAdapter.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/FileTypeAdapter.java index acdf7f3c0..0049ea361 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/FileTypeAdapter.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/FileTypeAdapter.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonUtils.java index 88b5e3b64..efc20c4c9 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/LowerCaseEnumTypeAdapterFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/LowerCaseEnumTypeAdapterFactory.java index f2c8819d6..09a049234 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/LowerCaseEnumTypeAdapterFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/LowerCaseEnumTypeAdapterFactory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/UUIDTypeAdapter.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/UUIDTypeAdapter.java index d76a96914..6fa5640d3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/UUIDTypeAdapter.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/UUIDTypeAdapter.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/Validation.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/Validation.java index 1271be90b..5f8a40059 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/Validation.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/Validation.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/ValidationTypeAdapterFactory.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/ValidationTypeAdapterFactory.java index f5fd731b3..15018135d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/ValidationTypeAdapterFactory.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/ValidationTypeAdapterFactory.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.gson; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/ChecksumMismatchException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/ChecksumMismatchException.java index 7a74b3401..a76f57bed 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/ChecksumMismatchException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/ChecksumMismatchException.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/CompressingUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/CompressingUtils.java index 3f9a4424c..651eed437 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/CompressingUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/CompressingUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft!. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/FileUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/FileUtils.java index 338c5e046..f2c3dc66e 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/FileUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/FileUtils.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/IOUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/IOUtils.java index 936da3e1e..990527d23 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/IOUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/IOUtils.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/JarUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/JarUtils.java index 912d0896f..887121898 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/JarUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/JarUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/NetworkUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/NetworkUtils.java index d77d0958b..fc8d5d0e0 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/NetworkUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/NetworkUtils.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Unzipper.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Unzipper.java index f26ecea0f..54a9ab61b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Unzipper.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Unzipper.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Zipper.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Zipper.java index d7815077a..740284765 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Zipper.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/io/Zipper.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.io; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/AutomatedToggleGroup.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/AutomatedToggleGroup.java index 2216a3a1e..982a2ac92 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/AutomatedToggleGroup.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/AutomatedToggleGroup.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ExtendedProperties.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ExtendedProperties.java index 143cc29e1..940583075 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ExtendedProperties.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ExtendedProperties.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateBooleanProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateBooleanProperty.java index c3be3ecfc..66853dd9b 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateBooleanProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateBooleanProperty.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateIntegerProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateIntegerProperty.java index 229246cc1..2b212d3e5 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateIntegerProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateIntegerProperty.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateObjectProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateObjectProperty.java index 15ad870ec..f30cdb661 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateObjectProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateObjectProperty.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateStringProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateStringProperty.java index 38c0535f7..44473ae8f 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateStringProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ImmediateStringProperty.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedObservableList.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedObservableList.java index debb8a882..9840eba16 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedObservableList.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedObservableList.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedProperty.java index ccf70528e..0929b8a7a 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MappedProperty.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MultiStepBinding.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MultiStepBinding.java index b4e427fd7..f47bd7b12 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MultiStepBinding.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/MultiStepBinding.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ObservableHelper.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ObservableHelper.java index 0b1d45d2e..ee9511d91 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ObservableHelper.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ObservableHelper.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/PropertyUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/PropertyUtils.java index 26ee2af7d..00d51a5f3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/PropertyUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/PropertyUtils.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReadWriteComposedProperty.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReadWriteComposedProperty.java index bc69d1a9b..1bab849ae 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReadWriteComposedProperty.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReadWriteComposedProperty.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReferenceHolder.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReferenceHolder.java index 7e3263866..db3c49df2 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReferenceHolder.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/ReferenceHolder.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/SafeStringConverter.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/SafeStringConverter.java index c52718ef9..0d15a977d 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/SafeStringConverter.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/javafx/SafeStringConverter.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.javafx; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/CommandBuilder.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/CommandBuilder.java index e877ecd72..96d654757 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/CommandBuilder.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/CommandBuilder.java @@ -1,6 +1,6 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2017 huangyuhui +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.platform; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/JavaVersion.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/JavaVersion.java index a69430f2d..841c7fc6c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/JavaVersion.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/JavaVersion.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.platform; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/ManagedProcess.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/ManagedProcess.java index 9d35aacda..d634ecbfe 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/ManagedProcess.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/ManagedProcess.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.platform; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/OperatingSystem.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/OperatingSystem.java index 84f732e16..b6487deb7 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/OperatingSystem.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/OperatingSystem.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.platform; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/Platform.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/Platform.java index fc0687d1b..42ababaa1 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/Platform.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/platform/Platform.java @@ -1,7 +1,7 @@ -/* - * Hello Minecraft! Launcher. - * Copyright (C) 2018 huangyuhui - * +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see {http://www.gnu.org/licenses/}. + * along with this program. If not, see . */ package org.jackhuang.hmcl.util.platform; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/versioning/VersionNumber.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/versioning/VersionNumber.java index d3ce45bbd..2d786538c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/versioning/VersionNumber.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/versioning/VersionNumber.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.util.versioning; import org.jackhuang.hmcl.util.StringUtils; diff --git a/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java b/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java index ad37dfc9d..4ea11ad70 100644 --- a/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java +++ b/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java @@ -1,3 +1,20 @@ +/** + * Hello Minecraft! Launcher + * Copyright (C) 2018 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package org.jackhuang.hmcl.util; import org.jackhuang.hmcl.util.versioning.VersionNumber;