mirror of
https://github.com/fankes/TSBattery.git
synced 2025-09-04 17:55:30 +08:00
Update version to 3.97 | Support QQ 8.8.95
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[](https://github.com/fankes/TSBattery)
|
[](https://github.com/fankes/TSBattery)
|
||||||
[](https://github.com/fankes/TSBattery/blob/master/LICENSE)
|
[](https://github.com/fankes/TSBattery/blob/master/LICENSE)
|
||||||
[](https://github.com/fankes/TSBattery/releases)
|
[](https://github.com/fankes/TSBattery/releases)
|
||||||
[](https://github.com/fankes/TSBattery/releases)
|
[](https://github.com/fankes/TSBattery/releases)
|
||||||
[](https://github.com/Xposed-Modules-Repo/com.fankes.tsbattery/releases)
|
[](https://github.com/Xposed-Modules-Repo/com.fankes.tsbattery/releases)
|
||||||
[](https://t.me/XiaofangInternet)
|
[](https://t.me/XiaofangInternet)
|
||||||
|
@@ -134,7 +134,7 @@ class HookEntry : IYukiHookXposedInit {
|
|||||||
interceptBaseChatPie(methodName = "bl")
|
interceptBaseChatPie(methodName = "bl")
|
||||||
interceptBaseChatPie(methodName = "bm")
|
interceptBaseChatPie(methodName = "bm")
|
||||||
}
|
}
|
||||||
"8.8.93" -> {
|
"8.8.93", "8.8.95" -> {
|
||||||
interceptBaseChatPie(methodName = "J3")
|
interceptBaseChatPie(methodName = "J3")
|
||||||
interceptBaseChatPie(methodName = "S")
|
interceptBaseChatPie(methodName = "S")
|
||||||
}
|
}
|
||||||
|
@@ -46,8 +46,20 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
|
|||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
private const val moduleVersion = BuildConfig.VERSION_NAME
|
private const val moduleVersion = BuildConfig.VERSION_NAME
|
||||||
private const val qqSupportVersion =
|
private val qqSupportVersions = arrayOf(
|
||||||
"8.2.11(Play)、8.8.17、8.8.23、8.8.35、8.8.38、8.8.50、8.8.55、8.8.68、8.8.80、8.8.83、8.8.85、8.8.88、8.8.90、8.8.93 (8.2.11、8.5.5~8.8.93)"
|
"8.2.11(Play)", "8.8.17", "8.8.23",
|
||||||
|
"8.8.35", "8.8.38", "8.8.50",
|
||||||
|
"8.8.55", "8.8.68", "8.8.80",
|
||||||
|
"8.8.83", "8.8.85", "8.8.88",
|
||||||
|
"8.8.90", "8.8.93", "8.8.95"
|
||||||
|
)
|
||||||
|
private val qqSupportVersion by lazy {
|
||||||
|
if (qqSupportVersions.isNotEmpty()) {
|
||||||
|
var value = ""
|
||||||
|
qqSupportVersions.forEach { value += "$it、" }
|
||||||
|
"${value.trim().let { it.substring(0, it.lastIndex) }}\n\n其余版本请自行测试是否有效。"
|
||||||
|
} else "empty"
|
||||||
|
}
|
||||||
private const val timSupportVersion = "2+、3+ (并未完全测试每个版本)"
|
private const val timSupportVersion = "2+、3+ (并未完全测试每个版本)"
|
||||||
private const val wechatSupportVersion = "全版本仅支持基础省电,更多功能依然画饼"
|
private const val wechatSupportVersion = "全版本仅支持基础省电,更多功能依然画饼"
|
||||||
|
|
||||||
|
@@ -5,8 +5,8 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
appVersionName = "3.96"
|
appVersionName = "3.97"
|
||||||
appVersionCode = 19
|
appVersionCode = 20
|
||||||
enableR8 = true
|
enableR8 = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user