Skip to content

Commit ecfd6e4

Browse files
committed
Re-update version to 1.1.8
1 parent 370f954 commit ecfd6e4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README-zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Yuki Hook API
22

33
![Blank](https://img.shields.io/badge/license-MIT-blue)
4-
![Blank](https://img.shields.io/badge/version-v1.1.7-green)
4+
![Blank](https://img.shields.io/badge/version-v1.1.8-green)
55
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/YukiHookAPI)
66
<br/><br/>
77
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png?raw=true" width = "100" height = "100"/>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Yuki Hook API
22

33
![Blank](https://img.shields.io/badge/license-MIT-blue)
4-
![Blank](https://img.shields.io/badge/version-v1.1.7-green)
4+
![Blank](https://img.shields.io/badge/version-v1.1.8-green)
55
[![Telegram](https://img.shields.io/badge/Follow-Telegram-blue.svg?logo=telegram)](https://t.me/YukiHookAPI)
66
<br/><br/>
77
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png?raw=true" width = "100" height = "100"/>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ext {
1010
devUser = "fankesyooni"
1111
userEmail = "[email protected]"
1212
groupId = "com.highcapable.yukihookapi"
13-
apiVersion = "1.1.7"
13+
apiVersion = "1.1.8"
1414
repoName = "YukiHookAPI"
1515
repoDescription = "An efficient Hook API and Xposed Module solution built in Kotlin."
1616
licenceName = "MIT License"

docs-source/src/en/about/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ Time zone of version release date: **UTC+8**
1616

1717
:::
1818

19-
### 1.1.7 | 2023.02.01 &ensp;<Badge type="tip" text="latest" vertical="middle" />
19+
### 1.1.8 | 2023.02.01 &ensp;<Badge type="tip" text="latest" vertical="middle" />
2020

2121
- Fixed the problem that the underlying Hook method cannot update the modified state synchronously when modifying parameters such as `result` during callback, thanks to the [Issue](https://github.com/fankes/YukiHookAPI/issues/23) of [Yongzheng Lai](https://github.com/elvizlai)
2222
- Move the entry class name file automatically generated by `YukiHookAPI` from `assets/yukihookapi_init` to `resources/META-INF/yukihookapi_init`
2323
- When only printing the exception stack, the `msg` parameter is allowed to be empty and the `msg` parameter can not be set, and the log with the `msg` parameter left blank will not be logged unless the exception stack is not empty
2424
- Fixed the bug that the log printed by the exception that occurs in the body of the Hook callback method has no specific method information
2525
- `HookParam` adds `instanceOrNull` variable and method, which can be used on the premise that the Hook instance is not sure whether it is empty to prevent the Hook instance from being empty and throw an exception
26-
- Fixed some process conflicts that may occur when Xposed modules are loaded
2726
- Decoupled all hookers in `Member` lookup functionality to `MemberBaseFinder.MemberHookerManager`
2827
- Modified the usage of `by` condition in `YukiMemberHookCreator`, now you can reuse `by` method to set multiple conditions
2928
- Removed wrong `Class` object declaration in Android `type`
3029
- The `registerReceiver` method in `PackageParam.AppLifecycle` adds the function of directly using `IntentFilter` to create a system broadcast listener
3130
- Fixed the problem that there may be multiple registration lifecycles in `PackageParam.AppLifecycle`
31+
- Revert: The 1.1.7 version has been withdrawn due to a serious problem, please update to this version directly (the update log is the same as version 1.1.7)
3232

3333
### 1.1.6 | 2023.01.21 &ensp;<Badge type="warning" text="stale" vertical="middle" />
3434

docs-source/src/zh-cn/about/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88

99
:::
1010

11-
### 1.1.7 | 2023.02.01 &ensp;<Badge type="tip" text="最新" vertical="middle" />
11+
### 1.1.8 | 2023.02.01 &ensp;<Badge type="tip" text="最新" vertical="middle" />
1212

1313
- 修复底层 Hook 方法在回调时修改 `result` 等参数时时不能同步更新修改后的状态问题,感谢 [Yongzheng Lai](https://github.com/elvizlai)[Issue](https://github.com/fankes/YukiHookAPI/issues/23)
1414
- 移动 `YukiHookAPI` 自动生成的入口类名称文件 `assets/yukihookapi_init``resources/META-INF/yukihookapi_init`
1515
- 允许在仅打印异常堆栈时 `msg` 参数为空并可以不设置 `msg` 参数,留空 `msg` 参数的日志除非异常堆栈不为空否则将不会被记录
1616
- 修复 Hook 回调方法体内发生的异常打印的日志无具体方法信息的 BUG
1717
- `HookParam` 新增 `instanceOrNull` 变量与方法,可以在不确定 Hook 实例是否为空的前提下使用以防止 Hook 实例为空抛出异常
18-
- 修复 Xposed 模块装载时可能出现的一些进程冲突问题
1918
- 解耦合所有 `Member` 查找功能中的 Hooker 到 `MemberBaseFinder.MemberHookerManager`
2019
- 修改了 `YukiMemberHookCreator` 中的 `by` 条件用法,现在可以重复使用 `by` 方法设置多个条件
2120
- 移除了 Android `type` 中的错误 `Class` 对象声明
2221
- `PackageParam.AppLifecycle` 中的 `registerReceiver` 方法新增直接使用 `IntentFilter` 创建系统广播监听的功能
2322
- 修复在 `PackageParam.AppLifecycle` 中可能存在多次注册生命周期的问题
23+
- Revert: 1.1.7 版本由于有一个严重问题已经撤回,请直接更新到此版本即可 (更新日志同 1.1.7 版本)
2424

2525
### 1.1.6 | 2023.01.21 &ensp;<Badge type="warning" text="过旧" vertical="middle" />
2626

yukihookapi/src/api/kotlin/com/highcapable/yukihookapi/YukiHookAPI.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ object YukiHookAPI {
8080
internal var isLoadedFromBaseContext = false
8181

8282
/** 获取当前 [YukiHookAPI] 的版本 */
83-
const val API_VERSION_NAME = "1.1.7"
83+
const val API_VERSION_NAME = "1.1.8"
8484

8585
/** 获取当前 [YukiHookAPI] 的版本号 */
8686
const val API_VERSION_CODE = 41

0 commit comments

Comments
 (0)