Skip to content

Commit 0ec7f37

Browse files
authored
Merge branch 'main' into ai-agent
2 parents 40da706 + f450c8b commit 0ec7f37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1640
-80
lines changed

package-lock.json

Lines changed: 236 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"cordova": {
2424
"plugins": {
2525
"cordova-clipboard": {},
26-
"cordova-plugin-buildinfo": {},
2726
"cordova-plugin-device": {},
2827
"cordova-plugin-file": {},
2928
"cordova-plugin-sftp": {},
@@ -38,7 +37,8 @@
3837
},
3938
"cordova-sqlite-storage": {},
4039
"cordova-plugin-websocket": {},
41-
"com.foxdebug.acode.exec": {}
40+
"com.foxdebug.acode.exec": {},
41+
"cordova-plugin-buildinfo": {}
4242
},
4343
"platforms": [
4444
"android"
@@ -69,7 +69,7 @@
6969
"cordova-clipboard": "^1.3.0",
7070
"cordova-plugin-advanced-http": "^3.3.1",
7171
"cordova-plugin-browser": "file:src/plugins/browser",
72-
"cordova-plugin-buildinfo": "^4.0.0",
72+
"cordova-plugin-buildinfo": "file:src/plugins/cordova-plugin-buildinfo",
7373
"cordova-plugin-device": "^2.0.3",
7474
"cordova-plugin-file": "^8.0.1",
7575
"cordova-plugin-ftp": "file:src/plugins/ftp",

src/dialogs/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function select(title, items, options = {}) {
144144
target = target.parentElement;
145145
}
146146

147-
if (!itemOptions.value) return;
147+
if (itemOptions.value === undefined) return;
148148
if (hideOnSelect) hide();
149149
res(itemOptions.value);
150150
};

src/lang/ar-ye.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,5 +403,10 @@
403403
"quicktools:hash": "Insert Hash symbol",
404404
"quicktools:dollar": "Insert dollar symbol",
405405
"quicktools:modulo": "Insert modulo/percent symbol",
406-
"quicktools:caret": "Insert caret symbol"
406+
"quicktools:caret": "Insert caret symbol",
407+
"plugin_enabled": "تم تفعيل الإضافة",
408+
"plugin_disabled": "تم تعطيل الإضافة",
409+
"enable_plugin": "تفعيل هذه الإضافة",
410+
"disable_plugin": "تعطيل هذه الإضافة",
411+
"open_source": "Open Source"
407412
}

src/lang/be-by.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,5 +404,10 @@
404404
"quicktools:hash": "Insert Hash symbol",
405405
"quicktools:dollar": "Insert dollar symbol",
406406
"quicktools:modulo": "Insert modulo/percent symbol",
407-
"quicktools:caret": "Insert caret symbol"
407+
"quicktools:caret": "Insert caret symbol",
408+
"plugin_enabled": "Plugin enabled",
409+
"plugin_disabled": "Plugin disabled",
410+
"enable_plugin": "Enable this Plugin",
411+
"disable_plugin": "Disable this Plugin",
412+
"open_source": "Open Source"
408413
}

src/lang/bn-bd.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,5 +403,10 @@
403403
"quicktools:hash": "Insert Hash symbol",
404404
"quicktools:dollar": "Insert dollar symbol",
405405
"quicktools:modulo": "Insert modulo/percent symbol",
406-
"quicktools:caret": "Insert caret symbol"
406+
"quicktools:caret": "Insert caret symbol",
407+
"plugin_enabled": "Plugin enabled",
408+
"plugin_disabled": "Plugin disabled",
409+
"enable_plugin": "Enable this Plugin",
410+
"disable_plugin": "Disable this Plugin",
411+
"open_source": "Open Source"
407412
}

0 commit comments

Comments
 (0)