Changelog for ownCloud Web 5.5.0 (2022-05-04)
Summary
- Bugfix - Apply text selection range for new files: #6756
- Bugfix - Do not load files from cache: #6447
- Bugfix - Indicate guest shares: #6813
- Bugfix - Password enforcement for public links: #6323
- Bugfix - Rename is clickable on mobile: #6767
- Bugfix - Rename a file in favorites list with same name but in different folder: #6804
- Bugfix - Resetting store on logout: #6694
- Bugfix - Spaces Contextmenu trigger id isn't valid: #6845
- Enhancement - Add OcContextualHelper: #6590
- Enhancement - Add show file extension toggle switch in file list settings: #6793
- Enhancement - Add un-share confirmation dialog: #6795
- Enhancement - Design polishing: #6781
- Enhancement - Introduce user-management app: #6673
- Enhancement - Make rename resource icon always visible instead just on hover: #6817
- Enhancement - Polish the upload overlay: #6837
- Enhancement - Redesign link sharing: #6749
- Enhancement - Replace deprecated String.prototype.substr(): #6718
- Enhancement - Resumable uploads: #6202
- Enhancement - Update ODS to v13.1.0-rc.5: #6749
Details
-
Bugfix - Apply text selection range for new files: #6756
We've fixed a bug, where the text selection range for a new file has not been applied only for the
file name but also for the file extension. This is now working as in the rename modal and just
selects the text for the file name. -
Bugfix - Do not load files from cache: #6447
When apps (i.e Drawio) tried to load a file, the browser caches the request. If the file was
modified somewhere else and the browser reads the file and its version from the cache, the
content shown to the user is outdated and saving any changes is impossible until the cache is
properly cleared. Thus we now ask the browser to never load files from its cache in apps.In order to achieve that we send a
Cache-Control
header along with requests. Unfortunately
currently released ownCloud 10 versions do not accept that header in cross site origin setups.
If you run ownCloud Web on a different domain than your ownCloud 10 instance, then you might need
to addCache-Control
to the list of allowed CORS headers:occ config:system:set cors.allowed-headers --type json --value '["cache-control"]'
Please make sure you don't override previous values!
-
Bugfix - Indicate guest shares: #6813
We've fixed a bug, where guest shares were not correctly indicated and shown as users shares at
the share panel in the right sidebar. -
Bugfix - Password enforcement for public links: #6323
Password enforcement for public links, which can be adjusted on a per-role basis, wasn't
properly reflected in the UI. We have made the necessary adjustments to only enforce passwords
for public links with the permissions that require a password according to the backend
settings. -
Bugfix - Rename is clickable on mobile: #6767
We've fixed a bug where the quick rename button was clickable, even so it wasn't visible.
-
Bugfix - Rename a file in favorites list with same name but in different folder: #6804
We've fixed a bug, where renaming a file in the favorites file list to a file with the same name but
located in a different folder was not possible, as the messageThe name "..." is already taken
appeared. -
Bugfix - Resetting store on logout: #6694
When logging out, only some parts of vuex store were reset to default. This caused bugs by
switching to another account that has some other/missing settings. For example, if the
account has no quota, the quota of the previously logged in account was shown. We have fixed this
by resetting the user store module on logout with reset function (vuex extensions library) and
creating an action to reset dynamic nav items. -
Bugfix - Spaces Contextmenu trigger id isn't valid: #6845
We've fixed a bug which resulted in spaces having an invalid trigger id for the contextmenu.
-
Enhancement - Add OcContextualHelper: #6590
We've added contextual helpers to provide more information based on the context
-
Enhancement - Add show file extension toggle switch in file list settings: #6793
We've added a toggle switch to the file list settings to turn off and on displaying file
extension.If this setting is turned off, the file extension won't be shown anymore in: * The name column
displayed in the files list * The right sidebar * The rename modal * The new file modal -
Enhancement - Add un-share confirmation dialog: #6795
We have implemented a confirmation dialog which pops up if the user clicks the "remove share"
button -
Enhancement - Design polishing: #6781
We've fixed the following issues to enhance UI/UX: - wording for new space button - wording for
invite space member submit button -
Enhancement - Introduce user-management app: #6673
We've added the app "user-management" with the following features: * Listing, creating,
deleting and editing users * Listing, creating, deleting and editing group * Universal search
in users and groups view -
Enhancement - Make rename resource icon always visible instead just on hover: #6817
-
Enhancement - Polish the upload overlay: #6837
We polished the overlay that pops up on the bottom right corner when uploading files:
- The header now shows the amount of successful uploads * Polished the overall design of the
overlay
- The header now shows the amount of successful uploads * Polished the overall design of the
-
Enhancement - Redesign link sharing: #6749
We have redesigned the public link list in the right sidebar. Links now can be edited in-line and
have a similiar look-and-feel to people and group shares. -
Enhancement - Replace deprecated String.prototype.substr(): #6718
We've replaced all occurrences of the deprecated String.prototype.substr() function with
String.prototype.slice() which works similarly but isn't deprecated. -
Enhancement - Resumable uploads: #6202
We've implemented Uppy as a library for handling uploads. This concludes the following
features and changes:- Resumable uploads when the backend supports the Tus-protocol - A nice looking overview for
all files that have been uploaded successfully or failed to upload - Navigation across Web
while uploads are in progress - Improved rendering of uploadProgress-visualization -
Removedvue2-dropzone
andvue-drag-drop
libraries
- Resumable uploads when the backend supports the Tus-protocol - A nice looking overview for
-
Enhancement - Update ODS to v13.1.0-rc.5: #6749
We updated the ownCloud Design System to version 13.1.0-rc.5. Please refer to the full
changelog in the ODS release (linked) for more details. Summary:- Enhancement - Add isFileExtensionDisplayed property:
owncloud/owncloud-design-system#2087 - Enhancement - OcModal
input type: owncloud/owncloud-design-system#2077 -
Enhancement - Add OcContextualHelper:
owncloud/owncloud-design-system#2064 - Enhancement - Add
selection range for OcModal and OcTextInput:
owncloud/owncloud-design-system#2061 - Enhancement - Replace
deprecated String.prototype.substr():
owncloud/owncloud-design-system#2059 - Enhancement -
Redesign OcGhostElement:
owncloud/owncloud-design-system#2049 - Enhancement - Export
package members: owncloud/owncloud-design-system#2048 -
Enhancement - Make OcResource inline-flex:
owncloud/owncloud-design-system#2041 - Bugfix - Disabled
textarea color contrast in darkmode:
owncloud/owncloud-design-system#2055 - Bugfix - OcTextInput:
Fix event handlers in loops:
owncloud/owncloud-design-system#2054
#6749
#6750
https://github.com/owncloud/owncloud-design-system/releases/tag/v13.1.0-rc.5 - Enhancement - Add isFileExtensionDisplayed property: