Skip to content

Commit

Permalink
发布1.1.4版本
Browse files Browse the repository at this point in the history
  • Loading branch information
q0314 committed Mar 22, 2024
1 parent d91912c commit 9b5f3e8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.vscode
/build
/images
2 changes: 1 addition & 1 deletion modules/auto_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ let auto_action = {
try {
service = com.stardust.autojs.core.accessibility.AccessibilityService.Companion.getInstance();
} catch (e) {
service = com.mrfz.qiao.AccessibilityService.Companion.getInstance();
service = com.pgr.assistant.AccessibilityService.Companion.getInstance();
}
if (!service) {
throw new Error("无障碍服务未开启或异常");
Expand Down
4 changes: 2 additions & 2 deletions modules/ext-a11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ let UiSelector;
let AccessibilityService;

if (app.autojs.versionCode > 8082200 && context.getPackageName().indexOf("org.autojs.autojs") == -1) {
UiSelector = com.mrfz.qiao.accessibility.UiSelector;
AccessibilityService = com.mrfz.qiao.AccessibilityService;
UiSelector = com.pgr.assistant.accessibility.UiSelector;
AccessibilityService = com.pgr.assistant.AccessibilityService;
} else {
UiSelector = com.stardust.autojs.core.accessibility.UiSelector;
AccessibilityService = com.stardust.autojs.core.accessibility.AccessibilityService;
Expand Down
27 changes: 17 additions & 10 deletions project.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
"abis": [
"arm64-v8a",
"armeabi-v7a"
],
"assets": [],
"build": {
"build_id": "B00D28EC-1206",
"build_number": 1206,
"build_time": 1670256277446,
"build_id": "D5F7F40C-1209",
"build_number": 1209,
"build_time": 1711098366025,
"release": false
},
"encryptLevel": 3,
"useFeatures": [],
"icon": "res/icon.png",
"encryptLevel": 0,
"features": {
"activityIntentTasks": false,
"nodejs": "auto"
},
"icon": "images/ic_app_logo.png",
"launchConfig": {
"displaySplash": true,
"hideLogs": false,
Expand All @@ -19,6 +26,7 @@
"main": "hotrun.js",
"name": "PGRAssistant",
"optimization": {
"obfuscateComponents": true,
"removeAccessibilityService": false,
"removeOpenCv": false,
"unusedResources": false
Expand Down Expand Up @@ -75,10 +83,9 @@
"signingConfig": {
"alias": "qiao0314",
"keystore": "/storage/emulated/0/脚本/.keystore/桥2.jks",
"uuid": "3c963c5d-b8e8-40e3-ab74-404fbab8bc9f"
"uuid": "30e8349e-b7be-4217-a506-6072dedc75df"
},
"useFeatures": [],
"versionCode": 30,
"versionName": "1.1.4",
"update_content":"\n新增XiaoYueOCR,请在设置中切换\n新增OCR字形相似度计算(模糊匹配)\n-支持热更新\n-新增1440x3200分辨率坐标\n-内置mlkit-ocr插件包"

"versionName": "1.1.4"
}

0 comments on commit 9b5f3e8

Please sign in to comment.