cloudcmd 15.9.12 → 16.0.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 +29 -0
- package/HELP.md +5 -1
- package/README.md +1 -1
- package/common/cloudfunc.js +1 -6
- package/dist/cloudcmd.common.js +2 -2
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/cloudcmd.css +1 -1
- package/dist/cloudcmd.js.map +1 -1
- package/dist/modules/edit-names.js +1 -1
- package/dist/modules/edit-names.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +7 -7
- package/dist-dev/cloudcmd.css +1 -1
- package/dist-dev/modules/edit-names.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +7 -6
- package/server/server.js +6 -5
package/ChangeLog
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
2022.02.19, v16.0.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- (cloudcmd) drop support of node < 16
|
|
5
|
+
- (package) supertape v7.1.0
|
|
6
|
+
- (package) eslint-plugin-putout v13.11.0
|
|
7
|
+
- (package) madrun v9.0.0
|
|
8
|
+
- (package) putout v25.0.1
|
|
9
|
+
|
|
10
|
+
2022.01.20, v15.9.15
|
|
11
|
+
|
|
12
|
+
fix:
|
|
13
|
+
- (css) icons (#368)
|
|
14
|
+
|
|
15
|
+
2022.01.13, v15.9.14
|
|
16
|
+
|
|
17
|
+
fix:
|
|
18
|
+
- (cloudcmd) client: edit-names in vim mode
|
|
19
|
+
- (docker) images: make dockerfiles use node:lts-buster and node:lts-buster-slim for alpine (#363)
|
|
20
|
+
- (docker) images: make dockerfiles use node:lts-buster-slim as base image (#357)
|
|
21
|
+
feature:
|
|
22
|
+
- (package) eslint-plugin-putout v13.0.1
|
|
23
|
+
- (package) putout v24.0.2
|
|
24
|
+
|
|
25
|
+
2021.12.23, v15.9.13
|
|
26
|
+
|
|
27
|
+
feature:
|
|
28
|
+
- (package) putout v23.0.0
|
|
29
|
+
|
|
1
30
|
2021.12.16, v15.9.12
|
|
2
31
|
|
|
3
32
|
fix:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander
|
|
1
|
+
# Cloud Commander v16.0.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL]
|
|
4
4
|
|
|
@@ -1082,6 +1082,10 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1082
1082
|
|
|
1083
1083
|
## Version history
|
|
1084
1084
|
|
|
1085
|
+
- *2022.02.19*, **[v16.0.0](//github.com/coderaiser/cloudcmd/releases/tag/v16.0.0)**
|
|
1086
|
+
- *2022.01.20*, **[v15.9.15](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.15)**
|
|
1087
|
+
- *2022.01.13*, **[v15.9.14](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.14)**
|
|
1088
|
+
- *2021.12.23*, **[v15.9.13](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.13)**
|
|
1085
1089
|
- *2021.12.16*, **[v15.9.12](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.12)**
|
|
1086
1090
|
- *2021.12.09*, **[v15.9.11](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.11)**
|
|
1087
1091
|
- *2021.12.04*, **[v15.9.10](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.10)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander
|
|
1
|
+
# Cloud Commander v16.0.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL]
|
|
4
4
|
|
package/common/cloudfunc.js
CHANGED
|
@@ -253,12 +253,7 @@ function getAttribute(type) {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
module.exports._getSize = getSize;
|
|
256
|
-
function getSize(
|
|
257
|
-
const {
|
|
258
|
-
size,
|
|
259
|
-
type,
|
|
260
|
-
} = file;
|
|
261
|
-
|
|
256
|
+
function getSize({size, type}) {
|
|
262
257
|
if (type === 'directory')
|
|
263
258
|
return '<dir>';
|
|
264
259
|
|