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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  2024.03.20, v17.1.5
2
9
 
3
10
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v17.1.5
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.5 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
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
 
@@ -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,