From 4f4725ac3c34244ce2f3f54bd2662d5bc82c1fe5 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 17 May 2026 11:25:50 +0000 Subject: [PATCH 01/51] =?UTF-8?q?chore:=20cloudcmd:=20actions:=20lint=20?= =?UTF-8?q?=E2=98=98=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/validate.js | 2 +- server/validate.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/validate.js b/server/validate.js index 38491774..e01d0505 100644 --- a/server/validate.js +++ b/server/validate.js @@ -31,7 +31,7 @@ export const editor = (name, {exit = _exit} = {}) => { const reg = /^(dword|edward|deepword|qword)$/; if (!reg.test(name)) - exit(`cloudcmd --editor: could be "dword", "edward", "deepword" or "qword" only, recieved: "${name}"`); + exit(`cloudcmd --editor: could be "dword", "edward", "deepword" or "qword" only, received: "${name}"`); }; export const menu = (name, {exit = _exit} = {}) => { diff --git a/server/validate.spec.js b/server/validate.spec.js index 1c4ca25b..76243e30 100644 --- a/server/validate.spec.js +++ b/server/validate.spec.js @@ -64,7 +64,7 @@ test('validate: packer: not valid', (t) => { test('validate: editor: not valid', (t) => { const exit = stub(); - const msg = 'cloudcmd --editor: could be "dword", "edward", "deepword" or "qword" only, recieved: "hello"'; + const msg = 'cloudcmd --editor: could be "dword", "edward", "deepword" or "qword" only, received: "hello"'; validate.editor('hello', { exit, From 447d990f43f69faf7c4acc5b7eb796da43a205eb Mon Sep 17 00:00:00 2001 From: coderiaser Date: Thu, 21 May 2026 00:05:25 +0300 Subject: [PATCH 02/51] fix: cloudcmd: server: rest: sendError --- server/rest/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/rest/index.js b/server/rest/index.js index 6a599ca4..68bec54e 100644 --- a/server/rest/index.js +++ b/server/rest/index.js @@ -72,7 +72,7 @@ function rest({fs, config, moveFiles}, request, response) { return ponse.sendError(error, params); if (error) - return ponse.sendError(error.stack, params); + return ponse.sendError(error, params); ponse.send(data, params); }); From 2be395e640cba79f394ba5edce9df46996cde319 Mon Sep 17 00:00:00 2001 From: coderiaser Date: Sun, 24 May 2026 21:40:26 +0300 Subject: [PATCH 03/51] feature: cloudcmd: get rid of manifest: 401 basic auth --- html/index.html | 1 - public/manifest.json | 11 ----------- 2 files changed, 12 deletions(-) delete mode 100644 public/manifest.json diff --git a/html/index.html b/html/index.html index 76043d9c..0b7ea9ad 100644 --- a/html/index.html +++ b/html/index.html @@ -9,7 +9,6 @@ - diff --git a/public/manifest.json b/public/manifest.json deleted file mode 100644 index abd55ade..00000000 --- a/public/manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "short_name": "CloudCMD", - "name": "Cloud Commander", - "display": "standalone", - "start_url": "..", - "icons": [{ - "src": "../img/favicon/favicon-256.png", - "type": "image/png", - "sizes": "256x256" - }] -} From 161bede8db4719908ce218e1ac4f7f4e87ccb628 Mon Sep 17 00:00:00 2001 From: coderiaser Date: Sun, 24 May 2026 22:24:54 +0300 Subject: [PATCH 04/51] fix: client: menu: @putout/bundle@5.5. --- client/cloudcmd.js | 2 +- html/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cloudcmd.js b/client/cloudcmd.js index 688d97b7..f2416fd4 100644 --- a/client/cloudcmd.js +++ b/client/cloudcmd.js @@ -36,7 +36,7 @@ async function init(config) { if (globalThis.CloudCmd.config('menu') === 'aleman') setTimeout(() => { import('https://esm.sh/@putout/processor-html'); - import('https://esm.sh/@putout/bundle'); + import('https://esm.sh/@putout/bundle@5.5'); }, 100); } diff --git a/html/index.html b/html/index.html index 0b7ea9ad..d366ed1c 100644 --- a/html/index.html +++ b/html/index.html @@ -44,7 +44,7 @@