From 6258f889905253dbd5f0d677f95c6250f9481291 Mon Sep 17 00:00:00 2001 From: Fankesyooni Date: Fri, 15 Apr 2022 04:37:53 +0800 Subject: [PATCH] Update version to 1.0.76 --- README.md | 2 +- build.gradle | 2 +- docs/about/changelog.md | 9 +++++++++ .../kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8a9b8476..0245f6ac 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Blank](https://img.shields.io/badge/build-passing-brightgreen) ![Blank](https://img.shields.io/badge/license-MIT-blue) -![Blank](https://img.shields.io/badge/version-v1.0.75-green) +![Blank](https://img.shields.io/badge/version-v1.0.76-green) [![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/YukiHookAPI)

diff --git a/build.gradle b/build.gradle index c315c855..ff4ec320 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ ext { devUser = "fankesyooni" userEmail = "qzmmcn@163.com" groupId = "com.highcapable.yukihookapi" - apiVersion = "1.0.75" + apiVersion = "1.0.76" repoName = "YukiHookAPI" repoDescription = "An efficient Kotlin version of the Xposed Hook API." licenceName = "MIT License" diff --git a/docs/about/changelog.md b/docs/about/changelog.md index 89990ec4..6dbcb901 100644 --- a/docs/about/changelog.md +++ b/docs/about/changelog.md @@ -2,6 +2,15 @@ > 这里记录了 `YukiHookAPI` 的版本更新历史。 +### 1.0.76 | 2022.04.15 + +- `YukiHookModulePrefs` 新增 `clear` 方法,感谢 [WankkoRee](https://github.com/WankkoRee) 的建议 +- `YukiHookModulePrefs` 新增 `getStringSet`、`putStringSet`、`all` 方法 +- `HookParam` 的 `args` 增加 `any` 方法 +- 新增 `ModuleApplication`,可在模块中继承此类实现更多功能 +- 对接全部的 `findClass` 功能到 Xposed API,在非宿主环境继续使用原生 `ClassLoader` +- 修复了一些可能存在的 BUG + ### 1.0.75 | 2022.04.13 - 更正了自动处理程序的逻辑识别部分,感谢 [ApeaSuperz](https://github.com/ApeaSuperz) 的贡献 diff --git a/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt index c57cbd45..fd6dd019 100644 --- a/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt +++ b/yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt @@ -68,10 +68,10 @@ object YukiHookAPI { internal var isLoadedFromBaseContext = false /** 获取当前 [YukiHookAPI] 的版本 */ - const val API_VERSION_NAME = "1.0.75" + const val API_VERSION_NAME = "1.0.76" /** 获取当前 [YukiHookAPI] 的版本号 */ - const val API_VERSION_CODE = 19 + const val API_VERSION_CODE = 20 /** * 获取当前 Hook 框架的名称