2 Commits

Author SHA1 Message Date
8b657a8aab Update version to 3.99.6 | Support QQ 8.9.2 2022-07-21 19:22:03 +08:00
f0ab310620 Support QQ 8.9.2 2022-07-21 19:20:43 +08:00
4 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
[![Blank](https://img.shields.io/badge/build-passing-brightgreen)](https://github.com/fankes/TSBattery) [![Blank](https://img.shields.io/badge/build-passing-brightgreen)](https://github.com/fankes/TSBattery)
[![Blank](https://img.shields.io/badge/license-AGPL3.0-blue)](https://github.com/fankes/TSBattery/blob/master/LICENSE) [![Blank](https://img.shields.io/badge/license-AGPL3.0-blue)](https://github.com/fankes/TSBattery/blob/master/LICENSE)
[![Blank](https://img.shields.io/badge/version-v3.99.5-green)](https://github.com/fankes/TSBattery/releases) [![Blank](https://img.shields.io/badge/version-v3.99.6-green)](https://github.com/fankes/TSBattery/releases)
[![Blank](https://img.shields.io/github/downloads/fankes/TSBattery/total?label=Release)](https://github.com/fankes/TSBattery/releases) [![Blank](https://img.shields.io/github/downloads/fankes/TSBattery/total?label=Release)](https://github.com/fankes/TSBattery/releases)
[![Blank](https://img.shields.io/github/downloads/Xposed-Modules-Repo/com.fankes.tsbattery/total?label=LSPosed%20Repo&logo=Android&style=flat&labelColor=F48FB1&logoColor=ffffff)](https://github.com/Xposed-Modules-Repo/com.fankes.tsbattery/releases) [![Blank](https://img.shields.io/github/downloads/Xposed-Modules-Repo/com.fankes.tsbattery/total?label=LSPosed%20Repo&logo=Android&style=flat&labelColor=F48FB1&logoColor=ffffff)](https://github.com/Xposed-Modules-Repo/com.fankes.tsbattery/releases)
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/XiaofangInternet) [![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/XiaofangInternet)

View File

@@ -199,7 +199,7 @@ class HookEntry : IYukiHookXposedInit {
interceptBaseChatPie(methodName = "M3") interceptBaseChatPie(methodName = "M3")
interceptBaseChatPie(methodName = "S") interceptBaseChatPie(methodName = "S")
} }
"8.9.0", "8.9.1" -> { "8.9.0", "8.9.1", "8.9.2" -> {
interceptBaseChatPie(methodName = "N3") interceptBaseChatPie(methodName = "N3")
interceptBaseChatPie(methodName = "S") interceptBaseChatPie(methodName = "S")
} }

View File

@@ -54,7 +54,7 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
"8.7.8", "8.8.0", "8.8.3", "8.8.5", "8.8.11", "8.8.12", "8.8.17", "8.7.8", "8.8.0", "8.8.3", "8.8.5", "8.8.11", "8.8.12", "8.8.17",
"8.8.20", "8.8.23", "8.8.28", "8.8.33", "8.8.35", "8.8.38", "8.8.50", "8.8.20", "8.8.23", "8.8.28", "8.8.33", "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.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", "8.8.98", "8.9.0", "8.9.1" "8.8.93", "8.8.95", "8.8.98", "8.9.0", "8.9.1", "8.9.2"
) )
private val qqSupportVersion by lazy { private val qqSupportVersion by lazy {
if (qqSupportVersions.isNotEmpty()) { if (qqSupportVersions.isNotEmpty()) {

View File

@@ -5,8 +5,8 @@ plugins {
} }
ext { ext {
appVersionName = "3.99.5" appVersionName = "3.99.6"
appVersionCode = 23 appVersionCode = 24
enableR8 = true enableR8 = true
} }