cloudcmd 19.1.19 → 19.1.21
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 +18 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/common/cloudfunc.mjs +1 -1
- package/common/{entity.js → entity.mjs} +2 -5
- package/dist/cloudcmd.common.css +1 -1
- package/dist/cloudcmd.common.js +2 -2
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/modules/command-line.js +1 -1
- package/dist/modules/command-line.js.map +1 -1
- package/dist/modules/edit.js +1 -1
- package/dist/modules/edit.js.map +1 -1
- package/dist/modules/konsole.js +1 -1
- package/dist/modules/konsole.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-dev/cloudcmd.common.css +112 -120
- package/dist-dev/cloudcmd.common.js +73 -83
- package/dist-dev/modules/command-line.js +1 -1
- package/dist-dev/modules/edit.js +1 -1
- package/dist-dev/modules/konsole.js +1 -1
- package/dist-dev/modules/view.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +9 -5
- package/rules/split-autoglobals-with-tape.mjs +8 -0
- package/server/cloudcmd.mjs +1 -1
- package/server/rest/index.mjs +1 -1
- package/server/route.mjs +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
2026.02.02, v19.1.21
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- e3ad330e client: konsole: migrate to ESM
|
|
5
|
+
- 983fd9af client: edit: migrate to ESM
|
|
6
|
+
- ebabad94 common: entity: migrate to ESM
|
|
7
|
+
- c3b71653 client: dom: images -> #images
|
|
8
|
+
- 8cad7514 common: cloudfunc -> #common/cloudfunc
|
|
9
|
+
- 1f174870 client: view: migrate to ESM
|
|
10
|
+
- 7173f6cb cloudcmd: smalltalk v5.0.0
|
|
11
|
+
|
|
12
|
+
2026.01.31, v19.1.20
|
|
13
|
+
|
|
14
|
+
feature:
|
|
15
|
+
- c1014c9c client: dom: operations: rename-current: migrate to ESM
|
|
16
|
+
- 2e486f8b cloudcmd: restafary v13.0.0
|
|
17
|
+
- 6addb29f cloudcmd: redzip v4.0.0
|
|
18
|
+
|
|
1
19
|
2026.01.30, v19.1.19
|
|
2
20
|
|
|
3
21
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.1.
|
|
1
|
+
# Cloud Commander v19.1.21
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1111,6 +1111,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1111
1111
|
|
|
1112
1112
|
## Version history
|
|
1113
1113
|
|
|
1114
|
+
- *2026.02.02*, **[v19.1.21](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.21)**
|
|
1115
|
+
- *2026.01.31*, **[v19.1.20](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.20)**
|
|
1114
1116
|
- *2026.01.30*, **[v19.1.19](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.19)**
|
|
1115
1117
|
- *2026.01.30*, **[v19.1.18](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.18)**
|
|
1116
1118
|
- *2026.01.29*, **[v19.1.17](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.17)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.1.
|
|
1
|
+
# Cloud Commander v19.1.21 [![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/common/cloudfunc.mjs
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
1
|
const Entities = {
|
|
4
|
-
// ' ': ' ',
|
|
5
2
|
'<': '<',
|
|
6
3
|
'>': '>',
|
|
7
4
|
'"': '"',
|
|
@@ -9,7 +6,7 @@ const Entities = {
|
|
|
9
6
|
|
|
10
7
|
const keys = Object.keys(Entities);
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
export const encode = (str) => {
|
|
13
10
|
for (const code of keys) {
|
|
14
11
|
const char = Entities[code];
|
|
15
12
|
const reg = RegExp(char, 'g');
|
|
@@ -20,7 +17,7 @@ module.exports.encode = (str) => {
|
|
|
20
17
|
return str;
|
|
21
18
|
};
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
export const decode = (str) => {
|
|
24
21
|
for (const code of keys) {
|
|
25
22
|
const char = Entities[code];
|
|
26
23
|
const reg = RegExp(code, 'g');
|