mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-04 17:55:24 +08:00
Update version to 1.0.75
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
[](https://t.me/YukiHookAPI)
|
[](https://t.me/YukiHookAPI)
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png" width = "100" height = "100"/>
|
<img src="https://github.com/fankes/YuKiHookAPI/blob/master/img-src/icon.png" width = "100" height = "100"/>
|
||||||
|
@@ -10,7 +10,7 @@ ext {
|
|||||||
devUser = "fankesyooni"
|
devUser = "fankesyooni"
|
||||||
userEmail = "qzmmcn@163.com"
|
userEmail = "qzmmcn@163.com"
|
||||||
groupId = "com.highcapable.yukihookapi"
|
groupId = "com.highcapable.yukihookapi"
|
||||||
apiVersion = "1.0.73"
|
apiVersion = "1.0.75"
|
||||||
repoName = "YukiHookAPI"
|
repoName = "YukiHookAPI"
|
||||||
repoDescription = "An efficient Kotlin version of the Xposed Hook API."
|
repoDescription = "An efficient Kotlin version of the Xposed Hook API."
|
||||||
licenceName = "MIT License"
|
licenceName = "MIT License"
|
||||||
|
@@ -2,6 +2,15 @@
|
|||||||
|
|
||||||
> 这里记录了 `YukiHookAPI` 的版本更新历史。
|
> 这里记录了 `YukiHookAPI` 的版本更新历史。
|
||||||
|
|
||||||
|
### 1.0.75 | 2022.04.13
|
||||||
|
|
||||||
|
- 更正了自动处理程序的逻辑识别部分,感谢 [ApeaSuperz](https://github.com/ApeaSuperz) 的贡献
|
||||||
|
- 修正一处文档注释的引用未更改的问题
|
||||||
|
- `HookParam` 中删除了 `firstArgs` 与 `lastArgs` 方法,现在你可以使用 `args().first()` 与 `args().last()` 来取代它
|
||||||
|
- `HookParam` 中删除了 `args()` 中的默认参数 `index = 0`,现在你可以使用 `args().first()` 或 `args(index = 0)` 来取代它
|
||||||
|
- `HookParam` 中 `result` 功能增加了泛型匹配,现在你可以使用 `result<T>` 来匹配你的目标方法已知返回值类型了
|
||||||
|
- 方法、构造方法查询功能新增 `emptyParam` 条件,并完善了文档相关需要注意的查询条件误区
|
||||||
|
|
||||||
### 1.0.73 | 2022.04.10
|
### 1.0.73 | 2022.04.10
|
||||||
|
|
||||||
- 修正几处文档的中文翻译错误,感谢 [WankkoRee](https://github.com/WankkoRee) 的贡献
|
- 修正几处文档的中文翻译错误,感谢 [WankkoRee](https://github.com/WankkoRee) 的贡献
|
||||||
|
@@ -68,10 +68,10 @@ object YukiHookAPI {
|
|||||||
internal var isLoadedFromBaseContext = false
|
internal var isLoadedFromBaseContext = false
|
||||||
|
|
||||||
/** 获取当前 [YukiHookAPI] 的版本 */
|
/** 获取当前 [YukiHookAPI] 的版本 */
|
||||||
const val API_VERSION_NAME = "1.0.73"
|
const val API_VERSION_NAME = "1.0.75"
|
||||||
|
|
||||||
/** 获取当前 [YukiHookAPI] 的版本号 */
|
/** 获取当前 [YukiHookAPI] 的版本号 */
|
||||||
const val API_VERSION_CODE = 18
|
const val API_VERSION_CODE = 19
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取当前 Hook 框架的名称
|
* 获取当前 Hook 框架的名称
|
||||||
|
Reference in New Issue
Block a user