Update version to 1.1.1

This commit is contained in:
2022-09-28 19:05:53 +08:00
parent b33651ee5c
commit 496580e257
6 changed files with 23 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
# Yuki Hook API
![Blank](https://img.shields.io/badge/license-MIT-blue)
![Blank](https://img.shields.io/badge/version-v1.1.0-green)
![Blank](https://img.shields.io/badge/version-v1.1.1-green)
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/YukiHookAPI)
<br/><br/>
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png" width = "100" height = "100"/>

View File

@@ -1,7 +1,7 @@
# Yuki Hook API
![Blank](https://img.shields.io/badge/license-MIT-blue)
![Blank](https://img.shields.io/badge/version-v1.1.0-green)
![Blank](https://img.shields.io/badge/version-v1.1.1-green)
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/YukiHookAPI)
<br/><br/>
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png" width = "100" height = "100"/>

View File

@@ -10,7 +10,7 @@ ext {
devUser = "fankesyooni"
userEmail = "qzmmcn@163.com"
groupId = "com.highcapable.yukihookapi"
apiVersion = "1.1.0"
apiVersion = "1.1.1"
repoName = "YukiHookAPI"
repoDescription = "An efficient Kotlin version of the Xposed Hook API."
licenceName = "MIT License"

View File

@@ -16,12 +16,18 @@ Time zone of version release date: **UTC+8**
:::
### 1.1.0 | 2022.09.28 &ensp;<Badge type="tip" text="latest" vertical="middle" />
### 1.1.1 | 2022.09.28 &ensp;<Badge type="tip" text="latest" vertical="middle" />
- Fixed the problem of wrong document link in [Basic Knowledge](../guide/knowledge) page
- Fixed document `favicon` not showing up
- Fixed bug in `DexClassFinder` search conditions
### 1.1.0 | 2022.09.28 &ensp;<Badge type="warning" text="stale" vertical="middle" />
- This is a major version update, please refer to [API Document](../api/home) and [Special Features](../api/special-features/reflection) for the changes and usage mentioned in the changelog
- Change the help documentation framework to [VuePress](https://v2.vuepress.vuejs.org)
- Unify and standardize the terms and nouns in the document, for example, "query" is always changed to "find", `XposedHelper` is misspelled and changed to `XposedHelpers`
- Documentation Getting Started → Basic Knowledge page to add a link, Simplified Chinese only
- Documentation [Basic Knowledge](../guide/knowledge) page to add a link, Simplified Chinese only
- Convert `Class` and `Method` of Hook App Demo to Java to provide better demo effect
- Fixed code comment naming in Hook Module Demo
- Refactored a lot of low-level Hook logic and the docking method of Xposed API
@@ -85,7 +91,7 @@ Time zone of version release date: **UTC+8**
- Modify the exception handling logic of `AppLifecycle` and throw it directly to the host when an exception occurs
- Updated Demo API version to 33
### 1.0.92 | 2022.05.31 &ensp;<Badge type="warning" text="stale" vertical="middle" />
### 1.0.92 | 2022.05.31 &ensp;<Badge type="danger" text="outdate" vertical="middle" />
- Fixed the naming method of callback in a large number of methods
- Changed the solution to fix the problem that `YukiHookDataChannel` cannot call back the current `Activity` broadcast on devices lower than **Android 12**

View File

@@ -8,12 +8,18 @@
:::
### 1.1.0 | 2022.09.28 &ensp;<Badge type="tip" text="最新" vertical="middle" />
### 1.1.1 | 2022.09.28 &ensp;<Badge type="tip" text="最新" vertical="middle" />
- 修复了文档 [基础知识](../guide/knowledge) 页面友情链接错误的问题
- 修复了文档 `favicon` 不显示的问题
- 修复 `DexClassFinder` 查找条件中的 BUG
### 1.1.0 | 2022.09.28 &ensp;<Badge type="warning" text="过旧" vertical="middle" />
- 这是一次大版本更新,有关更新日志中提到的变化及用法请参考 [API 文档](../api/home) 以及 [特色功能](../api/special-features/reflection)
- 更换帮助文档框架到 [VuePress](https://v2.vuepress.vuejs.org)
- 统一并规范文档中的术语名词,例如“查询”一律更改为了“查找”,`XposedHelper` 拼写错误修改为了 `XposedHelpers`
- 文档 入门 → 基础知识 页面加入友情链接,仅限简体中文
- 文档 [基础知识](../guide/knowledge) 页面加入友情链接,仅限简体中文
- 将 Hook App Demo 的 `Class``Method` 转为 Java 以提供更好的演示效果
- 修正了 Hook Module Demo 中的代码注释命名
- 重构了大量底层 Hook 逻辑及 Xposed API 的对接方式
@@ -77,7 +83,7 @@
- 修改 `AppLifecycle` 的异常处理逻辑,当其发生异常时直接抛给宿主
- 更新 Demo 的 API 版本到 33
### 1.0.92 | 2022.05.31 &ensp;<Badge type="warning" text="过" vertical="middle" />
### 1.0.92 | 2022.05.31 &ensp;<Badge type="danger" text="过" vertical="middle" />
- 修正了大量方法中 callback 的命名方法
- 更换方案再次修复 `YukiHookDataChannel` 在低于 **Android 12** 的设备上不能回调当前 `Activity` 广播的问题

View File

@@ -78,10 +78,10 @@ object YukiHookAPI {
internal var isLoadedFromBaseContext = false
/** 获取当前 [YukiHookAPI] 的版本 */
const val API_VERSION_NAME = "1.1.0"
const val API_VERSION_NAME = "1.1.1"
/** 获取当前 [YukiHookAPI] 的版本号 */
const val API_VERSION_CODE = 34
const val API_VERSION_CODE = 35
/**
* 当前 [YukiHookAPI] 的状态