Changelog for ownCloud Web 11.1.0 (2025-01-10)
Summary
- Bugfix - Preview app files visibility: #12040
- Bugfix - Disable paste action in same folder: #12044
- Bugfix - Do not push sidebar close action away: #12045
- Bugfix - Update sidebar width on resize: #12045
- Bugfix - Use correct breakpoints in sidebar: #12045
- Bugfix - Show indirect shares on search page: #12050
- Bugfix - Add more padding to input when clear action is visible: #12055
- Bugfix - Use local state in sidebar in embed mode: #12058
- Bugfix - Change opacity of disabled checkboxes: #12063
- Bugfix - Refetch notifications settings on locale change: #12074
- Enhancement - Add notifications settings: #12010
- Enhancement - Use generic private link error: #12054
Details
-
Bugfix - Preview app files visibility: #12040
We've fixed the issue with displaying hidden files when user open a file in
preview app in "Shared with me" list. Theq_share-visibility
query param is
now passed to the app so that if a user opens a file while listing "visible
shares", the preview app will allow moving only to another visible files. When
theq_share-visibility
query param is set tohidden
(i.e. user is listing
"hidden shares"), the preview app will allow moving only to another hidden
files. -
Bugfix - Disable paste action in same folder: #12044
We've fixed the state of the "paste files" action when copied resources are from
the same folder. The button will be disabled in such case and a tooltip with
explanation message displayed. -
Bugfix - Do not push sidebar close action away: #12045
We've fixed an issue with the sidebar close action which was pushed away when
zooming. The layout of the screen was not adjusting the size and shifted the
whole sidebar off the screen. We set a fixed width of 100% - sidebar width to
prevent this. -
Bugfix - Update sidebar width on resize: #12045
We've fixed an issue where the width of the sidebar was updated only when
opening it. We added a resize event handler to the window object so that we can
react to it and update the width accordingly. -
Bugfix - Use correct breakpoints in sidebar: #12045
We've set the correct breakpoint used for setting width of the sidebar so that
it matches the breakpoint in app wrapper. -
Bugfix - Show indirect shares on search page: #12050
We've fixed an issue where the indirect shares of resources were not displayed
in the sidebar when user is on search page. -
Bugfix - Add more padding to input when clear action is visible: #12055
We've fixed the issue where the clear action of the text input would overlap the
text entered into the input. When the clear action becomes visible, the right
padding of the input will be increased by the size of the clear action. -
Bugfix - Use local state in sidebar in embed mode: #12058
We've fixed an issue where the sidebar would be overlapping the content of embed
mode iframe when opened due to shared local storage. We now use own local state
for the sidebar in embed mode instead of relying on the local storage. -
Bugfix - Change opacity of disabled checkboxes: #12063
We've fixed an issue where disabled checkbox was not clearly distinguishable
from enabled ones by lowering it's opacity. -
Bugfix - Refetch notifications settings on locale change: #12074
We've fixed an issue where the notification settings section did not update any
strings when users changed their locale. The settings bundle is now fetched
again when locale changes to make sure that the oCIS server can return strings
in the correct locale. -
Enhancement - Add notifications settings: #12010
We've added a new notifications settings section into the account screen. This
section allows users to configure what notifications they wish to receive either
in-app or via email, when to receive email notifications, and drops the previous
notifications toggle. -
Enhancement - Use generic private link error: #12054
We've added a more generic error message to the unavailable private links as the
previous message was confusing.