From aec000e252fa76ab3324ffac86a2ee037066beed Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Mon, 13 Jan 2025 11:15:31 +0800 Subject: [PATCH] docs: update license --- README.md | 4 ++-- .../java/com/fankes/miui/notify/application/MNNApplication.kt | 2 +- app/src/main/java/com/fankes/miui/notify/bean/IconDataBean.kt | 2 +- .../main/java/com/fankes/miui/notify/const/ConstFactory.kt | 2 +- app/src/main/java/com/fankes/miui/notify/data/ConfigData.kt | 2 +- .../fankes/miui/notify/data/factory/CompoundButtonFactory.kt | 2 +- .../com/fankes/miui/notify/data/factory/SeekBarFactory.kt | 2 +- app/src/main/java/com/fankes/miui/notify/hook/HookEntry.kt | 2 +- .../java/com/fankes/miui/notify/hook/entity/SystemUIHooker.kt | 2 +- .../main/java/com/fankes/miui/notify/params/IconPackParams.kt | 2 +- .../java/com/fankes/miui/notify/params/factory/DataFactory.kt | 2 +- .../com/fankes/miui/notify/service/QuickStartTileService.kt | 2 +- .../com/fankes/miui/notify/ui/activity/ConfigureActivity.kt | 2 +- .../java/com/fankes/miui/notify/ui/activity/MainActivity.kt | 2 +- .../notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt | 2 +- .../com/fankes/miui/notify/ui/activity/base/BaseActivity.kt | 2 +- .../java/com/fankes/miui/notify/ui/widget/MaterialSwitch.kt | 2 +- .../miui/notify/utils/factory/BackPressedEventFactory.kt | 2 +- .../fankes/miui/notify/utils/factory/BaseAdapterFactory.kt | 2 +- .../fankes/miui/notify/utils/factory/DialogBuilderFactory.kt | 2 +- .../com/fankes/miui/notify/utils/factory/ExceptionFactory.kt | 2 +- .../com/fankes/miui/notify/utils/factory/FunctionFactory.kt | 2 +- .../com/fankes/miui/notify/utils/tool/ActivationPromptTool.kt | 2 +- .../com/fankes/miui/notify/utils/tool/BitmapCompatTool.kt | 2 +- .../com/fankes/miui/notify/utils/tool/GithubReleaseTool.kt | 2 +- .../java/com/fankes/miui/notify/utils/tool/I18nWarnTool.kt | 2 +- .../com/fankes/miui/notify/utils/tool/IconAdaptationTool.kt | 2 +- .../com/fankes/miui/notify/utils/tool/IconRuleManagerTool.kt | 2 +- .../java/com/fankes/miui/notify/utils/tool/SystemUITool.kt | 2 +- .../java/com/fankes/miui/notify/wrapper/BuildConfigWrapper.kt | 2 +- 30 files changed, 31 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 7439658..00b1ca3 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ This project will not be adapted i18n, please stay tuned for my new projects in - [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html) ``` -Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) +Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as @@ -118,4 +118,4 @@ along with this program. If not, see . Powered by [YukiHookAPI](https://github.com/HighCapable/YukiHookAPI) -版权所有 © 2017-2024 Fankes Studio(qzmmcn@163.com) \ No newline at end of file +版权所有 © 2017 Fankes Studio(qzmmcn@163.com) \ No newline at end of file diff --git a/app/src/main/java/com/fankes/miui/notify/application/MNNApplication.kt b/app/src/main/java/com/fankes/miui/notify/application/MNNApplication.kt index c043729..662e296 100644 --- a/app/src/main/java/com/fankes/miui/notify/application/MNNApplication.kt +++ b/app/src/main/java/com/fankes/miui/notify/application/MNNApplication.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/bean/IconDataBean.kt b/app/src/main/java/com/fankes/miui/notify/bean/IconDataBean.kt index 9e04898..653dfcd 100644 --- a/app/src/main/java/com/fankes/miui/notify/bean/IconDataBean.kt +++ b/app/src/main/java/com/fankes/miui/notify/bean/IconDataBean.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/const/ConstFactory.kt b/app/src/main/java/com/fankes/miui/notify/const/ConstFactory.kt index 7e08bc7..6892b50 100644 --- a/app/src/main/java/com/fankes/miui/notify/const/ConstFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/const/ConstFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/data/ConfigData.kt b/app/src/main/java/com/fankes/miui/notify/data/ConfigData.kt index f14d25f..86d8183 100644 --- a/app/src/main/java/com/fankes/miui/notify/data/ConfigData.kt +++ b/app/src/main/java/com/fankes/miui/notify/data/ConfigData.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/data/factory/CompoundButtonFactory.kt b/app/src/main/java/com/fankes/miui/notify/data/factory/CompoundButtonFactory.kt index ff85b8b..3fd9a37 100644 --- a/app/src/main/java/com/fankes/miui/notify/data/factory/CompoundButtonFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/data/factory/CompoundButtonFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/data/factory/SeekBarFactory.kt b/app/src/main/java/com/fankes/miui/notify/data/factory/SeekBarFactory.kt index 7756891..c2c3761 100644 --- a/app/src/main/java/com/fankes/miui/notify/data/factory/SeekBarFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/data/factory/SeekBarFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/hook/HookEntry.kt b/app/src/main/java/com/fankes/miui/notify/hook/HookEntry.kt index 9401693..d08406c 100644 --- a/app/src/main/java/com/fankes/miui/notify/hook/HookEntry.kt +++ b/app/src/main/java/com/fankes/miui/notify/hook/HookEntry.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/hook/entity/SystemUIHooker.kt b/app/src/main/java/com/fankes/miui/notify/hook/entity/SystemUIHooker.kt index e2aea12..511862f 100644 --- a/app/src/main/java/com/fankes/miui/notify/hook/entity/SystemUIHooker.kt +++ b/app/src/main/java/com/fankes/miui/notify/hook/entity/SystemUIHooker.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/params/IconPackParams.kt b/app/src/main/java/com/fankes/miui/notify/params/IconPackParams.kt index 99b4495..5e7e5bf 100644 --- a/app/src/main/java/com/fankes/miui/notify/params/IconPackParams.kt +++ b/app/src/main/java/com/fankes/miui/notify/params/IconPackParams.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/params/factory/DataFactory.kt b/app/src/main/java/com/fankes/miui/notify/params/factory/DataFactory.kt index ad50a95..f5df718 100644 --- a/app/src/main/java/com/fankes/miui/notify/params/factory/DataFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/params/factory/DataFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/service/QuickStartTileService.kt b/app/src/main/java/com/fankes/miui/notify/service/QuickStartTileService.kt index ec36d08..e7a405f 100644 --- a/app/src/main/java/com/fankes/miui/notify/service/QuickStartTileService.kt +++ b/app/src/main/java/com/fankes/miui/notify/service/QuickStartTileService.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/ui/activity/ConfigureActivity.kt b/app/src/main/java/com/fankes/miui/notify/ui/activity/ConfigureActivity.kt index a509972..c6d785e 100644 --- a/app/src/main/java/com/fankes/miui/notify/ui/activity/ConfigureActivity.kt +++ b/app/src/main/java/com/fankes/miui/notify/ui/activity/ConfigureActivity.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/ui/activity/MainActivity.kt b/app/src/main/java/com/fankes/miui/notify/ui/activity/MainActivity.kt index cd1d336..b3d2a86 100644 --- a/app/src/main/java/com/fankes/miui/notify/ui/activity/MainActivity.kt +++ b/app/src/main/java/com/fankes/miui/notify/ui/activity/MainActivity.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt b/app/src/main/java/com/fankes/miui/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt index 4f5ae6b..662ddb2 100644 --- a/app/src/main/java/com/fankes/miui/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt +++ b/app/src/main/java/com/fankes/miui/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/ui/activity/base/BaseActivity.kt b/app/src/main/java/com/fankes/miui/notify/ui/activity/base/BaseActivity.kt index 7014109..1ac24e7 100644 --- a/app/src/main/java/com/fankes/miui/notify/ui/activity/base/BaseActivity.kt +++ b/app/src/main/java/com/fankes/miui/notify/ui/activity/base/BaseActivity.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/ui/widget/MaterialSwitch.kt b/app/src/main/java/com/fankes/miui/notify/ui/widget/MaterialSwitch.kt index b4f1768..479dc8f 100644 --- a/app/src/main/java/com/fankes/miui/notify/ui/widget/MaterialSwitch.kt +++ b/app/src/main/java/com/fankes/miui/notify/ui/widget/MaterialSwitch.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/factory/BackPressedEventFactory.kt b/app/src/main/java/com/fankes/miui/notify/utils/factory/BackPressedEventFactory.kt index 53aad68..4f56663 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/factory/BackPressedEventFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/factory/BackPressedEventFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/factory/BaseAdapterFactory.kt b/app/src/main/java/com/fankes/miui/notify/utils/factory/BaseAdapterFactory.kt index 6055409..cc998d4 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/factory/BaseAdapterFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/factory/BaseAdapterFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/factory/DialogBuilderFactory.kt b/app/src/main/java/com/fankes/miui/notify/utils/factory/DialogBuilderFactory.kt index 9c5db37..575f238 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/factory/DialogBuilderFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/factory/DialogBuilderFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/factory/ExceptionFactory.kt b/app/src/main/java/com/fankes/miui/notify/utils/factory/ExceptionFactory.kt index bf98e77..d4bb730 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/factory/ExceptionFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/factory/ExceptionFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/factory/FunctionFactory.kt b/app/src/main/java/com/fankes/miui/notify/utils/factory/FunctionFactory.kt index 94ff1e6..88cb878 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/factory/FunctionFactory.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/factory/FunctionFactory.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/ActivationPromptTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/ActivationPromptTool.kt index 60e2db5..98cb8ef 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/ActivationPromptTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/ActivationPromptTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/BitmapCompatTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/BitmapCompatTool.kt index 9ae7131..c70579a 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/BitmapCompatTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/BitmapCompatTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/GithubReleaseTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/GithubReleaseTool.kt index 464d9f1..e9e4bae 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/GithubReleaseTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/GithubReleaseTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/I18nWarnTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/I18nWarnTool.kt index 6a7bc48..c42a6de 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/I18nWarnTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/I18nWarnTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/IconAdaptationTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/IconAdaptationTool.kt index f97f099..ad19686 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/IconAdaptationTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/IconAdaptationTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/IconRuleManagerTool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/IconRuleManagerTool.kt index 7daaf74..40412fa 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/IconRuleManagerTool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/IconRuleManagerTool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/utils/tool/SystemUITool.kt b/app/src/main/java/com/fankes/miui/notify/utils/tool/SystemUITool.kt index 265da75..3cd914c 100644 --- a/app/src/main/java/com/fankes/miui/notify/utils/tool/SystemUITool.kt +++ b/app/src/main/java/com/fankes/miui/notify/utils/tool/SystemUITool.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it diff --git a/app/src/main/java/com/fankes/miui/notify/wrapper/BuildConfigWrapper.kt b/app/src/main/java/com/fankes/miui/notify/wrapper/BuildConfigWrapper.kt index f42741d..1912ff6 100644 --- a/app/src/main/java/com/fankes/miui/notify/wrapper/BuildConfigWrapper.kt +++ b/app/src/main/java/com/fankes/miui/notify/wrapper/BuildConfigWrapper.kt @@ -1,6 +1,6 @@ /* * MIUINativeNotifyIcon - Fix the native notification bar icon function abandoned by the MIUI development team. - * Copyright (C) 2017-2024 Fankes Studio(qzmmcn@163.com) + * Copyright (C) 2017 Fankes Studio(qzmmcn@163.com) * https://github.com/fankes/MIUINativeNotifyIcon * * This software is non-free but opensource software: you can redistribute it