cloudcmd 19.6.9 → 19.7.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 +5 -0
- package/HELP.md +2 -1
- package/README.md +1 -1
- package/common/cloudfunc.js +10 -5
- package/dist/cloudcmd.common.js +13 -7
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +2 -2
- package/dist-dev/sw.js +1 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.7.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.03.17*, **[v19.7.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.7.0)**
|
|
1114
1115
|
- *2026.03.17*, **[v19.6.9](//github.com/coderaiser/cloudcmd/releases/tag/v19.6.9)**
|
|
1115
1116
|
- *2026.02.27*, **[v19.6.8](//github.com/coderaiser/cloudcmd/releases/tag/v19.6.8)**
|
|
1116
1117
|
- *2026.02.26*, **[v19.6.7](//github.com/coderaiser/cloudcmd/releases/tag/v19.6.7)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.7.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/common/cloudfunc.js
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import {rendy} from 'rendy';
|
|
2
2
|
import currify from 'currify';
|
|
3
|
-
import
|
|
3
|
+
import {fullstore} from 'fullstore';
|
|
4
4
|
import {encode} from '#common/entity';
|
|
5
5
|
|
|
6
|
+
const id = (a) => a;
|
|
7
|
+
|
|
8
|
+
export const dateFormatter = fullstore(id);
|
|
9
|
+
|
|
6
10
|
export const getHeaderField = currify(_getHeaderField);
|
|
7
11
|
|
|
8
|
-
/* КОНСТАНТЫ (общие для клиента и сервера)*/
|
|
9
|
-
/* название программы */
|
|
10
12
|
const NAME = 'Cloud Commander';
|
|
11
13
|
|
|
12
14
|
export const FS = '/fs';
|
|
13
15
|
|
|
14
|
-
const Path =
|
|
16
|
+
const Path = fullstore();
|
|
15
17
|
|
|
16
18
|
Path('/');
|
|
17
19
|
|
|
@@ -123,6 +125,8 @@ export const buildFromJSON = (params) => {
|
|
|
123
125
|
showDotFiles,
|
|
124
126
|
} = params;
|
|
125
127
|
|
|
128
|
+
const formatDate = dateFormatter();
|
|
129
|
+
|
|
126
130
|
const templateFile = template.file;
|
|
127
131
|
const templateLink = template.link;
|
|
128
132
|
const json = params.data;
|
|
@@ -230,7 +234,7 @@ export const buildFromJSON = (params) => {
|
|
|
230
234
|
type,
|
|
231
235
|
name: linkResult,
|
|
232
236
|
size,
|
|
233
|
-
date,
|
|
237
|
+
date: formatDate(date),
|
|
234
238
|
owner,
|
|
235
239
|
mode,
|
|
236
240
|
});
|
|
@@ -290,3 +294,4 @@ export function getDotDot(path) {
|
|
|
290
294
|
|
|
291
295
|
return dotDot;
|
|
292
296
|
}
|
|
297
|
+
|
package/dist/cloudcmd.common.js
CHANGED
|
@@ -13222,7 +13222,6 @@ const runSelected = async (selectedItems, items, runUserMenu) => {
|
|
|
13222
13222
|
}
|
|
13223
13223
|
};
|
|
13224
13224
|
;// ./client/modules/user-menu/index.js
|
|
13225
|
-
/* global CloudCmd, DOM */
|
|
13226
13225
|
|
|
13227
13226
|
|
|
13228
13227
|
|
|
@@ -13241,6 +13240,11 @@ const runSelected = async (selectedItems, items, runUserMenu) => {
|
|
|
13241
13240
|
|
|
13242
13241
|
const loadCSS = load.css;
|
|
13243
13242
|
const sourceStore = (0,fullstore/* fullstore */.p)();
|
|
13243
|
+
const {
|
|
13244
|
+
CloudCmd,
|
|
13245
|
+
DOM,
|
|
13246
|
+
CloudFunc
|
|
13247
|
+
} = globalThis;
|
|
13244
13248
|
const Name = 'UserMenu';
|
|
13245
13249
|
CloudCmd[Name] = {
|
|
13246
13250
|
init,
|
|
@@ -13341,6 +13345,7 @@ const runUserMenu = async fn => {
|
|
|
13341
13345
|
const [error] = await (0,try_to_catch/* tryToCatch */.Y)(fn, {
|
|
13342
13346
|
DOM,
|
|
13343
13347
|
CloudCmd,
|
|
13348
|
+
CloudFunc,
|
|
13344
13349
|
tryToCatch: try_to_catch/* tryToCatch */.Y
|
|
13345
13350
|
});
|
|
13346
13351
|
if (!error) return;
|
|
@@ -14036,6 +14041,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14036
14041
|
/* harmony export */ _getSize: () => (/* binding */ _getSize),
|
|
14037
14042
|
/* harmony export */ apiURL: () => (/* binding */ apiURL),
|
|
14038
14043
|
/* harmony export */ buildFromJSON: () => (/* binding */ buildFromJSON),
|
|
14044
|
+
/* harmony export */ dateFormatter: () => (/* binding */ dateFormatter),
|
|
14039
14045
|
/* harmony export */ formatMsg: () => (/* binding */ formatMsg),
|
|
14040
14046
|
/* harmony export */ getDotDot: () => (/* binding */ getDotDot),
|
|
14041
14047
|
/* harmony export */ getHeaderField: () => (/* binding */ getHeaderField),
|
|
@@ -14052,13 +14058,12 @@ if (858 == __webpack_require__.j) {
|
|
|
14052
14058
|
|
|
14053
14059
|
|
|
14054
14060
|
|
|
14061
|
+
const id = a => a;
|
|
14062
|
+
const dateFormatter = (0,fullstore__WEBPACK_IMPORTED_MODULE_2__/* .fullstore */ .p)(id);
|
|
14055
14063
|
const getHeaderField = currify__WEBPACK_IMPORTED_MODULE_1__(_getHeaderField);
|
|
14056
|
-
|
|
14057
|
-
/* КОНСТАНТЫ (общие для клиента и сервера)*/
|
|
14058
|
-
/* название программы */
|
|
14059
14064
|
const NAME = 'Cloud Commander';
|
|
14060
14065
|
const FS = '/fs';
|
|
14061
|
-
const Path = (0,fullstore__WEBPACK_IMPORTED_MODULE_2__/*
|
|
14066
|
+
const Path = (0,fullstore__WEBPACK_IMPORTED_MODULE_2__/* .fullstore */ .p)();
|
|
14062
14067
|
Path('/');
|
|
14063
14068
|
const filterOutDotFiles = ({
|
|
14064
14069
|
showDotFiles
|
|
@@ -14139,6 +14144,7 @@ const buildFromJSON = params => {
|
|
|
14139
14144
|
order = 'asc',
|
|
14140
14145
|
showDotFiles
|
|
14141
14146
|
} = params;
|
|
14147
|
+
const formatDate = dateFormatter();
|
|
14142
14148
|
const templateFile = template.file;
|
|
14143
14149
|
const templateLink = template.link;
|
|
14144
14150
|
const json = params.data;
|
|
@@ -14231,7 +14237,7 @@ const buildFromJSON = params => {
|
|
|
14231
14237
|
type,
|
|
14232
14238
|
name: linkResult,
|
|
14233
14239
|
size,
|
|
14234
|
-
date,
|
|
14240
|
+
date: formatDate(date),
|
|
14235
14241
|
owner,
|
|
14236
14242
|
mode
|
|
14237
14243
|
});
|
|
@@ -14433,7 +14439,7 @@ var customArgumentsToken="__ES6-PROMISIFY--CUSTOM-ARGUMENTS__";function promisif
|
|
|
14433
14439
|
/* harmony export */ A: () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
14434
14440
|
/* harmony export */ p: () => (/* binding */ fullstore)
|
|
14435
14441
|
/* harmony export */ });
|
|
14436
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((/* runtime-dependent pure expression or super */ !/^(6(11|36|5|8)|104|415|433
|
|
14442
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((/* runtime-dependent pure expression or super */ !/^(6(11|36|5|8)|9(00|39|55)|104|415|433)$/.test(__webpack_require__.j) ? (fullstore) : null));
|
|
14437
14443
|
|
|
14438
14444
|
function fullstore(value) {
|
|
14439
14445
|
const data = {
|