Skip to content

3.2.0

Compare
Choose a tag to compare
@pascalwengerter pascalwengerter released this 31 May 13:30

Changelog for ownCloud Web 3.2.0 (2021-05-31)

Summary

  • Bugfix - Correct navigation through "via"-tags: #5122
  • Bugfix - Correct sharee tag: #5112
  • Enhancement - Confirmation for public link deletion: #5125
  • Enhancement - Continuously deployed demo instance with latest Web: #5145
  • Enhancement - Configure previews: #5159
  • Enhancement - Prompts leaving user about pending uploads: #2590

Details

  • Bugfix - Correct navigation through "via"-tags: #5122

    The "shared via X" link in the indirect share tag in the sidebar was navigating to the parent
    directory of the indirect share entry. This has been fixed for the collaborators sidebar
    section and the link target is the share entry itself now.

    #5122

  • Bugfix - Correct sharee tag: #5112

    The tag inside a shared folder always announced the current user as "owner", since the shares
    lookup didn't check for the parent folders' ownership. This has been fixed now and users get the
    correct tag (e.g. "Viewer", "Editor" etc) in the sidebar.

    #5112

  • Enhancement - Confirmation for public link deletion: #5125

    The deletion of public links is an irreversible interaction and should be handled with more
    care since users might have bookmarked or shared with other people. We have added a
    confirmation modal now to prevent users from accidentally deleting public links.

    #5125

  • Enhancement - Continuously deployed demo instance with latest Web: #5145

    Whenever a commit or merge to master happens, a demo instance with the latest Web build will be
    deployed.

    #5145

  • Enhancement - Configure previews: #5159

    We introduced a new config option to configure which file will be previewed. To do so, add
    "options.previewFileExtensions": ["jpg", "txt"] in the config.json file.

    #5079
    #5159

  • Enhancement - Prompts leaving user about pending uploads: #2590

    Added an unload event listener that detects closes/ reloads/ navigates to another URL. Added
    prompt that ask for confirmation to leave site on unload events if uploads pending. Removed the
    event listener before destroy of component.

    #2590
    #4840