cloudcmd 19.9.7 → 19.9.9
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 +14 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/dist/cloudcmd.common.js +1 -1
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +1 -1
- package/server/distribute/import.js +3 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2026.03.29, v19.9.9
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- f671f798 docker: io: PS1 environment variable in Dockerfile
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- cc7f9dc7 docker: io: use ubuntu
|
|
8
|
+
|
|
9
|
+
2026.03.28, v19.9.8
|
|
10
|
+
|
|
11
|
+
feature:
|
|
12
|
+
- 4d1cd8cd docker: io: ffmpeg
|
|
13
|
+
- 54b56fdc cloudcmd: vim: ESC: use only to enable, do not use to disable
|
|
14
|
+
|
|
1
15
|
2026.03.27, v19.9.7
|
|
2
16
|
|
|
3
17
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.9.
|
|
1
|
+
# Cloud Commander v19.9.9
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1114,6 +1114,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1114
1114
|
|
|
1115
1115
|
## Version history
|
|
1116
1116
|
|
|
1117
|
+
- *2026.03.29*, **[v19.9.9](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.9)**
|
|
1118
|
+
- *2026.03.28*, **[v19.9.8](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.8)**
|
|
1117
1119
|
- *2026.03.27*, **[v19.9.7](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.7)**
|
|
1118
1120
|
- *2026.03.26*, **[v19.9.6](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.6)**
|
|
1119
1121
|
- *2026.03.26*, **[v19.9.5](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.5)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.9.
|
|
1
|
+
# Cloud Commander v19.9.9 [![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
|
@@ -6562,7 +6562,7 @@ const toggleVim = (keyCode, overrides = {}) => {
|
|
|
6562
6562
|
_config,
|
|
6563
6563
|
config
|
|
6564
6564
|
} = overrides;
|
|
6565
|
-
if (keyCode === key.ESC) _config('vim',
|
|
6565
|
+
if (!config('vim') && keyCode === key.ESC) _config('vim', true);
|
|
6566
6566
|
};
|
|
6567
6567
|
const isUndefined = a => typeof a === 'undefined';
|
|
6568
6568
|
Chars([]);
|