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 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.19
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.19 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
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
 
@@ -1,7 +1,7 @@
1
1
  import rendy from 'rendy';
2
2
  import currify from 'currify';
3
3
  import store from 'fullstore';
4
- import {encode} from './entity.js';
4
+ import {encode} from '#common/entity';
5
5
 
6
6
  export const getHeaderField = currify(_getHeaderField);
7
7
 
@@ -1,7 +1,4 @@
1
- 'use strict';
2
-
3
1
  const Entities = {
4
- // ' ': ' ',
5
2
  '&lt;': '<',
6
3
  '&gt;': '>',
7
4
  '&quot;': '"',
@@ -9,7 +6,7 @@ const Entities = {
9
6
 
10
7
  const keys = Object.keys(Entities);
11
8
 
12
- module.exports.encode = (str) => {
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
- module.exports.decode = (str) => {
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');