cloudcmd 19.18.0 → 19.19.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 CHANGED
@@ -1,3 +1,13 @@
1
+ 2026.05.26, v19.19.0
2
+
3
+ feature:
4
+ - 4ee38db6 client: view: flac: add support
5
+
6
+ 2026.05.26, v19.18.1
7
+
8
+ feature:
9
+ - 40ecef5e cloudcmd: ratelimit: X-Forwarded-For (#437)
10
+
1
11
  2026.05.26, v19.18.0
2
12
 
3
13
  fix:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.18.0
1
+ # Cloud Commander v19.19.0
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -1119,6 +1119,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
1119
1119
 
1120
1120
  ## Version history
1121
1121
 
1122
+ - *2026.05.26*, **[v19.19.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.19.0)**
1123
+ - *2026.05.26*, **[v19.18.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.18.1)**
1122
1124
  - *2026.05.26*, **[v19.18.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.18.0)**
1123
1125
  - *2026.05.17*, **[v19.17.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.17.0)**
1124
1126
  - *2026.05.03*, **[v19.16.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.16.0)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.18.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v19.19.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/bin/cloudcmd.js CHANGED
@@ -264,7 +264,8 @@ function validateRoot(root, config) {
264
264
  if (root === '/')
265
265
  return;
266
266
 
267
- console.log(`root: ${root}`);
267
+ if (config('log'))
268
+ console.log(`root: ${root}`);
268
269
  }
269
270
 
270
271
  async function getPassword(password) {
@@ -12016,13 +12016,16 @@ function createSupermenu(name, options, menuData) {
12016
12016
  /* harmony import */ var _dom_load__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(2486);
12017
12017
  /* harmony import */ var _dom_rest__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(6408);
12018
12018
  /* harmony import */ var _common_cloudfunc__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(2518);
12019
- /* global CloudCmd, DOM */
12020
12019
 
12021
12020
 
12022
12021
 
12023
12022
 
12024
12023
 
12025
12024
 
12025
+ const {
12026
+ CloudCmd,
12027
+ DOM
12028
+ } = globalThis;
12026
12029
  const {
12027
12030
  config,
12028
12031
  Key
@@ -13814,7 +13817,7 @@ var path_browserify = __webpack_require__(7975);
13814
13817
  ;// ./client/modules/view/types.js
13815
13818
 
13816
13819
 
13817
- const isAudio = name => /\.(mp3|ogg|m4a)$/i.test(name);
13820
+ const isAudio = name => /\.(mp3|ogg|m4a|flac)$/i.test(name);
13818
13821
  const testRegExp = currify((name, reg) => reg.test(name));
13819
13822
  const getRegExp = ext => RegExp(`\\.${ext}$`, 'i');
13820
13823
  const isPDF = a => /\.pdf$/i.test(a);