cloudcmd 19.3.9 → 19.4.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.
- package/ChangeLog +11 -0
- package/HELP.md +2 -1
- package/README.md +1 -1
- package/dist/cloudcmd.common.js +4 -1
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +5 -5
package/ChangeLog
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
2026.02.18, v19.4.0
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 45cf9baf menu: prefix (#456)
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 3e647290 cloudcmd: redlint v6.0.0
|
|
8
|
+
- 800ed012 cloudcmd: putout v42.0.5
|
|
9
|
+
- 525c17d4 cloudcmd: madrun v13.0.0
|
|
10
|
+
- 44247499 cloudcmd: eslint-plugin-putout v31.0.0
|
|
11
|
+
|
|
1
12
|
2026.02.15, v19.3.9
|
|
2
13
|
|
|
3
14
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.4.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1111,6 +1111,7 @@ 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.4.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.4.0)**
|
|
1114
1115
|
- *2026.02.15*, **[v19.3.9](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.9)**
|
|
1115
1116
|
- *2026.02.15*, **[v19.3.8](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.8)**
|
|
1116
1117
|
- *2026.02.13*, **[v19.3.7](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.7)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.4.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
|
|
package/dist/cloudcmd.common.js
CHANGED
|
@@ -12365,11 +12365,14 @@ const createCloudMenu = async (fm, options, menuData) => {
|
|
|
12365
12365
|
};
|
|
12366
12366
|
async function loadMenu() {
|
|
12367
12367
|
if (CloudCmd.config('menu') === 'aleman') {
|
|
12368
|
+
const {
|
|
12369
|
+
prefix
|
|
12370
|
+
} = CloudCmd;
|
|
12368
12371
|
const {
|
|
12369
12372
|
host,
|
|
12370
12373
|
protocol
|
|
12371
12374
|
} = globalThis.location;
|
|
12372
|
-
const url = `${protocol}//${host}/node_modules/aleman/menu/menu.js`;
|
|
12375
|
+
const url = `${protocol}//${host}${prefix}/node_modules/aleman/menu/menu.js`;
|
|
12373
12376
|
const {
|
|
12374
12377
|
createMenu
|
|
12375
12378
|
} = await import(/* webpackIgnore: true */url);
|