cloudcmd 17.1.4 → 17.1.6
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 +12 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/common/cloudfunc.js +5 -5
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/cloudcmd.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +1 -1
- package/server/cloudcmd.js +32 -23
- package/server/config.js +1 -1
- package/server/depstore.js +15 -0
- package/server/repl.js +3 -3
- package/server/root.js +2 -2
- package/server/route.js +8 -6
- package/server/user-menu.js +2 -2
- package/server/validate.js +7 -7
package/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2024.03.21, v17.1.6
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- e01ee457 server: route: get rid of mock-require
|
|
5
|
+
- c7f90901 root: get rid of mock-require
|
|
6
|
+
- fcce26d4 cloudfunc: get rid of mock-require
|
|
7
|
+
|
|
8
|
+
2024.03.20, v17.1.5
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- bf90bf22 server: validate: get rid of mock-require
|
|
12
|
+
|
|
1
13
|
2024.03.20, v17.1.4
|
|
2
14
|
|
|
3
15
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v17.1.
|
|
1
|
+
# Cloud Commander v17.1.6
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1093,6 +1093,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1093
1093
|
|
|
1094
1094
|
## Version history
|
|
1095
1095
|
|
|
1096
|
+
- *2024.03.21*, **[v17.1.6](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.6)**
|
|
1097
|
+
- *2024.03.20*, **[v17.1.5](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.5)**
|
|
1096
1098
|
- *2024.03.20*, **[v17.1.4](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.4)**
|
|
1097
1099
|
- *2024.03.18*, **[v17.1.3](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.3)**
|
|
1098
1100
|
- *2024.03.18*, **[v17.1.2](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.2)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v17.1.
|
|
1
|
+
# Cloud Commander v17.1.6 [![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
|
@@ -165,7 +165,7 @@ module.exports.buildFromJSON = (params) => {
|
|
|
165
165
|
Path(path);
|
|
166
166
|
|
|
167
167
|
fileTable += `${header}<ul data-name="js-files" class="files">`;
|
|
168
|
-
|
|
168
|
+
|
|
169
169
|
/* Если мы не в корне */
|
|
170
170
|
if (path !== '/') {
|
|
171
171
|
const dotDot = getDotDot(path);
|
|
@@ -199,7 +199,7 @@ module.exports.buildFromJSON = (params) => {
|
|
|
199
199
|
.map((file) => {
|
|
200
200
|
const name = encode(file.name);
|
|
201
201
|
const link = prefix + FS + path + name;
|
|
202
|
-
|
|
202
|
+
|
|
203
203
|
const {
|
|
204
204
|
type,
|
|
205
205
|
mode,
|
|
@@ -207,17 +207,17 @@ module.exports.buildFromJSON = (params) => {
|
|
|
207
207
|
owner,
|
|
208
208
|
size,
|
|
209
209
|
} = file;
|
|
210
|
-
|
|
210
|
+
|
|
211
211
|
const linkResult = rendy(templateLink, {
|
|
212
212
|
link,
|
|
213
213
|
title: name,
|
|
214
214
|
name,
|
|
215
215
|
attribute: getAttribute(file.type),
|
|
216
216
|
});
|
|
217
|
-
|
|
217
|
+
|
|
218
218
|
const dataName = getDataName(file.name);
|
|
219
219
|
const attribute = `draggable="true" ${dataName}`;
|
|
220
|
-
|
|
220
|
+
|
|
221
221
|
return rendy(templateFile, {
|
|
222
222
|
tag: 'li',
|
|
223
223
|
attribute,
|