Skip to content

Commit

Permalink
v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Dec 3, 2019
1 parent 6ebbffd commit 78fd3e2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来
+ 微信收款商业版店员到账收款通知

## 更新记录
+ v1.8(2019.12.03)
+ 修复付款人昵称如果是纯数字,支付完后台订单金额会记录成昵称的数字的问题

+ v1.7(2019.05.17)
+ 删除辅助功能依赖,改为使用通知使用权进行监听,修复一大堆bug,建议更新到该版本

Expand Down
Binary file modified app/app-release.apk
Binary file not shown.
2 changes: 2 additions & 0 deletions app/src/main/java/com/vone/vmq/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ protected void onCreate(Bundle savedInstanceState) {
}


Toast.makeText(MainActivity.this, "v免签开源免费免签系统 v1.8", Toast.LENGTH_SHORT).show();


}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/vone/vmq/NeNotificationService2.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public static String getMoney(String content){
boolean result = m.find();
String find_result = null;
if (result) {
find_result = m.group(1);
find_result = m.group(m.groupCount());
}
return find_result;
}
Expand Down

0 comments on commit 78fd3e2

Please sign in to comment.