Skip to content

Commit b687a4f

Browse files
Merge branch 'main' into intigrated-terminal
2 parents 2886f25 + f450c8b commit b687a4f

60 files changed

Lines changed: 1637 additions & 114 deletions

Some content is hidden

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

package-lock.json

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

package.json

Lines changed: 2 additions & 2 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,6 +37,7 @@
3837
},
3938
"cordova-plugin-websocket": {},
4039
"com.foxdebug.acode.rk.exec.terminal": {}
40+
"cordova-plugin-buildinfo": {}
4141
},
4242
"platforms": [
4343
"android"
@@ -68,7 +68,7 @@
6868
"cordova-clipboard": "^1.3.0",
6969
"cordova-plugin-advanced-http": "^3.3.1",
7070
"cordova-plugin-browser": "file:src/plugins/browser",
71-
"cordova-plugin-buildinfo": "^4.0.0",
71+
"cordova-plugin-buildinfo": "file:src/plugins/cordova-plugin-buildinfo",
7272
"cordova-plugin-device": "^2.0.3",
7373
"cordova-plugin-file": "^8.0.1",
7474
"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
};

0 commit comments

Comments
 (0)