Skip to content

Releases: owncloud/web

11.3.0

25 Feb 10:16
v11.3.0
1d251f1
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.3.0 (2025-02-25)

Summary

  • Enhancement - Add psec file icon: #12104
  • Enhancement - Handle extensions without editor: #12105
  • Enhancement - Add custom handler to file extensions: #12109

Details

  • Enhancement - Add psec file icon: #12104

    We've added a new icon which will be used for psec files. These files are
    representing our password protected folders.

    #12104

  • Enhancement - Handle extensions without editor: #12105

    We've added a new property to extensions that asserts whether is has an editor
    or not. This property is computed by checking whether the extension exposes any
    routes.

    #12105

  • Enhancement - Add custom handler to file extensions: #12109

    We've added a new property into application file extensions called
    customHandler. This property allows app developers to use completely custom
    flows when creating new files.

    #12109

11.2.0

24 Feb 11:05
v11.2.0
0f86df1
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.2.0 (2025-02-24)

Summary

  • Bugfix - Create password protected folder in personal space: #12146
  • Bugfix - Do not render default actions in context menu: #12175
  • Bugfix - Open password protected folder when clicking on its name: #12177
  • Bugfix - Skip upload dropzone init when files view is missing: #12178
  • Bugfix - Display shared file versions: #12194
  • Bugfix - Sanitize content from md-editor-v3: #12195
  • Bugfix - Enable external shares editing: #12204
  • Bugfix - Prevent password protected folder move: #12205
  • Bugfix - Preserve current language in password protected folder view: #12206
  • Enhancement - Disable resources in delete queue: #12046
  • Enhancement - Add password protected folders app: #12137
  • Enhancement - Password protected folder permissions: #12141
  • Enhancement - Add password protected folders handler: #12142
  • Enhancement - Control more elements visibility via URL query: #12142
  • Enhancement - Display default actions in context menu: #12145
  • Enhancement - Hide password protected folders action: #12145
  • Enhancement - Hide password protected folders extension: #12145
  • Enhancement - Recursive folder creation: #12146
  • Enhancement - Delete password protected folders: #12152
  • Enhancement - Allow camera in external app iframe: #12188
  • Enhancement - Add lang URL query parameter: #12206

Details

  • Bugfix - Create password protected folder in personal space: #12146

    We've fixed an issue where the password protected folder was created in current
    space instead of users personal space.

    #12039
    #12146

  • Bugfix - Do not render default actions in context menu: #12175

    We've fixed an issue where the default action was rendered in the context menu
    leading into duplicate actions being shown. The default action was originally
    introduced into the context menu to show "Open folder" action of password
    protected folders extension but we fixed this to use the correct category in the
    extension which renders the action as expected.

    #12154
    #12175

  • Bugfix - Open password protected folder when clicking on its name: #12177

    We've fixed an issue where clicking on the password protected folder name in the
    list did not do anything. Clicking on the name name will open the folder.

    #12176
    #12177

  • Bugfix - Skip upload dropzone init when files view is missing: #12178

    We've fixed an issue where the drag & drop upload zone was being initialized
    even though the target files view element was missing. The initialization will
    be skipped now in such case.

    #12150
    #12178

  • Bugfix - Display shared file versions: #12194

    We've fixed an issue where versions were not displayed in the sidebar for a
    shared file even when shared with necessary permissions. If a resource is an
    incoming share, we are now checking permission directly on the resource object
    instead of space.

    #12168
    #12194

  • Bugfix - Sanitize content from md-editor-v3: #12195

    We've fixed an issue where the user can inject XSS attack by sanitizing the
    user's content

    owncloud/enterprise#7092
    #12195

  • Bugfix - Enable external shares editing: #12204

    We've reenabled external shares editing. It was previously disabled due to
    missing implementation of OCM shares editing in the backend. That has been
    implemented in the meantime.

    #12201
    #12204

  • Bugfix - Prevent password protected folder move: #12205

    We've fixed permissions on password protected folders so that the name of the
    resource is checked and if it ends with .psec, it cannot be moved.

    #12198
    #12205

  • Bugfix - Preserve current language in password protected folder view: #12206

    We've added the new lang URL query param to the URL of password protected
    folder iframe to preserve the language settings. The value is set to the
    currently used language.

    #12186
    #12206

  • Enhancement - Disable resources in delete queue: #12046

    We've added a new delete queue which is used to disable resources that are being
    currently deleted. When the resource is in delete queue, it also replaces select
    checkbox with a spinner to better hint that there is an action in progress.

    #11956
    #12046

  • Enhancement - Add password protected folders app: #12137

    We've added a new application called "Password protected folders". This
    application allows users to create new folders that are accessible only by
    entering a password.

    #12039
    #12137

  • Enhancement - Password protected folder permissions: #12141

    We've added the permissions dropdown into the create password protected folder
    dialog. Users can now decide what permissions they would like to add to the
    folder. Permissions are matching folder public link permissions.

    #12039
    #12141

  • Enhancement - Add password protected folders handler: #12142

    We've added a new file action used to handle password protected folders. When a
    password protected folder is opened, a popup is opened prompting the user to
    enter the password. After successfully entering the password, content of the
    folder is displayed inside of the popup.

    #12039
    #12142

  • Enhancement - Control more elements visibility via URL query: #12142

    We've added new params into the URL query that allows configuring elements
    visibility. The following params can be used:

    • hide-app-switcher: hides the application switcher in the top bar -
      hide-account-menu: hides the feedback action, notifications bell, and user
      menu - hide-navigation: hides the navigation sidebar and mobile navigation

    #12142

  • Enhancement - Display default actions in context menu: #12145

    We've added default actions into the context menu so that the user can use that
    action when accessing the resource through it.

    #12039
    #12145

  • Enhancement - Hide password protected folders action: #12145

    We've hidden all actions on password protected folders except delete.

    #12039
    #12145

  • Enhancement - Hide password protected folders extension: #12145

    We've hidden the password protected folder ".psec" extension.

    #12039
    #12145

  • Enhancement - Recursive folder creation: #12146

    We've extended the CreateFolderFactory in web-client to allow creating folders
    recursively. Simply pass recursive: true into options and all parent folders
    will be created.

    #12146

  • Enhancement - Delete password protected folders: #12152

    We've extended the delete resources handler to also delete the hidden folder
    acting as the password protected folder when deleting a .psec files.

    #12039
    #12152

  • Enhancement - Allow camera in external app iframe: #12188

    We've added the allow attribute with value camera to iframe i...

Read more

11.0.7

07 Feb 09:56
fcad45a
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.0.7 (2025-02-07)

Summary

  • Bugfix - Replace text editor: #12156

Details

11.1.3

06 Feb 15:29
v11.1.3
068d454
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.1.3 (2025-02-06)

Summary

  • Bugfix - Replace text editor: #12156

Details

10.3.1

05 Feb 12:39
v10.3.1
6fecd3e
Compare
Choose a tag to compare

Changelog for ownCloud Web 10.3.1 (2025-02-05)

Summary

  • Bugfix - Replace text editor: #12156

Details

11.1.2

27 Jan 10:27
v11.1.2
add8017
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.1.2 (2025-01-27)

Summary

  • Bugfix - Rename ScienceMesh: #10891

Details

  • Bugfix - Rename ScienceMesh: #10891

    We've renamed ScienceMesh in German locale to prevent confusion among
    non-science community.

    owncloud/ocis#10891

11.1.1

22 Jan 15:26
6889e7b
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.1.1 (2025-01-22)

Summary

  • Bugfix - Optionally access preview app route query: #12112
  • Bugfix - Change federated share icon: #12118
  • Bugfix - Improve federated share icon contrast: #12118
  • Bugfix - Show external share indicator: #12119

Details

  • Bugfix - Optionally access preview app route query: #12112

    We've fixed an issue where loading of preview app would fail due to missing
    route query. The route query is now accessed optionally meaning even when it
    undefined, the app still loads as expected.

    #12108
    #12106
    #12112

  • Bugfix - Change federated share icon: #12118

    We've changed the icon we are using for federated shares in the Shared with
    others list from "cloud" into "earth".

    #12117
    #12118

  • Bugfix - Improve federated share icon contrast: #12118

    We've made the color of the federated share icon slightly lighter in order to
    have a sufficient contrast compared to the icon background.

    #12117
    #12118

  • Bugfix - Show external share indicator: #12119

    We've fixed the condition that was preventing the external share indicator from
    showing up when a permissions indicator was visible.

    #12117
    #12119

11.1.0

10 Jan 09:19
8222156
Compare
Choose a tag to compare

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. The q_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
    the q_share-visibility query param is set to hidden (i.e. user is listing
    "hidden shares"), the preview app will allow moving only to another hidden
    files.

    #11883
    #12040

  • 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.

    #12021
    #12044

  • 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.

    #11536
    #12045

  • 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.

    #12045

  • 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.

    #12045

  • 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.

    #10939
    #12050

  • 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.

    #11543
    #12055

  • 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.

    #11875
    #12058

  • 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.

    #12060
    #12063

  • 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.

    #12064
    #12074

  • 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.

    #9248
    #12010

  • 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.

    #12009
    #12054

11.0.6

10 Dec 07:37
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.0.6 (2024-12-10)

Summary

  • Bugfix - OCM invite flow: #11992
  • Bugfix - Change search scope without search term: #11997
  • Bugfix - Do not load version when sidebar is closed: #11998
  • Bugfix - Use only space resource with driveType "project" as space in sidebar: #12000
  • Bugfix - OCM share editing: #12002
  • Bugfix - OCM share recipient issuer: #12002
  • Bugfix - Missing activities on Shared with me page: #12008
  • Bugfix - Sidebar file info for shares: #12010
  • Bugfix - Show missing role name in link share panel: #12012
  • Bugfix - Missing translations for share type filters: #12013
  • Bugfix - Permanent link for shares: #12022

Details

  • Bugfix - OCM invite flow: #11992

    We've fixed the OCM invite flow and made it more user-friendly.

    #11983
    #11992

  • Bugfix - Change search scope without search term: #11997

    We've fixed the change of search scope on search page when there is no search
    term entered.

    #11982
    #11997

  • Bugfix - Do not load version when sidebar is closed: #11998

    We've fixed the the loading of file versions which was triggered even when
    sidebar was closed. File version will now be loaded only when the sidebar is
    opened.

    #11979
    #11998

  • Bugfix - Use only space resource with driveType "project" as space in sidebar: #12000

    We've fixed the issue where any selected resource got passed to the sidebar as a
    space in Spaces page. Now only space resource with driveType "project" will be
    passed as a space.

    #11978
    #12000

  • Bugfix - OCM share editing: #12002

    We've fixed a bug where OCM shares could be edited although the server does not
    support it.

    #11991
    #12002

  • Bugfix - OCM share recipient issuer: #12002

    We've fixed a bug where the issuer for OCM shares was missing in the invite
    input field.

    https://github.com/owncloud/web/issues/11972
    #12002

  • Bugfix - Missing activities on Shared with me page: #12008

    We've added the missing activities on the Shared with me page.

    #12008

  • Bugfix - Sidebar file info for shares: #12010

    We've fixed a bug some file info regarding size an shares was missing in the
    right sidebar when opening an incoming share via an editor.

    #12010

  • Bugfix - Show missing role name in link share panel: #12012

    We've fixed a bug where the role name was missing in the link share panel.

    #12012

  • Bugfix - Missing translations for share type filters: #12013

    We've fixed a bug, where the translations for the share type filters were
    missing. This was the case for the "Shared with me" and "Shared with others"
    page.

    #12013

  • Bugfix - Permanent link for shares: #12022

    We've fixed an issue where the permanent for shares could not be copied.

    #12001
    #12022

11.0.5

25 Nov 10:40
Compare
Choose a tag to compare

Changelog for ownCloud Web 11.0.5 (2024-11-25)

Summary

  • Bugfix - Preview app Shared with me page: #11883
  • Bugfix - Export request ID when delete fails: #11951

Details

  • Bugfix - Preview app Shared with me page: #11883

    We fixed navigation issues with the preview app on the Shared with me page.

    #11883
    #11947

  • Bugfix - Export request ID when delete fails: #11951

    We've fixed a bug where the request ID was not exposed to the error message when
    a delete operation failed.

    #11925
    #11951