Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Release Version 1.0.5-rc1 #696

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# Twake Drive v1.0.5-rc1

## Features

- Updated the navigation bar/app grid
- Added FileVersion.filename and FileVersion.file_metadata.name to output to backend cli
- Added Shared with me feature flag
- Added offset pagination to db connector
- Added healthchecks to the docker compose services used in CI testing removed scylladb.
- Sorted all locales json keys, as per jq --sort-keys

## Fixes and Improvements

- Fix translation of disk usage to plural tolerant
- Fix Vietnamese code to correct ISO of "vi", added to selector in account settings
- Fix onlyoffice filename corrupted after editing
- Fix UI bugs related to borders in lists
- Fix set rights modal had similar border issues as browser
- Fix file browser vertical borders (and fix react warning)
- Fix only office filename getting overwritten at session end

# Twake Drive v1.0.4

## Features
Expand Down
6 changes: 3 additions & 3 deletions tdrive/backend/node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
current: /* @VERSION_DETAIL */ "1.0.4-hf3",
current: /* @VERSION_DETAIL */ "1.0.5-rc1",
minimal: {
web: /* @MIN_VERSION_WEB */ "1.0.4-hf3",
mobile: /* @MIN_VERSION_MOBILE */ "1.0.4-hf3",
web: /* @MIN_VERSION_WEB */ "1.0.5-rc1",
mobile: /* @MIN_VERSION_MOBILE */ "1.0.5-rc1",
},
};
4 changes: 2 additions & 2 deletions tdrive/frontend/src/app/environment/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
version: /* @VERSION */ '1.0.4-hf3',
version_detail: /* @VERSION_DETAIL */ '1.0.4-hf3',
version: /* @VERSION */ '1.0.5-rc1',
version_detail: /* @VERSION_DETAIL */ '1.0.5-rc1',
version_name: /* @VERSION_NAME */ 'Ghost-Dog',
};