Skip to content

Releases: owncloud/web

9.0.0-alpha.1

26 Feb 10:57
535d300
Compare
Choose a tag to compare
9.0.0-alpha.1 Pre-release
Pre-release

Changelog for ownCloud Web 9.0.0 (2024-02-26)

Summary

  • Change - Remove deprecated code: #7338
  • Change - Remove skeleton app: #9892
  • Change - Remove deprecated extension point for adding quick actions: #10102
  • Change - Remove homeFolder option: #10122
  • Change - Vuex store removed: #10210
  • Change - Remove ocs user: #10240

Details

  • Change - Remove deprecated code: #7338

    We have removed the getToken getter from our vuex store and support for the
    deprecated user-management name for the admin-settings app. See linked
    "Deprecations" issue for more information.

    #7338
    #9959

  • Change - Remove skeleton app: #9892

    Due to improvements in the extension system in general, we have removed the
    skeleton app. Documentation regarding the extension API and guides/examples can
    be found in the dev docs.

    #9892
    #10067

  • Change - Remove deprecated extension point for adding quick actions: #10102

    BREAKING CHANGE for developers: The old way of registering quick actions via the
    quickaction property of an app has been removed. Quick actions should be
    registered as extension via our extension registry. They need to be of type
    action and have the files.quick-action scope.

    #10102
    #10223

  • Change - Remove homeFolder option: #10122

    We have removed the homeFolder option as it was originally implemented and
    used by CERN but isn't needed anymore.

    #10122

  • Change - Vuex store removed: #10210

    BREAKING CHANGE for developers: The vuex store has been removed in favor of
    pinia.

    All store modules have been migrated to a pinia store module. Please see the
    linked issue down below for a list of all migrated stores and how to use them
    now.

    There are a number of things that have been removed and/or moved into pinia
    composables instead:

    Globals:

    • store and $store variables have been removed. - ConfigurationManager has
      been removed. The config now sits inside the configuration store.

    App framework:

    • announceStore has been removed. There is no need for apps to announce stores
      to the runtime. If you need to use a store in your app, simply create a pinia
      store module and use it. - announceExtensions has been removed. The proper way
      for an app to register file extensions is via the extensions property inside
      the appInfo object. - requestStore has been removed. There is no need to
      request specific stores. All stores that web-pkg provides can be imported and
      accessed via their composables. - enabled callback as well as the name
      callback of the AppNavigationItem no longer have the capabilities parameter.
    • store param of the ClassicApplicationScript has been removed.

    Composables:

    • useStore has been removed. Use the pinia for the store you want to use
      instead. - useAccessToken has been removed. It now sits inside the auth store.
    • usePublicLinkContext has been removed. It now sits inside the auth store. -
      usePublicLinkPassword has been removed. It now sits inside the auth store. -
      usePublicLinkToken has been removed. It now sits inside the auth store. -
      useUserContext has been removed. It now sits inside the auth store. -
      useConfigurationManager has been removed. The config now sits inside the
      configuration store. - use...Capability composables have been removed.
      Capablities now sit inside the capability store.

    For store specific changes please see the linked issue and PRs down below.

    #10210
    #10212
    #10240
    #10307
    #10309
    #10316
    #10323
    #10326
    #10329
    #10331
    #10336
    #10338
    #10341
    #10346
    #10349
    #10362
    #10363
    #10368
    #10372

  • Change - Remove ocs user: #10240

    BREAKING CHANGE for developers: The user from the ocs api has been removed in
    favor of the graph user. That means the user that can be retrieved from the
    store looks slightly different than the OCS user (though it still holds the same
    information).

    For more details please see the linked PR down below.

    #10210
    #10240

8.0.0-rc.5

20 Feb 06:06
1f21276
Compare
Choose a tag to compare
8.0.0-rc.5 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2024-02-20)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Bugfix - Tilesview has whitespace: #10118
  • Bugfix - Spaces files list previews cropped: #10149
  • Bugfix - Spaces overview tile previews zoomed: #10149
  • Bugfix - Resolving links without drive alias: #10154
  • Bugfix - Uploading the same files parallel: #10156
  • Bugfix - GDPR export polling: #10158
  • Bugfix - Turned off file extensions not always respected: #10176
  • Bugfix - Space navigate to trash missing: #10179
  • Bugfix - Make versions panel readonly in viewers and editors: #10182
  • Bugfix - Loading indicator during conflict dialog: #10220
  • Bugfix - Configurable concurrent requests: #10227
  • Bugfix - Skip searchbar preview fetch on reload: #10232
  • Bugfix - Scrollable account page: #10318
  • Bugfix - Private link error messages: #10321
  • Bugfix - Readonly user attributes have no effect on group memberships: #10347
  • Bugfix - Restore space: #10424
  • Bugfix - Public link file download: #10473
  • Bugfix - Wrong share permissions when resharing off: #10489
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
    *...
Read more

8.0.0-rc.4

15 Feb 15:23
1ca179f
Compare
Choose a tag to compare
8.0.0-rc.4 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2024-02-15)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Bugfix - Tilesview has whitespace: #10118
  • Bugfix - Spaces files list previews cropped: #10149
  • Bugfix - Spaces overview tile previews zoomed: #10149
  • Bugfix - Resolving links without drive alias: #10154
  • Bugfix - Uploading the same files parallel: #10156
  • Bugfix - GDPR export polling: #10158
  • Bugfix - Turned off file extensions not always respected: #10176
  • Bugfix - Space navigate to trash missing: #10179
  • Bugfix - Make versions panel readonly in viewers and editors: #10182
  • Bugfix - Loading indicator during conflict dialog: #10220
  • Bugfix - Configurable concurrent requests: #10227
  • Bugfix - Skip searchbar preview fetch on reload: #10232
  • Bugfix - Scrollable account page: #10318
  • Bugfix - Private link error messages: #10321
  • Bugfix - Readonly user attributes have no effect on group memberships: #10347
  • Bugfix - Restore space: #10424
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104
  • Enhancement - Registering right sidebar panels as extension: [#10111](#10111...
Read more

8.0.0-rc.3

01 Feb 13:54
a992454
Compare
Choose a tag to compare
8.0.0-rc.3 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2024-02-01)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Bugfix - Tilesview has whitespace: #10118
  • Bugfix - Spaces files list previews cropped: #10149
  • Bugfix - Spaces overview tile previews zoomed: #10149
  • Bugfix - Resolving links without drive alias: #10154
  • Bugfix - Uploading the same files parallel: #10156
  • Bugfix - GDPR export polling: #10158
  • Bugfix - Turned off file extensions not always respected: #10176
  • Bugfix - Space navigate to trash missing: #10179
  • Bugfix - Make versions panel readonly in viewers and editors: #10182
  • Bugfix - Loading indicator during conflict dialog: #10220
  • Bugfix - Configurable concurrent requests: #10227
  • Bugfix - Skip searchbar preview fetch on reload: #10232
  • Bugfix - Scrollable account page: #10318
  • Bugfix - Private link error messages: #10321
  • Bugfix - Readonly user attributes have no effect on group memberships: #10347
  • Bugfix - Restore space: #10424
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104
  • Enhancement - Registering right sidebar panels as extension: [#10111](#10111...
Read more

8.0.0-rc.2

08 Jan 16:42
5728156
Compare
Choose a tag to compare
8.0.0-rc.2 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2024-01-08)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Bugfix - Tilesview has whitespace: #10118
  • Bugfix - Spaces files list previews cropped: #10149
  • Bugfix - Spaces overview tile previews zoomed: #10149
  • Bugfix - Resolving links without drive alias: #10154
  • Bugfix - Uploading the same files parallel: #10156
  • Bugfix - GDPR export polling: #10158
  • Bugfix - Turned off file extensions not always respected: #10176
  • Bugfix - Space navigate to trash missing: #10179
  • Bugfix - Make versions panel readonly in viewers and editors: #10182
  • Bugfix - Loading indicator during conflict dialog: #10220
  • Bugfix - Configurable concurrent requests: #10227
  • Bugfix - Skip searchbar preview fetch on reload: #10232
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104
  • Enhancement - Registering right sidebar panels as extension: #10111
  • Enhancement - File sidebar in viewer and editor apps: #10111
  • Enhancement - Harmonize AppSwitcher icon colors: #10224

Details

  • Bugfix - Filter out shares without display name: #9257

    In rare (legacy) cases, shares can exist witho...

Read more

8.0.0-rc.1

21 Dec 16:06
Compare
Choose a tag to compare
8.0.0-rc.1 Pre-release
Pre-release
v8.0.0-rc.1

chore: move changelog items back to unreleased

7.1.3

19 Dec 09:49
Compare
Choose a tag to compare

Changelog for ownCloud Web 7.1.3 (2023-12-15)

Summary

  • Bugfix - PDF loading Safari: #9483
  • Bugfix - Set or remove expiration date on group share not possible: #9513
  • Bugfix - Internal public link resolving: #9587
  • Bugfix - Audio- & video-loading on Shared with me page: #9593
  • Bugfix - Tiles view accessibility: #9670
  • Bugfix - Zoom in preview app not working with all browsers: #10137
  • Bugfix - Created file missing extension when file extensions not shown is active: #10170

Details

  • Bugfix - PDF loading Safari: #9483

    Loading PDF files with Safari has been fixed.

    #9483
    #9565

  • Bugfix - Set or remove expiration date on group share not possible: #9513

    We've fixed a bug where setting or removing an expiration on a group share
    wasn't possible.

    #8419
    #9513

  • Bugfix - Internal public link resolving: #9587

    An issue where internally resolved public links instantly triggered the default
    file action has been fixed.

    #9578
    #9587

  • Bugfix - Audio- & video-loading on Shared with me page: #9593

    Loading audio and video on the Shared with me page with the preview app has been
    fixed.

    #9593
    #9595

  • Bugfix - Tiles view accessibility: #9670

    Navigating via tab and enter in the tiles view has been fixed.

    #9633
    #9670

  • Bugfix - Zoom in preview app not working with all browsers: #10137

    We fixed a bug where zoom in and zoom out not working in preview app with all
    browsers, for example in Firefox.

    #10137

  • Bugfix - Created file missing extension when file extensions not shown is active: #10170

    We've fixed a bug where the file extension was missing, when the user set the
    file extensions not shown configuration option. This affected files that are
    handled via external applications, for example Microsoft Excel.

    #10170
    #10169

8.0.0-beta.2

12 Dec 18:48
a6fd05e
Compare
Choose a tag to compare
8.0.0-beta.2 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2023-12-12)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - PDF loading Safari: #9483
  • Bugfix - Set or remove expiration date on group share not possible: #9513
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Internal public link resolving: #9587
  • Bugfix - Audio- & video-loading on Shared with me page: #9593
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Tiles view accessibility: #9670
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Bugfix - Spaces files list previews cropped: #10149
  • Bugfix - Spaces overview tile previews zoomed: #10149
  • Bugfix - Resolving links without drive alias: #10154
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104
  • Enhancement - Registering right sidebar panels as extension: #10111
  • Enhancement - File sidebar in viewer and editor apps: #10111

Details

  • Bugfix - Filter out shares without display name: #9257

    In rare (legacy) cases, shares can exist without a displayName key, which caused
    trouble in the sharing sidebar section. This has been addressed by filtering out
    shares without a displayName.

    #9257
    #9504

  • Bugfix - PDF loading Safari: #9483

    Loading PDF files with Safari has been fixed.

    #9483
    #9565

  • Bugfix - Set or remove expiration date on...

Read more

8.0.0-beta.1

12 Dec 10:54
Compare
Choose a tag to compare
8.0.0-beta.1 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2023-12-12)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - PDF loading Safari: #9483
  • Bugfix - Set or remove expiration date on group share not possible: #9513
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Internal public link resolving: #9587
  • Bugfix - Audio- & video-loading on Shared with me page: #9593
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Tiles view accessibility: #9670
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Displaying full video in their dimensions: #10010
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Change - Theme handling: #2404
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104
  • Enhancement - Registering right sidebar panels as extension: #10111
  • Enhancement - File sidebar in viewer and editor apps: #10111

Details

  • Bugfix - Filter out shares without display name: #9257

    In rare (legacy) cases, shares can exist without a displayName key, which caused
    trouble in the sharing sidebar section. This has been addressed by filtering out
    shares without a displayName.

    #9257
    #9504

  • Bugfix - PDF loading Safari: #9483

    Loading PDF files with Safari has been fixed.

    #9483
    #9565

  • Bugfix - Set or remove expiration date on group share not possible: #9513

    We've fixed a bug where setting or removing an expiration on a group share
    wasn't possible.

    #8419
    #9513

  • Bugfix - Shared with action me...

Read more

8.0.0-alpha.13

08 Dec 11:02
Compare
Choose a tag to compare
8.0.0-alpha.13 Pre-release
Pre-release

Changelog for ownCloud Web 8.0.0 (2023-12-08)

Summary

  • Bugfix - Filter out shares without display name: #9257
  • Bugfix - PDF loading Safari: #9483
  • Bugfix - Set or remove expiration date on group share not possible: #9513
  • Bugfix - Shared with action menu label alignment: #9529
  • Bugfix - Internal public link resolving: #9587
  • Bugfix - Audio- & video-loading on Shared with me page: #9593
  • Bugfix - Add project space filter: #9649
  • Bugfix - Respect the open-in-new-tab-config for external apps: #9663
  • Bugfix - Tiles view accessibility: #9670
  • Bugfix - Special characters in username: #9694
  • Bugfix - Create .space folder if it does not exist: #9788
  • Bugfix - Link resolving into default app: #9799
  • Bugfix - Copy quicklinks for webkit navigator: #9832
  • Bugfix - Fix display path on resources: #9843
  • Bugfix - Upload space image: #9844
  • Bugfix - Duplicated file search request: #9861
  • Bugfix - Tags are no longer editable for a locked file: #9873
  • Bugfix - Prevent rendering of old/wrong set of resources in search list: #9881
  • Bugfix - Keep both folders conflict in same-named folders: #9915
  • Bugfix - Enabling "invite people" for password-protected folder/file: #9931
  • Bugfix - Icon extension mapping: #10031
  • Bugfix - Logout page after token expiry: #10065
  • Bugfix - Disable expiration date for alias link (internal): #10083
  • Bugfix - Allow empty search query in "in-here" search: #10092
  • Bugfix - Remove password buttons on input if disabled: #10096
  • Change - Remove deprecated code: #7338
  • Change - Keyword Query Language (KQL) search syntax: #9653
  • Change - DavProperties without namespace: #9709
  • Enhancement - Make login url configurable: #7317
  • Enhancement - Permission checks for shares and favorites: #7497
  • Enhancement - Scroll to newly created folder: #7600
  • Enhancement - Application unification: #9302
  • Enhancement - Show local loading spinner in sharing button: #9423
  • Enhancement - File versions tooltip with absolute date: #9441
  • Enhancement - Disabling extensions: #9441
  • Enhancement - Add SSE to get notifications instantly: #9451
  • Enhancement - Tags form improved: #9525
  • Enhancement - Don't display confirmation dialog on file deletion: #9527
  • Enhancement - Personal shares can be shown and hidden: #9531
  • Enhancement - Upload preparation time: #9552
  • Enhancement - Indicate processing state: #9561
  • Enhancement - Display locking information: #9566
  • Enhancement - Moving share's "set expiration date" function: #9584
  • Enhancement - Add keyboard navigation to spaces overview: #9625
  • Enhancement - Add batch actions to spaces: #9627
  • Enhancement - OcModal set buttons to same width: #9671
  • Enhancement - Add password policy compatibility: #9682
  • Enhancement - Password generator for public links: #9691
  • Enhancement - Added app banner for mobile devices: #9696
  • Enhancement - Unify sharing expiration date menu items: #9706
  • Enhancement - New WebDAV implementation in web-client: #9709
  • Enhancement - Show error if password is on a banned password list: #9727
  • Enhancement - Embed mode: #9768
  • Enhancement - Handle postprocessing state via Server Sent Events: #9771
  • Enhancement - Registering search providers as extension: #9794
  • Enhancement - Preview image presentation: #9806
  • Enhancement - Add editors to the application menu: #9809
  • Enhancement - Registering nav items as extension: #9814
  • Enhancement - Add new portal into runtime to include footer: #9815
  • Enhancement - Last modified filter chips: #9831
  • Enhancement - Provide vendor neutral file icons: #9847
  • Enhancement - Search query term linking: #9854
  • Enhancement - Add permission to delete link passwords when password is enforced: #9857
  • Enhancement - Remove settings icon from searchbar: #9858
  • Enhancement - Search tags filter chips style aligned: #9864
  • Enhancement - Enable dark theme on importer: #9884
  • Enhancement - Create shortcuts: #9890
  • Enhancement - Manage tags in details panel: #9905
  • Enhancement - Reorganize "New" menu: #9906
  • Enhancement - Add media type filter chip: #9912
  • Enhancement - Display error message for upload to locked folder: #9940
  • Enhancement - Support more audio formats with correct icon: #9966
  • Enhancement - Additional languages: #10007
  • Enhancement - Shared by filter: #10013
  • Enhancement - Share search filter: #10014
  • Enhancement - Duplicate space: #10024
  • Enhancement - Default link permission: #10037
  • Enhancement - Add explaining contextual helper to spaces overview: #10047
  • Enhancement - Folder tree creation during upload: #10057
  • Enhancement - Show webdav information in details view: #10062
  • Enhancement - Support mandatory filter while listing users: #10099
  • Enhancement - Registering quick actions as extension: #10102
  • Enhancement - Create link modal: #10104

Details

  • Bugfix - Filter out shares without display name: #9257

    In rare (legacy) cases, shares can exist without a displayName key, which caused
    trouble in the sharing sidebar section. This has been addressed by filtering out
    shares without a displayName.

    #9257
    #9504

  • Bugfix - PDF loading Safari: #9483

    Loading PDF files with Safari has been fixed.

    #9483
    #9565

  • Bugfix - Set or remove expiration date on group share not possible: #9513

    We've fixed a bug where setting or removing an expiration on a group share
    wasn't possible.

    #8419
    #9513

  • Bugfix - Shared with action menu label alignment: #9529

    Adjusted offset of alignment of label for shared with action menu option in
    Sidebar.

    #9323
    #9529

  • Bugfix - Internal public link resolving: #9587

    An issue where internally resolved public links instantly t...

Read more