cloudcmd 19.15.0 → 19.16.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 CHANGED
@@ -1,3 +1,16 @@
1
+ 2026.05.03, v19.16.0
2
+
3
+ feature:
4
+ - d82d0335 client: vim: rr for rename file
5
+ - acfa27cf docker: io: nvchad: add
6
+ - 14f009f8 docker: io: bash-completion: add
7
+ - c6c60146 docker: io: f4
8
+ - 9a6b8935 docker: io: GOPATH
9
+ - a9bc22ce cloudcmd: operation: rm useless checks
10
+ - 36bacfe9 cloudcmd: client: key: vim: cc, mm
11
+ - 591da25c cloudcmd: ponse v8.0.0
12
+ - 1e1b073c docker: io: /usr/src/cloudcmd -> /usr/local/share/cloudcmd
13
+
1
14
  2026.04.28, v19.15.0
2
15
 
3
16
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.15.0
1
+ # Cloud Commander v19.16.0
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -214,26 +214,27 @@ Then, start the server again with `cloudcmd` and reload the page.
214
214
 
215
215
  When the `--vim` option is provided, or the configuration parameter `vim` is set, the following hotkeys become available:
216
216
 
217
- |Key |Operation
218
- |:----------------------|:--------------------------------------------
219
- | `j` | navigate to next file
220
- | `k` | navigate to previous file
221
- | `dd` | remove current file
222
- | `G` or `$` | navigate to bottom file
223
- | `gg` or `^` | navigate to top file
224
- | `v` | visual mode
225
- | `y` | copy (selected in visual mode files)
226
- | `p` | paste files
227
- | `Esc` | unselect all
228
- | `/` | find file in current directory
229
- | `n` | navigate to next found file
230
- | `N` | navigate to previous found file
231
- | `md` | make directory
232
- | `mf` | make file
233
- | `tt` | show terminal
234
- | `e` | edit file
235
- | `cc` | copy
236
- | `mm` | move
217
+ | Key |Operation
218
+ |:------------|:--------------------------------------------
219
+ | `j` | navigate to next file
220
+ | `k` | navigate to previous file
221
+ | `dd` | remove current file
222
+ | `G` or `$` | navigate to bottom file
223
+ | `gg` or `^` | navigate to top file
224
+ | `v` | visual mode
225
+ | `y` | copy (selected in visual mode files)
226
+ | `p` | paste files
227
+ | `Esc` | unselect all
228
+ | `/` | find file in current directory
229
+ | `n` | navigate to next found file
230
+ | `N` | navigate to previous found file
231
+ | `md` | make directory
232
+ | `mf` | make file
233
+ | `tt` | show terminal
234
+ | `e` | edit file
235
+ | `cc` | copy
236
+ | `mm` | move
237
+ | `rr` | rename file
237
238
 
238
239
  Commands can be joined, for example:
239
240
 
@@ -1117,6 +1118,7 @@ There are a lot of ways to be involved in `Cloud Commander` development:
1117
1118
 
1118
1119
  ## Version history
1119
1120
 
1121
+ - *2026.05.03*, **[v19.16.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.16.0)**
1120
1122
  - *2026.04.28*, **[v19.15.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.15.0)**
1121
1123
  - *2026.04.28*, **[v19.14.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.14.0)**
1122
1124
  - *2026.04.21*, **[v19.13.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.13.1)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.15.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v19.16.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
 
@@ -6145,7 +6145,8 @@ const noop = () => {};
6145
6145
  terminal = noop,
6146
6146
  edit = noop,
6147
6147
  operationCopy = noop,
6148
- operationMove = noop
6148
+ operationMove = noop,
6149
+ rename = noop
6149
6150
  } = operations;
6150
6151
  if (key === 'Enter') return end();
6151
6152
  if (key === 'Escape') {
@@ -6215,6 +6216,10 @@ const noop = () => {};
6215
6216
  makeFile();
6216
6217
  return end();
6217
6218
  }
6219
+ if (value === 'rr') {
6220
+ rename();
6221
+ return end();
6222
+ }
6218
6223
  if (key === 'd' && (visual() || prevStore === 'd')) {
6219
6224
  stopVisual();
6220
6225
  remove();
@@ -6315,8 +6320,6 @@ function previous(index, length) {
6315
6320
  var set_current = __webpack_require__(5076);
6316
6321
  ;// ./client/key/vim/index.js
6317
6322
  /* unused harmony import specifier */ var selectFileNotParent;
6318
- /* global CloudCmd */
6319
- /* global DOM */
6320
6323
 
6321
6324
 
6322
6325
 
@@ -6346,12 +6349,13 @@ const getOperations = (event, deps) => {
6346
6349
  prompt = globalThis.DOM.Dialog.prompt,
6347
6350
  preventDefault = event === null || event === void 0 || (_event$preventDefault = event.preventDefault) === null || _event$preventDefault === void 0 ? void 0 : _event$preventDefault.bind(event),
6348
6351
  stopImmediatePropagation = event === null || event === void 0 || (_event$preventDefault2 = event.preventDefault) === null || _event$preventDefault2 === void 0 ? void 0 : _event$preventDefault2.bind(event),
6349
- promptNewFile = DOM.promptNewFile,
6352
+ promptNewFile = globalThis.DOM.promptNewFile,
6350
6353
  toggleSelectedFile,
6351
6354
  Buffer = {},
6352
6355
  createFindNext = _createFindNext,
6353
6356
  createFindPrevious = _createFindPrevious,
6354
- createMakeFile = _createMakeFile
6357
+ createMakeFile = _createMakeFile,
6358
+ renameCurrent
6355
6359
  } = deps;
6356
6360
  return {
6357
6361
  makeFile: createMakeFile({
@@ -6366,6 +6370,10 @@ const getOperations = (event, deps) => {
6366
6370
  setCurrentByName
6367
6371
  }),
6368
6372
  escape: unselectFiles,
6373
+ rename: () => {
6374
+ event.preventDefault();
6375
+ renameCurrent();
6376
+ },
6369
6377
  remove: () => {
6370
6378
  Operation.show('delete');
6371
6379
  },
@@ -6380,7 +6388,7 @@ const getOperations = (event, deps) => {
6380
6388
  makeDirectory: () => {
6381
6389
  event.stopImmediatePropagation();
6382
6390
  event.preventDefault();
6383
- DOM.promptNewDir();
6391
+ globalThis.DOM.promptNewDir();
6384
6392
  },
6385
6393
  terminal: () => {
6386
6394
  CloudCmd.Terminal.show();