cloudcmd 19.1.20 → 19.2.0

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.
Files changed (52) hide show
  1. package/ChangeLog +26 -0
  2. package/HELP.md +3 -1
  3. package/README.md +1 -1
  4. package/common/cloudfunc.mjs +1 -1
  5. package/common/{entity.js → entity.mjs} +2 -5
  6. package/dist/cloudcmd.common.css +1 -1
  7. package/dist/cloudcmd.common.js +2 -2
  8. package/dist/cloudcmd.common.js.map +1 -1
  9. package/dist/modules/command-line.js +1 -1
  10. package/dist/modules/command-line.js.map +1 -1
  11. package/dist/modules/edit-file-vim.js +1 -1
  12. package/dist/modules/edit-file-vim.js.map +1 -1
  13. package/dist/modules/edit-file.js +1 -1
  14. package/dist/modules/edit-file.js.map +1 -1
  15. package/dist/modules/edit-names-vim.js +1 -1
  16. package/dist/modules/edit-names-vim.js.map +1 -1
  17. package/dist/modules/edit-names.js +1 -1
  18. package/dist/modules/edit-names.js.map +1 -1
  19. package/dist/modules/edit.js +1 -1
  20. package/dist/modules/edit.js.map +1 -1
  21. package/dist/modules/help.js +1 -1
  22. package/dist/modules/help.js.map +1 -1
  23. package/dist/modules/konsole.js +1 -1
  24. package/dist/modules/konsole.js.map +1 -1
  25. package/dist/modules/markdown.js +1 -1
  26. package/dist/modules/markdown.js.map +1 -1
  27. package/dist/modules/polyfill.js +1 -1
  28. package/dist/modules/polyfill.js.map +1 -1
  29. package/dist/modules/terminal.js +1 -1
  30. package/dist/modules/terminal.js.map +1 -1
  31. package/dist/modules/view.js +1 -1
  32. package/dist/modules/view.js.map +1 -1
  33. package/dist/sw.js +1 -1
  34. package/dist-dev/cloudcmd.common.css +112 -120
  35. package/dist-dev/cloudcmd.common.js +129 -150
  36. package/dist-dev/modules/command-line.js +1 -1
  37. package/dist-dev/modules/edit-file-vim.js +1 -1
  38. package/dist-dev/modules/edit-file.js +1 -1
  39. package/dist-dev/modules/edit-names-vim.js +1 -1
  40. package/dist-dev/modules/edit-names.js +1 -1
  41. package/dist-dev/modules/edit.js +1 -1
  42. package/dist-dev/modules/help.js +1 -1
  43. package/dist-dev/modules/konsole.js +1 -1
  44. package/dist-dev/modules/markdown.js +1 -1
  45. package/dist-dev/modules/polyfill.js +1 -1
  46. package/dist-dev/modules/terminal.js +1 -1
  47. package/dist-dev/modules/view.js +1 -1
  48. package/dist-dev/sw.js +1 -1
  49. package/package.json +9 -4
  50. package/server/cloudcmd.mjs +1 -1
  51. package/server/rest/index.mjs +1 -1
  52. package/server/route.mjs +1 -1
package/ChangeLog CHANGED
@@ -1,3 +1,29 @@
1
+ 2026.02.03, v19.2.0
2
+
3
+ feature:
4
+ - bb32f7c4 client: dom: migrate to ESM
5
+ - 457c83db client: migrate to ESM
6
+ - f8a941bd client: modules: markdown: migrate to ESM
7
+ - 9d6cffaf client: polifyll: migrate to ESM
8
+ - 5b704d06 client: edit-names: migrate to ESM
9
+ - 2c2ca8eb client: edit-file: migrate to ESM
10
+ - c9f57c5f client: modules: edit-file-vim: migrate to ESM
11
+ - 327ac9de client: modules: help: migrate to ESM
12
+ - dc34ee87 cloudcmd: @putout/plugin-cloudcmd v5.0.0
13
+ - 3cd3695b client: modules: edit-names-vim: migrate to ESM
14
+ - dfcbfd63 client: modules: terminal: migrate to ESM
15
+
16
+ 2026.02.02, v19.1.21
17
+
18
+ feature:
19
+ - e3ad330e client: konsole: migrate to ESM
20
+ - 983fd9af client: edit: migrate to ESM
21
+ - ebabad94 common: entity: migrate to ESM
22
+ - c3b71653 client: dom: images -> #images
23
+ - 8cad7514 common: cloudfunc -> #common/cloudfunc
24
+ - 1f174870 client: view: migrate to ESM
25
+ - 7173f6cb cloudcmd: smalltalk v5.0.0
26
+
1
27
  2026.01.31, v19.1.20
2
28
 
3
29
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.1.20
1
+ # Cloud Commander v19.2.0
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.03*, **[v19.2.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.2.0)**
1115
+ - *2026.02.02*, **[v19.1.21](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.21)**
1114
1116
  - *2026.01.31*, **[v19.1.20](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.20)**
1115
1117
  - *2026.01.30*, **[v19.1.19](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.19)**
1116
1118
  - *2026.01.30*, **[v19.1.18](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.18)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.1.20 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v19.2.0 [![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');