Skip to content

Commit

Permalink
🔖 Merging back v1.0.5-rc1 (#696)
Browse files Browse the repository at this point in the history
## **[1.0.5-rc1] - 2024-10-18**

Added:

- Updated the navigation bar/app grid (#688)
- Added FileVersion.filename and FileVersion.file_metadata.name to
output to backend cli
- Added Shared with me feature flag (#681)
- Added offset pagination to db connector (#648)
- Added healthchecks to the docker compose services used in CI testing
removed scylladb, add - env vars that are always set, removed unused
dependencies (#682)
- Sorted all locales json keys, as per jq --sort-keys (#680)

Fixed:

- Fix translation of disk usage to plural tolerant (#692)
- Fix Vietnamese code to correct ISO of "vi", added to selector in
account settings (#364)
- Fix onlyoffice filename corrupted after editing (#686)
- Fix UI bugs related to borders in lists (#687)
- Fix set rights modal had similar border issues as browser (#645)
- Fix file browser vertical borders (and fix react warning) (#645)
- Fix only office filename getting overwritten at session end (#683)
  • Loading branch information
ericlinagora authored Nov 18, 2024
2 parents 1c2a56a + 29a36ea commit cc53cd9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
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',
};

0 comments on commit cc53cd9

Please sign in to comment.