From fbf42cff5ebc3c279e0f4e117e57e257ab801ba7 Mon Sep 17 00:00:00 2001 From: Eric Doughty-Papassideris Date: Tue, 15 Oct 2024 19:21:17 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8C=90=20front:=20fix=20translation?= =?UTF-8?q?=20of=20disk=20usage=20to=20plural=20tolerant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tdrive/frontend/public/locales/fr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/frontend/public/locales/fr.json b/tdrive/frontend/public/locales/fr.json index e2f32039..69c0ec25 100644 --- a/tdrive/frontend/public/locales/fr.json +++ b/tdrive/frontend/public/locales/fr.json @@ -293,7 +293,7 @@ "scenes.app.drive.used": "utilisés dans ce dossier", "scenes.app.drive.documents": "Documents", "scenes.app.drive.context_menu": "Plus", - "components.disk_usage.used": "utilisé", + "components.disk_usage.used": "utilisé(s)", "components.disk_usage.in_trash": "dans la corbeille", "components.disk_usage.of": "sur", "components.create_modal.create_folder_or_doc": "Créer un document ou un dossier", From c4ea3f70a5a26f63b27b4d174b864e04eecbca7d Mon Sep 17 00:00:00 2001 From: Eric Doughty-Papassideris Date: Tue, 15 Oct 2024 19:48:37 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=96=20Release=20Version=201.0.4-hf?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 10 +++++++--- tdrive/backend/node/src/version.ts | 6 +++--- tdrive/frontend/src/app/environment/version.ts | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/changelog.md b/changelog.md index 2460e18f..9f40b881 100644 --- a/changelog.md +++ b/changelog.md @@ -15,6 +15,10 @@ - Fix OpenSearch e2e test - Fix build CI +## Hotfixes + - `v1.0.4-hf1`: + - Fix typo in French translation + # Twake Drive v1.0.3 ## Features @@ -40,7 +44,7 @@ - New “Create” context menu new icons - CLI tool to reindex search database - Handling quota limit error -- +- ## BugFixes and improvements - Handling quota limit error - Refactored starting docker-compose file @@ -51,8 +55,8 @@ ## Features - New Version Semantics -- Usage quota settings -- PostgreSQL support as a metadata database +- Usage quota settings +- PostgreSQL support as a metadata database - OpenSearch support as a search database - New API to check file storage consistency - UX improvements diff --git a/tdrive/backend/node/src/version.ts b/tdrive/backend/node/src/version.ts index daf6a65c..b047764c 100644 --- a/tdrive/backend/node/src/version.ts +++ b/tdrive/backend/node/src/version.ts @@ -1,7 +1,7 @@ export default { - current: /* @VERSION_DETAIL */ "1.0.4", + current: /* @VERSION_DETAIL */ "1.0.4-hf1", minimal: { - web: /* @MIN_VERSION_WEB */ "1.0.4", - mobile: /* @MIN_VERSION_MOBILE */ "1.0.4", + web: /* @MIN_VERSION_WEB */ "1.0.4-hf1", + mobile: /* @MIN_VERSION_MOBILE */ "1.0.4-hf1", }, }; diff --git a/tdrive/frontend/src/app/environment/version.ts b/tdrive/frontend/src/app/environment/version.ts index 6cd51260..f98e2a81 100644 --- a/tdrive/frontend/src/app/environment/version.ts +++ b/tdrive/frontend/src/app/environment/version.ts @@ -1,5 +1,5 @@ export default { - version: /* @VERSION */ '1.0.4', - version_detail: /* @VERSION_DETAIL */ '1.0.4', + version: /* @VERSION */ '1.0.4-hf1', + version_detail: /* @VERSION_DETAIL */ '1.0.4-hf1', version_name: /* @VERSION_NAME */ 'Ghost-Dog', }; \ No newline at end of file