Compare commits

...

3 commits

Author SHA1 Message Date
coderiaser
0b731405d1 chore: cloudcmd: v19.3.1 2026-02-03 16:22:39 +02:00
coderiaser
914888e881 test: static: user-menu: compare directories 2026-02-03 16:22:10 +02:00
coderiaser
5661bc4f4d fix: Closing X in editor disappeared (#445) 2026-02-03 16:17:41 +02:00
6 changed files with 14 additions and 7 deletions

View file

@ -22,7 +22,7 @@ const rules = [{
}, },
}], }],
}, { }, {
test: /\.(png|gif|woff|woff2|eot|ttf)$/, test: /\.(png|gif|svg|woff|woff2|eot|ttf)$/,
type: 'asset/inline', type: 'asset/inline',
}]; }];

View file

@ -1,3 +1,8 @@
2026.02.03, v19.3.1
fix:
- 5661bc4f Closing X in editor disappeared (#445)
2026.02.03, v19.3.0 2026.02.03, v19.3.0
feature: feature:

View file

@ -1,4 +1,4 @@
# Cloud Commander v19.3.0 # Cloud Commander v19.3.1
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL] ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
@ -1111,6 +1111,7 @@ There are a lot of ways to be involved in `Cloud Commander` development:
## Version history ## Version history
- *2026.02.03*, **[v19.3.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.1)**
- *2026.02.03*, **[v19.3.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.0)** - *2026.02.03*, **[v19.3.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.0)**
- *2026.02.03*, **[v19.2.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.2.0)** - *2026.02.03*, **[v19.2.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.2.0)**
- *2026.02.02*, **[v19.1.21](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.21)** - *2026.02.02*, **[v19.1.21](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.21)**

View file

@ -1,4 +1,4 @@
# Cloud Commander v19.3.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL] # Cloud Commander v19.3.1 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL] ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]

View file

@ -1,6 +1,6 @@
{ {
"name": "cloudcmd", "name": "cloudcmd",
"version": "19.3.0", "version": "19.3.1",
"type": "module", "type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)", "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "File manager for the web with console and editor", "description": "File manager for the web with console and editor",

View file

@ -243,17 +243,17 @@ test('cloudcmd: static: user menu: no EditFile.show', async (t) => {
t.end(); t.end();
}); });
test('cloudcmd: static: user menu: compare directories', async (t) => { test('cloudcmd: static: user menu: compare directories', (t) => {
const name = 'D - Compare directories'; const name = 'D - Compare directories';
const DOM = getDOM(); const DOM = getDOM();
const CloudCmd = getCloudCmd(); const CloudCmd = getCloudCmd();
await defaultMenu[name]({ defaultMenu[name]({
DOM, DOM,
CloudCmd, CloudCmd,
}); });
const {files} = DOM.CurrentInfo.files; const {files} = DOM.CurrentInfo;
t.calledWith(DOM.getFilenames, [files], 'should call getFilenames'); t.calledWith(DOM.getFilenames, [files], 'should call getFilenames');
t.end(); t.end();
@ -338,3 +338,4 @@ const getCloudCmd = () => ({
show: stub(), show: stub(),
}, },
}); });