cloudcmd 19.18.1 → 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,8 @@
1
+ 2026.05.26, v19.19.0
2
+
3
+ feature:
4
+ - 4ee38db6 client: view: flac: add support
5
+
1
6
  2026.05.26, v19.18.1
2
7
 
3
8
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.18.1
1
+ # Cloud Commander v19.19.0
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -1119,6 +1119,7 @@ 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)**
1122
1123
  - *2026.05.26*, **[v19.18.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.18.1)**
1123
1124
  - *2026.05.26*, **[v19.18.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.18.0)**
1124
1125
  - *2026.05.17*, **[v19.17.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.17.0)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v19.18.1 [![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
 
@@ -13817,7 +13817,7 @@ var path_browserify = __webpack_require__(7975);
13817
13817
  ;// ./client/modules/view/types.js
13818
13818
 
13819
13819
 
13820
- const isAudio = name => /\.(mp3|ogg|m4a)$/i.test(name);
13820
+ const isAudio = name => /\.(mp3|ogg|m4a|flac)$/i.test(name);
13821
13821
  const testRegExp = currify((name, reg) => reg.test(name));
13822
13822
  const getRegExp = ext => RegExp(`\\.${ext}$`, 'i');
13823
13823
  const isPDF = a => /\.pdf$/i.test(a);