diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac8a99fd..57f07b09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,9 @@ name: Build on: + push: + branches: + - release/* pull_request: branches: [main] paths: diff --git a/.github/workflows/publish_feature.yml b/.github/workflows/publish_feature.yml index 205e4421..cf1cbf09 100644 --- a/.github/workflows/publish_feature.yml +++ b/.github/workflows/publish_feature.yml @@ -5,6 +5,7 @@ on: branches: - main - feature-** + - release/* jobs: setup: diff --git a/changelog.md b/changelog.md index 14375749..9fae5311 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,21 @@ +# Twake Drive v1.0.3 + +## Features + +- Infinite scrolling in files list view +- Sort files chronologically +- Added Left and Right buttons in the preview gallery + +## Fixes and Improvements + +- Folders with large numbers of files now work +- OIDC logout +- Dark mode related fixes +- Rework of share and permissions dialog +- Removed Cassandra support +- A large number of minor fixes +- Translation of user notifications + # Twake Drive v1.0.2 ## Features diff --git a/tdrive/backend/node/src/version.ts b/tdrive/backend/node/src/version.ts index d495faa6..c29aa953 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.2", + current: /* @VERSION_DETAIL */ "1.0.3", minimal: { - web: /* @MIN_VERSION_WEB */ "1.0.1", - mobile: /* @MIN_VERSION_MOBILE */ "1.0.0", + web: /* @MIN_VERSION_WEB */ "1.0.3", + mobile: /* @MIN_VERSION_MOBILE */ "1.0.3", }, }; diff --git a/tdrive/frontend/src/app/environment/version.ts b/tdrive/frontend/src/app/environment/version.ts index 69b31e25..d264abe6 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.2', - version_detail: /* @VERSION_DETAIL */ '1.0.2', + version: /* @VERSION */ '1.0.3', + version_detail: /* @VERSION_DETAIL */ '1.0.3', version_name: /* @VERSION_NAME */ 'Ghost-Dog', }; \ No newline at end of file