Skip to content

Commit

Permalink
v1.05
Browse files Browse the repository at this point in the history
修复
1.语音消息撤回后无法播放;
2.图片消息撤回后无法查看;
3.微信运动一键点赞只能点击前几个人;
  • Loading branch information
su committed Mar 26, 2018
1 parent cf6f02c commit 1c982b4
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@ Xposed 微信辅助模块,实现消息防撤回、模拟位置、运动步数
![01.png](https://raw.githubusercontent.com/wuxiaosu/XposedWechatHelper/master/screenshots/01.png)
![02.png](https://raw.githubusercontent.com/wuxiaosu/XposedWechatHelper/master/screenshots/02.png)
## 下载
- release from [github](https://github.com/wuxiaosu/XposedWechatHelper/releases) [v1.03](https://github.com/wuxiaosu/XposedWechatHelper/releases/tag/v1.03)
- release from [github](https://github.com/wuxiaosu/XposedWechatHelper/releases) [v1.05](https://github.com/wuxiaosu/XposedWechatHelper/releases/tag/v1.05)
- release from [酷安](https://www.coolapk.com/apk/180057)
## v1.05
修复
1.语音消息撤回后无法播放;
2.图片消息撤回后无法查看;
3.微信运动一键点赞只能点击前几个人;
待解决bug
隐藏“发现页”之后,从个人资料页点击“发消息”进入聊天界面,再点击左上角返回按钮会闪退,可以在聊天界面左滑返回;
## v1.04
修复部分机型 1.03 无法覆盖安装 1.02 的问题;
## v1.03
新增
1.微信运动一键点赞;
Expand Down
19 changes: 17 additions & 2 deletions wechathelper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.wuxiaosu.wechathelper"
minSdkVersion 21
targetSdkVersion 23
versionCode 5
versionName "1.04"
versionCode 6
versionName "1.05"
}

signingConfigs {
Expand Down Expand Up @@ -47,6 +47,17 @@ android {
manifestPlaceholders = [
TencentMapKey: "WKNBZ-3UU6X-B4D4K-TRLDW-C5NWQ-XSBGZ"
]

applicationVariants.all { variant ->
variant.outputs.all { output ->
def oldFile = output.outputFile
def newName = oldFile.name
if (variant.buildType.name == 'debug') {
newName = oldFile.name.replace(".", "-v" + buildTime() + '.')
}
outputFileName = newName
}
}
}

}
Expand All @@ -70,3 +81,7 @@ dependencies {
compile project(':tencentmaplitelib')
implementation 'com.github.wuxiaosu:SettingLabelView:1.0@aar'
}

static def buildTime() {
return new Date().format("yyMMddHHss", TimeZone.getTimeZone("GMT+08"))
}
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
}
if (!nickName.equals(username)) {
View view = ((RelativeLayout) ((LinearLayout)
((RelativeLayout) listView.getChildAt(i))
((RelativeLayout) listAdapter.getView(i, null, null))
.getChildAt(1))
.getChildAt(1)).getChildAt(1);
view.performClick();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public class RevokeMsgHook {

private static boolean disableRevoke;

// TODO: 2018/3/14 语音消息撤回后无法播放

public static void hook(ClassLoader classLoader) {
xsp = new XSharedPreferences(BuildConfig.APPLICATION_ID, SettingLabelView.DEFAULT_PREFERENCES_NAME);
xsp.makeWorldReadable();
Expand Down

0 comments on commit 1c982b4

Please sign in to comment.