cloudcmd 19.15.0 → 19.17.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 +31 -0
- package/HELP.md +26 -22
- package/README.md +1 -1
- package/dist/cloudcmd.common.css +1 -1
- package/dist/cloudcmd.common.css.map +1 -1
- package/dist/cloudcmd.common.js +14 -6
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.css +5 -3
- package/dist-dev/cloudcmd.common.js +2 -2
- package/dist-dev/sw.js +1 -1
- package/man/cloudcmd.1 +1 -1
- package/package.json +6 -5
- package/server/cloudcmd.js +15 -0
- package/server/validate.js +2 -2
- package/tmpl/config.hbs +2 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
2026.05.17, v19.17.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- d96f6c46 css: query: hide time on mobile
|
|
5
|
+
- e7c55e05 docker: io: XDG_CONFIG_HOME
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- ae1ca0f8 cloudcmd: cssnano-preset-default v8.0.1
|
|
9
|
+
- 94d5096a style: owner, mode: improve
|
|
10
|
+
- 807f8346 cloudcmd: superc8 v12.6.0
|
|
11
|
+
- 67a95722 docker: io: cline: add
|
|
12
|
+
- 68eacb91 qword: add
|
|
13
|
+
- 4acd294b docker: io: tmux
|
|
14
|
+
- 05c80043 cloudcmd: @supertape/loader-css v1.0.0
|
|
15
|
+
- 800a6545 cloudcmd: eslint-plugin-n v18.0.1
|
|
16
|
+
- a985bb36 cloudcmd: supertape v13.0.0
|
|
17
|
+
- 4315ec61 docker: io XDG_CONFIG_HOME: /etc -> /usr/local/etc
|
|
18
|
+
|
|
19
|
+
2026.05.03, v19.16.0
|
|
20
|
+
|
|
21
|
+
feature:
|
|
22
|
+
- d82d0335 client: vim: rr for rename file
|
|
23
|
+
- acfa27cf docker: io: nvchad: add
|
|
24
|
+
- 14f009f8 docker: io: bash-completion: add
|
|
25
|
+
- c6c60146 docker: io: f4
|
|
26
|
+
- 9a6b8935 docker: io: GOPATH
|
|
27
|
+
- a9bc22ce cloudcmd: operation: rm useless checks
|
|
28
|
+
- 36bacfe9 cloudcmd: client: key: vim: cc, mm
|
|
29
|
+
- 591da25c cloudcmd: ponse v8.0.0
|
|
30
|
+
- 1e1b073c docker: io: /usr/src/cloudcmd -> /usr/local/share/cloudcmd
|
|
31
|
+
|
|
1
32
|
2026.04.28, v19.15.0
|
|
2
33
|
|
|
3
34
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.17.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
[DWORD]: https://github.com/cloudcmd/dword "Editor based on CodeMirror"
|
|
10
10
|
[EDWARD]: https://github.com/cloudcmd/edward "Editor based on Ace"
|
|
11
11
|
[DEEPWORD]: https://github.com/cloudcmd/deepword "Editor based on Monaco"
|
|
12
|
+
[QWORD]: https://github.com/cloudcmd/qword "Editor based on CodeMirror 6"
|
|
12
13
|
[EDWARD_KEYS]: https://github.com/cloudcmd/edward/#hot-keys "Edward Hot keys"
|
|
13
14
|
[TERMUX]: https://termux.com "Termux"
|
|
14
15
|
[INLY]: https://github.com/coderaiser/node-inly "Extract archive"
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
- Server works on **Windows**, **Linux**, **Mac OS** and **Android** (with help of [Termux][TERMUX]).
|
|
27
28
|
- Can be used local or remotely.
|
|
28
29
|
- Adapts to screen size.
|
|
29
|
-
- **3 built-in editors** with support of **syntax highlighting**: [Dword][DWORD], [Edward][EDWARD]
|
|
30
|
+
- **3 built-in editors** with support of **syntax highlighting**: [Dword][DWORD], [Edward][EDWARD] [Deepword][DEEPWORD] and [Qword][QWORD].
|
|
30
31
|
- [Console](https://github.com/cloudcmd/console "Console") with support of the default OS command line.
|
|
31
32
|
- Written in **JavaScript/Node.js**.
|
|
32
33
|
- Built-in archives pack: **zip** and **tar.gz**.
|
|
@@ -214,26 +215,27 @@ Then, start the server again with `cloudcmd` and reload the page.
|
|
|
214
215
|
|
|
215
216
|
When the `--vim` option is provided, or the configuration parameter `vim` is set, the following hotkeys become available:
|
|
216
217
|
|
|
217
|
-
|Key
|
|
218
|
-
|
|
219
|
-
| `j`
|
|
220
|
-
| `k`
|
|
221
|
-
| `dd`
|
|
222
|
-
| `G` or `$`
|
|
223
|
-
| `gg` or `^`
|
|
224
|
-
| `v`
|
|
225
|
-
| `y`
|
|
226
|
-
| `p`
|
|
227
|
-
| `Esc`
|
|
228
|
-
| `/`
|
|
229
|
-
| `n`
|
|
230
|
-
| `N`
|
|
231
|
-
| `md`
|
|
232
|
-
| `mf`
|
|
233
|
-
| `tt`
|
|
234
|
-
| `e`
|
|
235
|
-
| `cc`
|
|
236
|
-
| `mm`
|
|
218
|
+
| Key |Operation
|
|
219
|
+
|:------------|:--------------------------------------------
|
|
220
|
+
| `j` | navigate to next file
|
|
221
|
+
| `k` | navigate to previous file
|
|
222
|
+
| `dd` | remove current file
|
|
223
|
+
| `G` or `$` | navigate to bottom file
|
|
224
|
+
| `gg` or `^` | navigate to top file
|
|
225
|
+
| `v` | visual mode
|
|
226
|
+
| `y` | copy (selected in visual mode files)
|
|
227
|
+
| `p` | paste files
|
|
228
|
+
| `Esc` | unselect all
|
|
229
|
+
| `/` | find file in current directory
|
|
230
|
+
| `n` | navigate to next found file
|
|
231
|
+
| `N` | navigate to previous found file
|
|
232
|
+
| `md` | make directory
|
|
233
|
+
| `mf` | make file
|
|
234
|
+
| `tt` | show terminal
|
|
235
|
+
| `e` | edit file
|
|
236
|
+
| `cc` | copy
|
|
237
|
+
| `mm` | move
|
|
238
|
+
| `rr` | rename file
|
|
237
239
|
|
|
238
240
|
Commands can be joined, for example:
|
|
239
241
|
|
|
@@ -1117,6 +1119,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1117
1119
|
|
|
1118
1120
|
## Version history
|
|
1119
1121
|
|
|
1122
|
+
- *2026.05.17*, **[v19.17.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.17.0)**
|
|
1123
|
+
- *2026.05.03*, **[v19.16.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.16.0)**
|
|
1120
1124
|
- *2026.04.28*, **[v19.15.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.15.0)**
|
|
1121
1125
|
- *2026.04.28*, **[v19.14.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.14.0)**
|
|
1122
1126
|
- *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.
|
|
1
|
+
# Cloud Commander v19.17.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
|
|