cloudcmd 19.13.1 → 19.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +15 -0
- package/HELP.md +5 -1
- package/README.md +1 -1
- package/dist/cloudcmd.common.js +20 -7
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +3 -3
- package/dist-dev/sw.js +1 -1
- package/package.json +2 -2
- package/server/cloudcmd.js +2 -2
- package/server/config.js +1 -1
- package/server/markdown/index.js +2 -2
- package/server/rest/index.js +1 -1
- package/server/route.js +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
2026.04.28, v19.15.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 9d97343b cloudcmd: operation: rm useless checks
|
|
5
|
+
- 46a88cfa cloudcmd: client: key: vim: cc, mm
|
|
6
|
+
|
|
7
|
+
2026.04.28, v19.14.0
|
|
8
|
+
|
|
9
|
+
feature:
|
|
10
|
+
- 36a8b641 cloudcmd: ponse v8.0.0
|
|
11
|
+
- 1c263c18 docker: io: /usr/src/cloudcmd -> /usr/local/share/cloudcmd
|
|
12
|
+
- ea7b828c docker: io: ubuntu: resolute
|
|
13
|
+
- cd6c11ac docker: io: far2l
|
|
14
|
+
- c4beeec6 docker: io: gdu: add
|
|
15
|
+
|
|
1
16
|
2026.04.21, v19.13.1
|
|
2
17
|
|
|
3
18
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.15.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -232,6 +232,8 @@ When the `--vim` option is provided, or the configuration parameter `vim` is set
|
|
|
232
232
|
| `mf` | make file
|
|
233
233
|
| `tt` | show terminal
|
|
234
234
|
| `e` | edit file
|
|
235
|
+
| `cc` | copy
|
|
236
|
+
| `mm` | move
|
|
235
237
|
|
|
236
238
|
Commands can be joined, for example:
|
|
237
239
|
|
|
@@ -1115,6 +1117,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1115
1117
|
|
|
1116
1118
|
## Version history
|
|
1117
1119
|
|
|
1120
|
+
- *2026.04.28*, **[v19.15.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.15.0)**
|
|
1121
|
+
- *2026.04.28*, **[v19.14.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.14.0)**
|
|
1118
1122
|
- *2026.04.21*, **[v19.13.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.13.1)**
|
|
1119
1123
|
- *2026.04.15*, **[v19.13.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.13.0)**
|
|
1120
1124
|
- *2026.04.12*, **[v19.12.5](//github.com/coderaiser/cloudcmd/releases/tag/v19.12.5)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.15.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
package/dist/cloudcmd.common.js
CHANGED
|
@@ -6143,7 +6143,9 @@ const noop = () => {};
|
|
|
6143
6143
|
makeFile = noop,
|
|
6144
6144
|
makeDirectory = noop,
|
|
6145
6145
|
terminal = noop,
|
|
6146
|
-
edit = noop
|
|
6146
|
+
edit = noop,
|
|
6147
|
+
operationCopy = noop,
|
|
6148
|
+
operationMove = noop
|
|
6147
6149
|
} = operations;
|
|
6148
6150
|
if (key === 'Enter') return end();
|
|
6149
6151
|
if (key === 'Escape') {
|
|
@@ -6201,6 +6203,14 @@ const noop = () => {};
|
|
|
6201
6203
|
edit();
|
|
6202
6204
|
return end();
|
|
6203
6205
|
}
|
|
6206
|
+
if (value === 'cc') {
|
|
6207
|
+
operationCopy();
|
|
6208
|
+
return end();
|
|
6209
|
+
}
|
|
6210
|
+
if (value === 'mm') {
|
|
6211
|
+
operationMove();
|
|
6212
|
+
return end();
|
|
6213
|
+
}
|
|
6204
6214
|
if (value === 'mf') {
|
|
6205
6215
|
makeFile();
|
|
6206
6216
|
return end();
|
|
@@ -6359,6 +6369,14 @@ const getOperations = (event, deps) => {
|
|
|
6359
6369
|
remove: () => {
|
|
6360
6370
|
Operation.show('delete');
|
|
6361
6371
|
},
|
|
6372
|
+
operationCopy: () => {
|
|
6373
|
+
event.preventDefault();
|
|
6374
|
+
Operation.show('copy');
|
|
6375
|
+
},
|
|
6376
|
+
operationMove: () => {
|
|
6377
|
+
event.preventDefault();
|
|
6378
|
+
Operation.show('move');
|
|
6379
|
+
},
|
|
6362
6380
|
makeDirectory: () => {
|
|
6363
6381
|
event.stopImmediatePropagation();
|
|
6364
6382
|
event.preventDefault();
|
|
@@ -12337,14 +12355,12 @@ const setListeners = options => emitter => {
|
|
|
12337
12355
|
to
|
|
12338
12356
|
} = options;
|
|
12339
12357
|
let done;
|
|
12340
|
-
let lastError;
|
|
12341
12358
|
const onAbort = wraptile(({
|
|
12342
12359
|
emitter,
|
|
12343
12360
|
operation
|
|
12344
12361
|
}) => {
|
|
12345
12362
|
emitter.abort();
|
|
12346
12363
|
const msg = `${operation} aborted`;
|
|
12347
|
-
lastError = true;
|
|
12348
12364
|
Dialog.alert(msg, {
|
|
12349
12365
|
cancel: false
|
|
12350
12366
|
});
|
|
@@ -12357,21 +12373,18 @@ const setListeners = options => emitter => {
|
|
|
12357
12373
|
emitter,
|
|
12358
12374
|
operation
|
|
12359
12375
|
}));
|
|
12360
|
-
let noProgress = true;
|
|
12361
12376
|
const listeners = {
|
|
12362
12377
|
progress: value => {
|
|
12363
12378
|
done = value === 100;
|
|
12364
12379
|
progress.setProgress(value);
|
|
12365
|
-
noProgress = false;
|
|
12366
12380
|
},
|
|
12367
12381
|
end: () => {
|
|
12368
12382
|
Images.hide();
|
|
12369
12383
|
for_each_key(removeListener, listeners);
|
|
12370
12384
|
progress.remove();
|
|
12371
|
-
|
|
12385
|
+
callback();
|
|
12372
12386
|
},
|
|
12373
12387
|
error: async error => {
|
|
12374
|
-
lastError = error;
|
|
12375
12388
|
if (noContinue) {
|
|
12376
12389
|
listeners.end(error);
|
|
12377
12390
|
Dialog.alert(error);
|