diff --git a/changelog.md b/changelog.md index 03b05392..daa65e82 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,22 @@ +# Twake Drive v1.0.5-rc2 + +*Note: This should be 1.0.6, but to align with internal release cycle numbering, we +will just continue 1.0.5 for this release.* + +## Features + +- AntiVirus - Uploaded files are now scanned by ClamAV + +## Fixes and Improvements + +- Push client error logs to the server logs +- Tolerate some configuration qwirks (like extra `/`s) +- Move operations now self-rename if target exists +- Minor UI fixes related to the search bar, pagination, + sorting by size, no more loading segment, and move + operation from a public link + + # Twake Drive v1.0.5-rc1 ## Features @@ -19,6 +38,7 @@ - Fix file browser vertical borders (and fix react warning) - Fix only office filename getting overwritten at session end + # Twake Drive v1.0.4 ## Features @@ -43,6 +63,7 @@ - Add collation fix. - Cli db seed tool + # Twake Drive v1.0.3 ## Features @@ -61,6 +82,7 @@ - A large number of minor fixes - Translation of user notifications + # Twake Drive v1.0.2 ## Features @@ -74,6 +96,7 @@ - Refactored starting docker-compose file - Fix navigation for shared link view + # Twake Drive v1.0.1 ## Features @@ -94,6 +117,7 @@ - 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 449761a0..98601ea9 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.5-rc1", + current: /* @VERSION_DETAIL */ "1.0.5-rc2", minimal: { - web: /* @MIN_VERSION_WEB */ "1.0.5-rc1", - mobile: /* @MIN_VERSION_MOBILE */ "1.0.5-rc1", + web: /* @MIN_VERSION_WEB */ "1.0.5-rc2", + mobile: /* @MIN_VERSION_MOBILE */ "1.0.5-rc2", }, }; diff --git a/tdrive/frontend/src/app/environment/version.ts b/tdrive/frontend/src/app/environment/version.ts index a3bc8bca..dea179c4 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.5-rc1', - version_detail: /* @VERSION_DETAIL */ '1.0.5-rc1', + version: /* @VERSION */ '1.0.5-rc2', + version_detail: /* @VERSION_DETAIL */ '1.0.5-rc2', version_name: /* @VERSION_NAME */ 'Ghost-Dog', }; \ No newline at end of file