cloudcmd 19.0.17 → 19.1.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 +9 -0
- package/HELP.md +2 -1
- package/README.md +1 -1
- package/bin/cloudcmd.mjs +1 -1
- package/common/try-to-promise-all.js +1 -1
- package/dist/cloudcmd.common.js +2 -2
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/cloudcmd.js +1 -1
- package/dist/cloudcmd.js.map +1 -1
- package/dist/modules/cloud.js +1 -1
- package/dist/modules/cloud.js.map +1 -1
- package/dist/modules/command-line.js +1 -1
- package/dist/modules/command-line.js.map +1 -1
- package/dist/modules/config.js +1 -1
- package/dist/modules/config.js.map +1 -1
- package/dist/modules/contact.js +1 -1
- package/dist/modules/contact.js.map +1 -1
- package/dist/modules/edit-file-vim.js +1 -1
- package/dist/modules/edit-file-vim.js.map +1 -1
- package/dist/modules/edit-file.js +1 -1
- package/dist/modules/edit-file.js.map +1 -1
- package/dist/modules/edit-names-vim.js +1 -1
- package/dist/modules/edit-names-vim.js.map +1 -1
- package/dist/modules/edit-names.js +1 -1
- package/dist/modules/edit-names.js.map +1 -1
- package/dist/modules/edit.js +1 -1
- package/dist/modules/edit.js.map +1 -1
- package/dist/modules/help.js +1 -1
- package/dist/modules/help.js.map +1 -1
- package/dist/modules/konsole.js +1 -1
- package/dist/modules/konsole.js.map +1 -1
- package/dist/modules/markdown.js +1 -1
- package/dist/modules/markdown.js.map +1 -1
- package/dist/modules/menu.js +1 -1
- package/dist/modules/menu.js.map +1 -1
- package/dist/modules/operation.js +1 -1
- package/dist/modules/operation.js.map +1 -1
- package/dist/modules/polyfill.js +1 -1
- package/dist/modules/polyfill.js.map +1 -1
- package/dist/modules/terminal-run.js +1 -1
- package/dist/modules/terminal-run.js.map +1 -1
- package/dist/modules/terminal.js +1 -1
- package/dist/modules/terminal.js.map +1 -1
- package/dist/modules/upload.js +1 -1
- package/dist/modules/upload.js.map +1 -1
- package/dist/modules/user-menu.js +1 -1
- package/dist/modules/user-menu.js.map +1 -1
- package/dist/modules/view.js +1 -1
- package/dist/modules/view.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist-dev/cloudcmd.common.js +57 -24
- package/dist-dev/sw.js +43 -3
- package/package.json +4 -4
- package/server/columns.mjs +3 -2
- package/server/config.js +2 -2
- package/server/route.mjs +1 -1
- package/server/server.mjs +1 -1
- package/server/terminal.js +1 -1
- package/server/theme.mjs +2 -3
- package/server/user-menu.mjs +1 -1
- package/server/validate.mjs +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
2025.12.31, v19.1.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 0ff16314 cloudcmd: redlint v5.0.0
|
|
5
|
+
- 43edba8c cloudcmd: try-to-catch v4.0.0
|
|
6
|
+
- 06f3b782 cloudcmd: try-catch v4.0.4
|
|
7
|
+
- dfcd6557 deno config: add
|
|
8
|
+
- ab20a462 server: bun support (oven-sh/bun#25674)
|
|
9
|
+
|
|
1
10
|
2025.12.24, v19.0.17
|
|
2
11
|
|
|
3
12
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.0
|
|
1
|
+
# Cloud Commander v19.1.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1111,6 +1111,7 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1111
1111
|
|
|
1112
1112
|
## Version history
|
|
1113
1113
|
|
|
1114
|
+
- *2025.12.31*, **[v19.1.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.0)**
|
|
1114
1115
|
- *2025.12.24*, **[v19.0.17](//github.com/coderaiser/cloudcmd/releases/tag/v19.0.17)**
|
|
1115
1116
|
- *2025.12.05*, **[v19.0.16](//github.com/coderaiser/cloudcmd/releases/tag/v19.0.16)**
|
|
1116
1117
|
- *2025.11.28*, **[v19.0.15](//github.com/coderaiser/cloudcmd/releases/tag/v19.0.15)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.0
|
|
1
|
+
# Cloud Commander v19.1.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/bin/cloudcmd.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import process from 'node:process';
|
|
4
4
|
import {createRequire} from 'node:module';
|
|
5
5
|
import {promisify} from 'node:util';
|
|
6
|
-
import tryToCatch from 'try-to-catch';
|
|
6
|
+
import {tryToCatch} from 'try-to-catch';
|
|
7
7
|
import {createSimport} from 'simport';
|
|
8
8
|
import parse from 'yargs-parser';
|
|
9
9
|
import exit from '../server/exit.js';
|