diff --git a/changelog.md b/changelog.md index 64491baf..ca5a7fb7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,19 @@ +# Twake Drive v1.0.1 + +## Features + +- New Version Semantics +- Usage quota settings +- PostgreSQL support as a metadata database +- OpenSearch support as a search database +- New API to check file storage consistency +- UX improvements + - Remove the switcher from breadcrumbs + +## BugFixes +- Fix preview of the files on mobile and web +- Malformed URL when you share a file + # Twake Drive v2023.Q3.012 ## Features diff --git a/tdrive/backend/node/src/version.ts b/tdrive/backend/node/src/version.ts index 7166ce9b..d3af73e2 100644 --- a/tdrive/backend/node/src/version.ts +++ b/tdrive/backend/node/src/version.ts @@ -1,7 +1,7 @@ export default { - current: /* @VERSION_DETAIL */ "2023.Q1.1223", + current: /* @VERSION_DETAIL */ "1.0.1", minimal: { - web: /* @MIN_VERSION_WEB */ "2022.Q2.975", - mobile: /* @MIN_VERSION_MOBILE */ "2022.Q2.975", + web: /* @MIN_VERSION_WEB */ "1.0.0", + mobile: /* @MIN_VERSION_MOBILE */ "1.0.0", }, }; diff --git a/tdrive/frontend/src/app/environment/version.ts b/tdrive/frontend/src/app/environment/version.ts index 77e3e2a8..bb701b55 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 */ '2023.Q3.012', - version_detail: /* @VERSION_DETAIL */ '2023.Q3.012', + version: /* @VERSION */ '1.0.1', + version_detail: /* @VERSION_DETAIL */ '1.0.1', version_name: /* @VERSION_NAME */ 'Ghost-Dog', };