cloudcmd 19.4.1 → 19.5.1

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,14 @@
1
+ 2026.02.18, v19.5.1
2
+
3
+ feature:
4
+ - 6e1cf4ef cloudcmd: supermenu v5.0.0
5
+
6
+ 2026.02.18, v19.5.0
7
+
8
+ feature:
9
+ - b20539ef common: entity: encode {,}
10
+ - 7ef134f4 cloudcmd: rendy v5.0.0
11
+
1
12
  2026.02.18, v19.4.1
2
13
 
3
14
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.4.1
1
+ # Cloud Commander v19.5.1
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.18*, **[v19.5.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.5.1)**
1115
+ - *2026.02.18*, **[v19.5.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.5.0)**
1114
1116
  - *2026.02.18*, **[v19.4.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.4.1)**
1115
1117
  - *2026.02.18*, **[v19.4.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.4.0)**
1116
1118
  - *2026.02.15*, **[v19.3.9](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.9)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.4.1 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v19.5.1 [![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,4 +1,4 @@
1
- import rendy from 'rendy';
1
+ import {rendy} from 'rendy';
2
2
  import currify from 'currify';
3
3
  import store from 'fullstore';
4
4
  import {encode} from '#common/entity';
@@ -128,7 +128,6 @@ export const buildFromJSON = (params) => {
128
128
  const json = params.data;
129
129
 
130
130
  const path = encode(json.path);
131
-
132
131
  const {files} = json;
133
132
 
134
133
  /*
package/common/entity.js CHANGED
@@ -2,6 +2,8 @@ const Entities = {
2
2
  '&lt;': '<',
3
3
  '&gt;': '>',
4
4
  '&quot;': '"',
5
+ '&lcub;': '{',
6
+ '&rcub;': '}',
5
7
  };
6
8
 
7
9
  const keys = Object.keys(Entities);