diff --git a/HMCL/src/main/resources/assets/lang/I18N.properties b/HMCL/src/main/resources/assets/lang/I18N.properties index bdf3a998e..5e2db95c4 100644 --- a/HMCL/src/main/resources/assets/lang/I18N.properties +++ b/HMCL/src/main/resources/assets/lang/I18N.properties @@ -18,7 +18,7 @@ # Contributors: dxNeil about.copyright=Copyright -about.copyright.statement=Copyright (c) 2019 huangyuhui. +about.copyright.statement=Copyright (c) 2020 huangyuhui. about.author=Author about.author.statement=huanghongxun (hmcl@huangyuhui.net) about.thanks_to=Thanks to diff --git a/HMCL/src/main/resources/assets/lang/I18N_es.properties b/HMCL/src/main/resources/assets/lang/I18N_es.properties index 9c4b0e524..a93774639 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_es.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_es.properties @@ -18,7 +18,7 @@ # Contributors: poopingpenis about.copyright=Copyright -about.copyright.statement=Copyright (c) 2019 huangyuhui. +about.copyright.statement=Copyright (c) 2020 huangyuhui. about.author=Autor about.author.statement=huanghongxun (hmcl@huangyuhui.net) about.thanks_to=Gracias a diff --git a/HMCL/src/main/resources/assets/lang/I18N_ru.properties b/HMCL/src/main/resources/assets/lang/I18N_ru.properties index 0db512026..9c1b3cc25 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_ru.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_ru.properties @@ -18,7 +18,7 @@ # Contributors: Botylyov Yury about.copyright=Авторское право -about.copyright.statement=Создано (c) 2019 huangyuhui. +about.copyright.statement=Создано (c) 2020 huangyuhui. about.author=Автор about.author.statement=huanghongxun (hmcl@huangyuhui.net) about.thanks_to=Благодарность diff --git a/HMCL/src/main/resources/assets/lang/I18N_zh.properties b/HMCL/src/main/resources/assets/lang/I18N_zh.properties index ada620628..9541da63c 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh.properties @@ -1,6 +1,6 @@ # # Hello Minecraft! Launcher -# Copyright (C) 2020 huangyuhui and contributors +# Copyright (C) 2020 huangyuhui and contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by 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 cabe72dc6..639e045cf 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties @@ -17,7 +17,7 @@ # about.copyright=版权 -about.copyright.statement=Copyright (c) 2019 huangyuhui. +about.copyright.statement=版权所有 (c) 2020 huangyuhui. about.author=作者 about.author.statement=huanghongxun (hmcl@huangyuhui.net) about.thanks_to=鸣谢 diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/ArtifactMalformedException.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/ArtifactMalformedException.java index 842b69848..2b290e9a8 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/download/ArtifactMalformedException.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/download/ArtifactMalformedException.java @@ -1,3 +1,20 @@ +/* + * Hello Minecraft! Launcher + * Copyright (C) 2020 huangyuhui and contributors + * + * This 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; import java.io.IOException; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CancellableTaskExecutor.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CancellableTaskExecutor.java index d47dac599..3d90d12f3 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CancellableTaskExecutor.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/CancellableTaskExecutor.java @@ -1,3 +1,20 @@ +/* + * Hello Minecraft! Launcher + * Copyright (C) 2020 huangyuhui and contributors + * + * This 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.task; import org.jackhuang.hmcl.util.Logging; 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 8489ac35c..853b5dbcf 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/task/TaskExecutor.java @@ -1,3 +1,20 @@ +/* + * Hello Minecraft! Launcher + * Copyright (C) 2020 huangyuhui and contributors + * + * This 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.task; import org.jetbrains.annotations.Nullable; 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 253ab5c20..2615d9a9c 100644 --- a/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java +++ b/HMCLCore/src/test/java/org/jackhuang/hmcl/util/VersionNumberTest.java @@ -86,7 +86,7 @@ public class VersionNumberTest { "1.10.2-forge2511-simple_life_2", "1.10.2-forge2511_bxztest", "1.10.2-forge2511_Farming_Valley", - "1.10.2-forge2511?单生活BXZ", + "1.10.2-forge2511中文", "1.10.2-FTB_Beyond", "1.10.2-LiteLoader1.10.2", "1.12.2",