Skip to content

Commit 947ec80

Browse files
committed
Update version to 1.7
1 parent c07f3e9 commit 947ec80

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Blank](https://img.shields.io/badge/build-passing-brightgreen)](https://github.com/fankes/ColorOSNotifyIcon)
44
[![Blank](https://img.shields.io/badge/license-AGPL3.0-blue)](https://github.com/fankes/ColorOSNotifyIcon/blob/master/LICENSE)
5-
[![Blank](https://img.shields.io/badge/version-v1.6-green)](https://github.com/fankes/ColorOSNotifyIcon/releases)
5+
[![Blank](https://img.shields.io/badge/version-v1.7-green)](https://github.com/fankes/ColorOSNotifyIcon/releases)
66
[![Blank](https://img.shields.io/github/downloads/fankes/ColorOSNotifyIcon/total?label=Release)](https://github.com/fankes/ColorOSNotifyIcon/releases)
77
[![Blank](https://img.shields.io/github/downloads/Xposed-Modules-Repo/com.fankes.coloros.notify/total?label=LSPosed%20Repo&logo=Android&style=flat&labelColor=F48FB1&logoColor=ffffff)](https://github.com/Xposed-Modules-Repo/com.fankes.coloros.notify/releases)
88
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/XiaofangInternet)
@@ -30,8 +30,8 @@ Optimize notification icons for ColorOS and adapt to native notification icon sp
3030
- 本模块完全开源免费,如果好用你可以打赏支持开发,但是请不要用于非法用途。
3131

3232
- 本模块发布地址仅有 [Xposed-Modules-Repo](https://github.com/Xposed-Modules-Repo/com.fankes.coloros.notify/releases)
33-
[Release](https://github.com/fankes/ColorOSNotifyIcon/releases)
34-
[蓝奏云](https://fankes.lanzouy.com/b030rvjyf),从其他非正规渠道下载到的版本或对您造成任何影响均与我们无关。
33+
[Release](https://github.com/fankes/ColorOSNotifyIcon/releases)[蓝奏云](https://fankes.lanzouy.com/b030rvjyf)**酷安应用市场**
34+
,从其他非正规渠道下载到的版本或对您造成任何影响均与我们无关。
3535

3636
## 贡献通知图标优化名单
3737

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'com.android.application'
33
id 'org.jetbrains.kotlin.android'
4-
id 'com.google.devtools.ksp' version '1.6.20-1.0.5'
4+
id 'com.google.devtools.ksp' version '1.6.21-1.0.5'
55
}
66

77
android {

app/src/main/java/com/fankes/coloros/notify/const/Const.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object Const {
4141
const val MODULE_VERSION_CODE = BuildConfig.VERSION_CODE
4242

4343
/** 当前模块的版本校验 */
44-
const val MODULE_VERSION_VERIFY = "${MODULE_VERSION_NAME}_${MODULE_VERSION_CODE}_202204140318"
44+
const val MODULE_VERSION_VERIFY = "${MODULE_VERSION_NAME}_${MODULE_VERSION_CODE}_202205040646"
4545

4646
/** 当前模块的版本校验标签 */
4747
const val MODULE_VERSION_VERIFY_TAG = "module_version_verify"

app/src/main/java/com/fankes/coloros/notify/ui/activity/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
139139
binding.notifyIconAutoSyncSwitch.isChecked = modulePrefs.get(DataConst.ENABLE_NOTIFY_ICON_FIX_AUTO)
140140
binding.notifyPanelConfigSwitch.isChecked = modulePrefs.get(DataConst.ENABLE_NOTIFY_PANEL_ALPHA)
141141
binding.notifyPanelConfigSeekbar.progress = modulePrefs.get(DataConst.NOTIFY_PANEL_ALPHA)
142-
binding.notifyPanelConfigText.text = "当前 - ${modulePrefs.get(DataConst.NOTIFY_PANEL_ALPHA)}"
142+
binding.notifyPanelConfigText.text = "当前值 - ${modulePrefs.get(DataConst.NOTIFY_PANEL_ALPHA)}"
143143
binding.notifyIconAutoSyncText.text = notifyIconAutoSyncTime
144144
binding.moduleEnableSwitch.setOnCheckedChangeListener { btn, b ->
145145
if (btn.isPressed.not()) return@setOnCheckedChangeListener
@@ -212,7 +212,7 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
212212
}
213213
binding.notifyPanelConfigSeekbar.setOnSeekBarChangeListener(object : OnSeekBarChangeListener {
214214
override fun onProgressChanged(seekBar: SeekBar?, progress: Int, fromUser: Boolean) {
215-
binding.notifyPanelConfigText.text = "当前 - $progress"
215+
binding.notifyPanelConfigText.text = "当前值 - $progress"
216216
}
217217

218218
override fun onStopTrackingTouch(seekBar: SeekBar) {

app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@
453453
android:paddingTop="5dp"
454454
android:paddingBottom="15dp"
455455
android:singleLine="true"
456-
android:text="当前 - %1"
456+
android:text="当前值 - %1"
457457
android:textColor="@color/colorTextGray"
458458
android:textSize="14sp" />
459459

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
22
id 'com.android.application' version '7.1.3' apply false
33
id 'com.android.library' version '7.1.3' apply false
4-
id 'org.jetbrains.kotlin.android' version '1.6.20' apply false
4+
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
55
}
66

77
ext {
8-
appVersionName = "1.6"
9-
appVersionCode = 11
8+
appVersionName = "1.7"
9+
appVersionCode = 12
1010
enableR8 = true
1111
}
1212

0 commit comments

Comments
 (0)