cloudcmd 19.9.0 → 19.9.2

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.03.23, v19.9.2
2
+
3
+ feature:
4
+ - 09a02074 docker: io: git config: add
5
+ - c448eaa4 docker: io: buni
6
+
7
+ 2026.03.23, v19.9.1
8
+
9
+ fix:
10
+ - 6e5318fa client: modules: config: input: quote
11
+
1
12
  2026.03.23, v19.9.0
2
13
 
3
14
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.9.0
1
+ # Cloud Commander v19.9.2
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.23*, **[v19.9.2](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.2)**
1118
+ - *2026.03.23*, **[v19.9.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.1)**
1117
1119
  - *2026.03.23*, **[v19.9.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.0)**
1118
1120
  - *2026.03.23*, **[v19.8.15](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.15)**
1119
1121
  - *2026.03.23*, **[v19.8.14](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.14)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.9.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v19.9.2 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -10790,10 +10790,15 @@ var files = __webpack_require__(5907);
10790
10790
  var cloudfunc = __webpack_require__(2518);
10791
10791
  // EXTERNAL MODULE: ./client/dom/images.js
10792
10792
  var dom_images = __webpack_require__(9732);
10793
+ // EXTERNAL MODULE: ./common/entity.js
10794
+ var entity = __webpack_require__(634);
10793
10795
  ;// ./client/modules/config/input.js
10794
10796
 
10795
- const isType = currify((type, object, name) => type === typeof object[name]);
10796
- const isBool = isType('boolean');
10797
+ const isBool = a => typeof a === 'boolean';
10798
+ const isString = a => typeof a === 'string';
10799
+ const {
10800
+ keys
10801
+ } = Object;
10797
10802
  function getElementByName(selector, element) {
10798
10803
  const str = `[data-name="js-${selector}"]`;
10799
10804
  return element.querySelector(str);
@@ -10804,11 +10809,16 @@ const getName = element => {
10804
10809
  };
10805
10810
  const convert = config => {
10806
10811
  const result = config;
10807
- const array = Object.keys(config);
10808
- const filtered = array.filter(isBool(config));
10809
- for (const name of filtered) {
10812
+ for (const name of keys(config)) {
10810
10813
  const item = config[name];
10811
- result[name] = setState(item);
10814
+ if (isBool(item)) {
10815
+ result[name] = setState(item);
10816
+ continue;
10817
+ }
10818
+ if (isString(item)) {
10819
+ result[name] = (0,entity/* encode */.l)(item);
10820
+ continue;
10821
+ }
10812
10822
  }
10813
10823
  return result;
10814
10824
  };