mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-22 15:39:34 +00:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b731405d1 | ||
|
|
914888e881 | ||
|
|
5661bc4f4d |
6 changed files with 14 additions and 7 deletions
|
|
@ -22,7 +22,7 @@ const rules = [{
|
|||
},
|
||||
}],
|
||||
}, {
|
||||
test: /\.(png|gif|woff|woff2|eot|ttf)$/,
|
||||
test: /\.(png|gif|svg|woff|woff2|eot|ttf)$/,
|
||||
type: 'asset/inline',
|
||||
}];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
2026.02.03, v19.3.1
|
||||
|
||||
fix:
|
||||
- 5661bc4f Closing X in editor disappeared (#445)
|
||||
|
||||
2026.02.03, v19.3.0
|
||||
|
||||
feature:
|
||||
|
|
|
|||
3
HELP.md
3
HELP.md
|
|
@ -1,4 +1,4 @@
|
|||
# Cloud Commander v19.3.0
|
||||
# Cloud Commander v19.3.1
|
||||
|
||||
### [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
|
||||
|
||||
- *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.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)**
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cloudcmd",
|
||||
"version": "19.3.0",
|
||||
"version": "19.3.1",
|
||||
"type": "module",
|
||||
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
||||
"description": "File manager for the web with console and editor",
|
||||
|
|
|
|||
|
|
@ -243,17 +243,17 @@ test('cloudcmd: static: user menu: no EditFile.show', async (t) => {
|
|||
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 DOM = getDOM();
|
||||
const CloudCmd = getCloudCmd();
|
||||
|
||||
await defaultMenu[name]({
|
||||
defaultMenu[name]({
|
||||
DOM,
|
||||
CloudCmd,
|
||||
});
|
||||
|
||||
const {files} = DOM.CurrentInfo.files;
|
||||
const {files} = DOM.CurrentInfo;
|
||||
|
||||
t.calledWith(DOM.getFilenames, [files], 'should call getFilenames');
|
||||
t.end();
|
||||
|
|
@ -338,3 +338,4 @@ const getCloudCmd = () => ({
|
|||
show: stub(),
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue