cloudcmd 17.1.5 → 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 +7 -0
- package/HELP.md +2 -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 +8 -8
package/ChangeLog
CHANGED
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,7 @@ 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)**
|
|
1096
1097
|
- *2024.03.20*, **[v17.1.5](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.5)**
|
|
1097
1098
|
- *2024.03.20*, **[v17.1.4](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.4)**
|
|
1098
1099
|
- *2024.03.18*, **[v17.1.3](//github.com/coderaiser/cloudcmd/releases/tag/v17.1.3)**
|
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,
|