From 27892ea237b6c5dd675ed99eca90beec9a00242d Mon Sep 17 00:00:00 2001 From: Fankesyooni Date: Sun, 27 Mar 2022 23:59:14 +0800 Subject: [PATCH] Update version to 1.0.67 --- README.md | 12 ++++++++++-- build.gradle | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 836f9f4b..49ca7bc1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Eclipse Marketplace](https://img.shields.io/badge/build-passing-brightgreen) ![Eclipse Marketplace](https://img.shields.io/badge/license-MIT-blue) -![Eclipse Marketplace](https://img.shields.io/badge/version-v1.0.66-green) +![Eclipse Marketplace](https://img.shields.io/badge/version-v1.0.67-green) [![Telegram](https://img.shields.io/static/v1?label=Telegram&message=交流讨论&color=0088cc)](https://t.me/XiaofangInternet)

@@ -173,7 +173,15 @@ class MainHook : YukiHookXposedInitProxy { - 1.0.66
修复 `MethodFinder` 中的一个严重问题;
增加 `hookParam` 中的 `args` 调用方法;
- 修复其它可能存在的问题以及修复部分类的注释问题。 + 修复其它可能存在的问题以及修复部分类的注释问题。

+- 1.0.67
+ 增加三个 `Finder` 中的 `modifiers` 功能,可筛选 `static`、`native`、`public`、`abstract` 等诸多描述类型;
+ 增加方法和构造方法查找时可模糊方法参数类型为指定个数进行查找;
+ 增加 `Member` 的 `hasModifiers` 扩展功能;
+ 增加 `MethodFinder` 和 `ConstructorFinder` 中的 `give` 方法,可获得原始类型;
+ 增加 `YukiHookModulePrefs` 中的 `PrefsData` 模板功能;
+ 彻底对方法、构造方法及变量的查找方案进行重构;
+ 优化代码注释,修复了可能产生的 BUG。 # Features diff --git a/build.gradle b/build.gradle index dcdc2e23..42b3d482 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.66" + apiVersion = "1.0.67" repoName = "YukiHookAPI" repoDescription = "An efficient Kotlin version of the Xposed Hook API." licenceName = "MIT License"