Changelog for ownCloud Web 2.0.2 (2021-03-08)
The following sections list the changes in ownCloud web 2.0.2 relevant to ownCloud admins and users.
- Change - Suppress redirect error during authorization: #4759
-
Change - Suppress redirect error during authorization: #4759
We've suppressed the error appearing in the console which warned about redirect happening after the oidc callback page. This error is being shown because after the oidc callback has successfully processed the authorization request we are redirecting to the
/
path which immediately does another redirect to the extension set as default one. In the context of Vue router, this is considered an error even though for us it is a valid use case. The error is only informative thus no issue is going to surface if we suppress it. This way we are getting closer to a clean console without errors.
Changelog for ownCloud Web 2.0.1 (2021-02-18)
The following sections list the changes in ownCloud web 2.0.1 relevant to ownCloud admins and users.
- Bugfix - Fix oc10 deployment after switch to rollup: #4757
- Bugfix - Fix showing white page with no message if the config could not be parsed: #4636
- Bugfix - Allow search in additional share info: #1656
-
Bugfix - Fix oc10 deployment after switch to rollup: #4757
Our first release of the oc10 app after the switch to rollup as bundler had a bug as it didn't reflect the new folder structure of the app in the allowed folders. This has been fixed by updating the allowed folders.
-
Bugfix - Fix showing white page with no message if the config could not be parsed: #4636
When the config file could not be parsed because of some mistake in the JSON, an empty page without any error message would be shown to the user. We've fixed that behavior and showing now an error page and details of the error in the console.
-
Bugfix - Allow search in additional share info: #1656
We fixed that searching for a potential sharee didn't look at the additional share info.
Changelog for ownCloud Web 2.0.0 (2021-02-16)
The following sections list the changes in ownCloud web 2.0.0 relevant to ownCloud admins and users.
-
Change - Switch from webpack to rollup: #4584
We replaced the bundler that we used so far (webpack) with rollup and reorganized the project structure. This hopefully makes the project structure easier to understand and thus help with onboarding. Another improvement is that the overall bundle size is much smaller now.
-
Change - Update ODS to 2.1.2: #4594
We updated the ownCloud Design System to 2.1.2. See the linked releases for details.
owncloud#4594 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.1.0 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.1.1 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.1.2
Changelog for ownCloud Web 1.0.1 (2021-01-08)
The following sections list the changes in ownCloud web 1.0.1 relevant to ownCloud admins and users.
- Bugfix - Fully clickable sidebar toggle button: #4130
- Bugfix - Allow server URL without trailing slash: #4536
- Change - Rename confirmation of copy action: #4590
- Change - Allow to disable previews in file lists: #4513
- Change - Add controllers for oc10 app deployment: #4537
-
Bugfix - Fully clickable sidebar toggle button: #4130
The button for hiding/showing the left sidebar (burger menu) was not fully clickable. We fixed this by removing a negative margin that pulled the rest of the topbar over the button.
-
Bugfix - Allow server URL without trailing slash: #4536
The server URL in the config was leading to issues resolving resources when it had no trailing slash. We are now checking if the trailing slash is missing and add it upon applying the config if needed.
-
Change - Rename confirmation of copy action: #4590
We've changed the label of the confirmation button in copy view. Instead of "Copy here", we used "Paste here".
-
Change - Allow to disable previews in file lists: #4513
We introduced a new config option to disable previews. To do so, set
"disablePreviews": true
to the config.json file. -
Change - Add controllers for oc10 app deployment: #4537
We added a config endpoint for when ownCloud Web is deployed as ownCloud 10 app. The config.json file must not be placed in the apps folder because it would cause the app integrity check to fail. In addition to the config endpoint we added a wildcard endpoint for serving static assets (js bundles, css, etc) of the ownCloud Web javascript application by their paths.
Changelog for ownCloud Web 1.0.0 (2020-12-16)
The following sections list the changes in ownCloud web 1.0.0 relevant to ownCloud admins and users.
- Bugfix - Do not use origin location to open editors: #4500
- Bugfix - Enable route checks for file actions: #986
- Bugfix - Fix role selection for public links: #4504
- Bugfix - Fix navigation rendering: #1031
- Bugfix - Hide modals on logout: #1064
- Enhancement - Add the option to decline accepted shares: #985
- Enhancement - Show status of accepted shares: #985
- Enhancement - Add oc10 app build artifact: #4427
- Enhancement - Extend default apps: #4493
- Enhancement - Add custom configuration to the draw.io app: #4337
- Enhancement - Add support for .vsdx files in the draw.io app: #4337
- Enhancement - Position of main dom node: #1052
- Enhancement - Wait for all required data: #884
- Enhancement - Update ODS to 2.0.3: #4488
- Enhancement - Update ODS to 2.0.4: #45001
-
Bugfix - Do not use origin location to open editors: #4500
When opening the editors view in a new tab, we were using the origin of location. This would break in case we have Web deployed to a different path than root e.g.
http://owncloud/apps/web
. -
Bugfix - Enable route checks for file actions: #986
The checks on which route an extension is enabled were not active (and inverted). We fixed this so that editors only appear on configured routes now.
-
Bugfix - Fix role selection for public links: #4504
The dropdown for the role selection in public links was not working anymore - the model didn't react to selections. Fixed it by bringing back a field that was accidentally removed.
-
Bugfix - Fix navigation rendering: #1031
- ADD_NAV_ITEM mutation now gets copied instead of referenced to trigger a state change. - applicationsList navItem item needs a copy instead of mutating the base item - check for route.path instead of route name in ADD_NAV_ITEM which can change over time
-
Bugfix - Hide modals on logout: #1064
Hide shown modal if user gets logged out while it's visible
-
Enhancement - Add the option to decline accepted shares: #985
Declined shares could be accepted retroactively but accepted shares could not be declined.
-
Enhancement - Show status of accepted shares: #985
The status column of accepted shares was blank.
-
Enhancement - Add oc10 app build artifact: #4427
We've added a build step to the release process which creates an ownCloud Web bundle which can be deployed as an app to ownCloud 10.
-
Enhancement - Extend default apps: #4493
When release tarballs are created, we are copying the config.json.dist into them as a default config. In that file were so far only "files" app enabled. This adds also "media viewer" and "draw-io" into apps enabled by default.
-
Enhancement - Add custom configuration to the draw.io app: #4337
Added mechanism to specify custom configuration instead of using a hardcoded one. The new settings include support for a custom draw.io server, enabling autosave and using a specific theme.
-
Enhancement - Add support for .vsdx files in the draw.io app: #4337
Added the support to open .vsdx files (Microsoft Visio Files) directly from OwnCloud, instead of creating a new diagram to import the file from local storage.
-
Enhancement - Position of main dom node: #1052
Div#main is now positioned relative, this way child apps are able to orientate their containers absolute to it.
owncloud/ocis#1052 owncloud#4489 owncloud/owncloud-design-system#1002
-
Enhancement - Wait for all required data: #884
Before this we rendered the ui no matter if every required data already is loaded or not. For example the current users language from the ocis settings service. One potential problem was the flickering in the ui or that the default language was shown before it switches to the settings language of current user. Instead we now show a loading screen and wait for everything that is required before rendering anything else.
-
Enhancement - Update ODS to 2.0.3: #4488
We've updated the ownCloud design system to version 2.0.3.
owncloud#4488 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.0.3
-
Enhancement - Update ODS to 2.0.4: #45001
We've updated the ownCloud design system to version 2.0.4.
https://github.com/owncloud/web/pull/45001 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.0.4
Changelog for ownCloud Web 0.29.0 (2020-12-07)
The following sections list the changes in ownCloud web 0.29.0 relevant to ownCloud admins and users.
- Bugfix - Public link glitches: #1028
- Change - Use labels to display share info: #4410
- Enhancement - Display full public and private links: #4410
-
Bugfix - Public link glitches: #1028
We fixed a couple of glitches with public links: - Creating a folder in a public link context was showing an error message although the folder was created correctly. This was happening because reloading the current folder didn't take the public link context into account. - For public links with editor role the batch actions at the top of the files list were not showing. The public links route didn't have a specific flag for showing the batch actions. - Quick actions for sharing are not available in public link contexts by design. The check printed an error in the javascript console though. We made this check silent now.
-
Change - Use labels to display share info: #4410
We've changed the way of displaying share information for public links and people. Every information is now displayed in its own label.
-
Enhancement - Display full public and private links: #4410
Below the names of public and private links we've added the respective full URL so that users can copy it without the copy to clipboard button.
Changelog for ownCloud Web 0.28.0 (2020-12-04)
The following sections list the changes in ownCloud web 0.28.0 relevant to ownCloud admins and users.
- Bugfix - Don't break file/folder names in text editor: #4391
- Change - Configurable home path: #4411
- Change - Show dedicated 404 page for invalid resource references: #4411
-
Bugfix - Don't break file/folder names in text editor: #4391
The label in the text editor that displays the path of the active file was removing the first character instead of trimming leading slashes. This might have lead to situations where actual characters were removed. We fixed this by only removing leading slahes instead of blindly removing the first character.
-
Change - Configurable home path: #4411
We introduced a config.json option
homeFolder
which let's you specify a default location when opening theAll files
view. Please refer to the documentation for details.owncloud#4411 https://owncloud.github.io/clients/web/getting-started/
-
Change - Show dedicated 404 page for invalid resource references: #4411
When visiting a public link or the
All files
page with an invalid resource in the URL (e.g. because it was deleted in the meantime) we now show a dedicated page which explains that the resource could not be found and offers a link to go back to the respective root (»All files« home location or the root of the public link). The breadcrumbs have been made available on invalid resources as well, so that those could be used for more precise navigation instead of jumping back to the root.
Changelog for ownCloud Web 0.27.0 (2020-11-24)
The following sections list the changes in ownCloud web 0.27.0 relevant to ownCloud admins and users.
- Bugfix - Unavailable extensions causing route duplication: #4382
- Change - Configurable default extension: #4382
- Change - Load extensions config: #4380
-
Bugfix - Unavailable extensions causing route duplication: #4382
There was an error in the extension loading handlers which caused routes to be loaded multiple times when extensions from the config.json were unavailable. We hardened the extension loading handlers to just skip those extensions.
-
Change - Configurable default extension: #4382
We introduced a config option in the config.json file which allows to configure the default extension for ownCloud Web. Any of the configured extension ids can be chosen as default extension. If none is provided, we fall back to the files extension.
-
Change - Load extensions config: #4380
We've started loading the config of extensions which can now be defined as an object in the
external_apps
in the config.json.
Changelog for ownCloud Web 0.26.0 (2020-11-23)
The following sections list the changes in ownCloud web 0.26.0 relevant to ownCloud admins and users.
- Bugfix - Fix edit public link view: #4374
- Bugfix - Icon mappings: #4357
- Enhancement - Use handler of file editors: #4324
- Enhancement - Add custom icons in the new file menu: #4375
- Enhancement - Theme redirect and access denied pages: #4373
- Enhancement - Update ODS to 2.0.0: #4373
-
Bugfix - Fix edit public link view: #4374
We've fixed the issue that edit public link view in the sidebar was overlapping with the versions accordion.
-
Bugfix - Icon mappings: #4357
The file type icon mappings contained some mappings to non-existing icon files. We fixed those.
-
Enhancement - Use handler of file editors: #4324
In case the extension is a file editor which defines a custom handler, we are triggering that handler instead of trying to open any assigned route.
-
Enhancement - Add custom icons in the new file menu: #4375
We've added an option to display own icon in the new file menu.
-
Enhancement - Theme redirect and access denied pages: #4373
We've adjusted the theme on OIDC redirect and access denied pages to use correct logo and background. We've also added those two values into the theming capabilities.
-
Enhancement - Update ODS to 2.0.0: #4373
We've updated the ownCloud design system to version 2.0.0.
owncloud#4373 https://github.com/owncloud/owncloud-design-system/releases/tag/v2.0.0
Changelog for ownCloud Web 0.25.0 (2020-11-16)
The following sections list the changes in ownCloud web 0.25.0 relevant to ownCloud admins and users.
- Bugfix - Make available file actions (more) aware of the page context: #4255
- Bugfix - Fix loginAsUser: #4297
- Change - File actions as accordion item in right sidebar: #4255
- Enhancement - Added support for OpenID Connect Dynamic Client Registration 1.0: #4286
-
Bugfix - Make available file actions (more) aware of the page context: #4255
The list of available file actions sometimes contained actions which should not be possible and sometimes was missing actions that should be possible. Most important examples are that copy/move should not be available on
shared with me
andshared with others
pages (but they were) and that the set of file actions from theAll files
page should also be available for the favorites page (but were not). -
Bugfix - Fix loginAsUser: #4297
LoginAsUser wasn't waiting until the loading finished. Added an additional check
-
Change - File actions as accordion item in right sidebar: #4255
We moved the menu items from
file actions
dropdown menu (the "three dots menu") as accordion item into the right sidebar and made it the default item to be opened when clicking the three dots. For the sake of consistency we now also made the right sidebar available for theDeleted files
page, where we offer the actions accordion item with aRestore
andDelete
action. -
Enhancement - Added support for OpenID Connect Dynamic Client Registration 1.0: #4286
OwnCloud Web can use the dynamic client registration protocol to exchange client id and client secret woth the IdP
Changelog for ownCloud Web 0.24.0 (2020-11-06)
The following sections list the changes in ownCloud web 0.24.0 relevant to ownCloud admins and users.
- Bugfix - Fix browse to files page in the ui tests: #4281
- Enhancement - Display collaborators type: #4203
-
Bugfix - Fix browse to files page in the ui tests: #4281
When the ui tests where executing the "the user has browsed to the files page" step then it wouldn't wait until the files were loaded.
-
Enhancement - Display collaborators type: #4203
We've added a new line into the collaborators autocomplete and list in the sidebar to display their type.
Changelog for ownCloud Web 0.23.0 (2020-10-30)
The following sections list the changes in ownCloud web 0.23.0 relevant to ownCloud admins and users.
- Change - App sidebar accordion instead of tabs: #4249
-
Change - App sidebar accordion instead of tabs: #4249
We replaced the tabs in the right app-sidebar with an accordion.
Changelog for ownCloud Web 0.22.0 (2020-10-26)
The following sections list the changes in ownCloud web 0.22.0 relevant to ownCloud admins and users.
- Change - Set icon for unknown file types to "file": #4237
- Change - Attach share permission to roles: #4216
- Change - Update ODS to v1.12.2: #4239
- Enhancement - Auto-close alerts: #4236
-
Change - Set icon for unknown file types to "file": #4237
We've changed the icon for unknown file types to "file".
owncloud#4237 https://owncloud.design/#/Design%20Tokens/Icon
-
Change - Attach share permission to roles: #4216
We've attached the share permission of collaborators to roles. There is no longer a share additional permission.
-
Change - Update ODS to v1.12.2: #4239
We updated ODS to v1.12.2. Please refer to the changelog of ODS.
owncloud#4239 https://github.com/owncloud/owncloud-design-system/releases/tag/v1.12.2
-
Enhancement - Auto-close alerts: #4236
We've added a property which enables alerts to be automatically closed. When enabling the auto-close, it will get assigned timeout of 5 seconds. Default timeout can be overwritten inside of the
autoClose
object.
Changelog for ownCloud Web 0.21.0 (2020-10-21)
The following sections list the changes in ownCloud web 0.21.0 relevant to ownCloud admins and users.
- Bugfix - OIDC logout: #266
- Bugfix - Do not display "empty folder" message when there is any content: #263
- Change - Sensible default apps in example configs: #4155
-
Bugfix - OIDC logout: #266
We've fixed the bug that the user sometimes got immediately logged back into the web UI after clicking on logout.
-
Bugfix - Do not display "empty folder" message when there is any content: #263
We've fixed that when some of the file/share lists were being loaded, the "empty folder" message sometimes briefly appeared even though the list wasn't empty.
-
Change - Sensible default apps in example configs: #4155
We adapted the example configs for oc10 and owncloud so that the files and media-viewer apps are enabled by default.
Changelog for ownCloud Web 0.20.0 (2020-10-08)
The following sections list the changes in ownCloud web 0.20.0 relevant to ownCloud admins and users.
- Change - Enable autoredirect to the IdP: #4138
-
Change - Enable autoredirect to the IdP: #4138
We've added a key into the theme to enable autoredirect to the IdP when entering ocis-web instead of displaying the login page first. The default value is set to true.
Changelog for ownCloud Web 0.19.0 (2020-10-06)
The following sections list the changes in ownCloud web 0.19.0 relevant to ownCloud admins and users.
- Change - Customizable menu association: #4133
-
Change - Customizable menu association: #4133
We now allow the redirect navItems and links into the user menu. This can be done by simply assigning the
"menu": "user"
to the respective navItem. It works for both extensions and external links (applications
key in config.json).
Changelog for ownCloud Web 0.18.0 (2020-10-05)
The following sections list the changes in ownCloud web 0.18.0 relevant to ownCloud admins and users.
- Change - Change sharing wording: #4120
- Enhancement - Update owncloud-design-system to v1.12.1: #4120
-
Change - Change sharing wording: #4120
Renamed "Share" action to "Add people" and header column in the shared with list from "People" to "Shared with".
-
Enhancement - Update owncloud-design-system to v1.12.1: #4120
We've updated our design system to version 1.12.1. To see all new changes which this update brings, please check the changelog below.
owncloud#4120 https://github.com/owncloud/owncloud-design-system/releases/tag/v1.12.1
Changelog for ownCloud Web 0.17.0 (2020-09-25)
The following sections list the changes in ownCloud web 0.17.0 relevant to ownCloud admins and users.
- Bugfix - Added missing tooltips: #4081
- Bugfix - Make file previews properly fit: #232
- Bugfix - Adjust behavior of public link password field: #4077
- Change - Adjustments to roles selection dropdown: #4080
- Change - Rename "trash bin" to "deleted files": #4071
- Change - Add default action to click on file name: #234
- Change - Improve external links in app switcher: #4092
- Change - More descriptive loading state: #4099
- Change - Moved bottom actions menu into actions dropdown: #234
- Change - Renamed collaborators to people: #4070
- Change - Update ODS to 1.11.0: #4086
- Change - Shortened button label for creating public links: #4072
- Enhancement - Remember public link password on page refresh: #4083
-
Bugfix - Added missing tooltips: #4081
We've added tooltips for the following:
- top bar: notifications button and application switcher - file list: share indicators and quick actions - sharing in sidebar: action icons like edit, delete, copy
-
Bugfix - Make file previews properly fit: #232
We've fixed the file preview to prevent overflowing vertically and also added CSS property to make sure the ratio is preserved
-
Bugfix - Adjust behavior of public link password field: #4077
The UX of the public link password field has been improved. The field is focussed automatically and the enter key submits the password. Also, in case of wrong password, an error message is now displayed.
-
Change - Adjustments to roles selection dropdown: #4080
The role description text from the roles selection button has been removed, but is still visible when opening the dropdown. The dropdown now also has a chevron icon to make it clearer that it is a dropdown.
-
Change - Rename "trash bin" to "deleted files": #4071
We've renamed the "trash bin" to the more appropriate wording "deleted files".
-
Change - Add default action to click on file name: #234
When clicking on the file name in the files list, a default action is triggered which opens the first available file editor or viewer. If no file editor or viewer is available, the default action falls back to download.
-
Change - Improve external links in app switcher: #4092
We have added an option to set the link target in external application links (defaults to
_blank
). The app switcher now shows all native extensions first and items based on application links last. -
Change - More descriptive loading state: #4099
When browsing the different variations of the files list we removed the loader component at the top in favor of a spinner in the center of the viewport. The spinner has one line of text which describes what kind of data is being loaded.
-
Change - Moved bottom actions menu into actions dropdown: #234
We've removed the bottom file actions menu and moved all actions into the actions dropdown in the files list.
-
Change - Renamed collaborators to people: #4070
All visible occurrences of "collaborator" or "collaborators" have been replaced by "person" or "people" respectively. Additionally, the action "Add Collaborator" was changed to "Share".
-
Change - Update ODS to 1.11.0: #4086
We updated owncloud design system (ODS) to 1.11.0. This brings some features and required some changes: - Buttons: - require to be placed in a grid or with uk-flex for side by side positioning,
- don't have an icon property anymore, - have a slot so that content of the button can be just
anything - placement of the content in the button can be modified with new props
justify-content
andgap
- new icons, which are used in the sidebar and for quick actions - sidebar has a property for hiding the navigation. It doesn't have internal logic anymore for hiding the navigation automatically.
- don't have an icon property anymore, - have a slot so that content of the button can be just
anything - placement of the content in the button can be modified with new props
-
Change - Shortened button label for creating public links: #4072
The label of the button for creating public links in the links panel has been shortened to "Public link" instead of "Add public link" since the plus sign already implies adding. An Aria label has been added for clarification when using screen readers.
-
Enhancement - Remember public link password on page refresh: #4083
When refreshing the page in the file list of a public link share, the user doesn't need to enter the password again. This only applies for the current page and the password is forgotten by the browser again upon closing or switching to another site.
Changelog for ownCloud Web 0.16.0 (2020-08-24)
The following sections list the changes in ownCloud web 0.16.0 relevant to ownCloud admins and users.
- Change - Add default external apps for ocis: #3967
- Enhancement - Add info about number of selected items and their size: #122
-
Change - Add default external apps for ocis: #3967
We are enabling the settings-ui and accounts-ui by default now for ocis.
-
Enhancement - Add info about number of selected items and their size: #122
We've added information about the number of selected items and their size above the files list next to batch actions.
Changelog for ownCloud Web 0.15.0 (2020-08-19)
The following sections list the changes in ownCloud web 0.15.0 relevant to ownCloud admins and users.
- Change - Adapt to new ocis-settings data model: #3806
-
Change - Adapt to new ocis-settings data model: #3806
Ocis-settings introduced UUIDs and less verbose endpoint and message type names. This PR adjusts web accordingly.
owncloud#3806 owncloud/owncloud-sdk#520 owncloud/ocis-settings#46
Changelog for ownCloud Web 0.14.0 (2020-08-17)
The following sections list the changes in ownCloud web 0.14.0 relevant to ownCloud admins and users.
- Bugfix - Fix display name when using oCIS as backend: #3938
- Change - Differentiate between user-id and username: #440
- Change - Provide option for hiding the search bar: #116
- Change - Move information about current folder below the files list: #120
- Change - Use pre-signed URLs in media viewer: #3803
- Change - Move quota indication to the left sidebar: #121
- Change - Move docs about hugo usage to ocis: #3828
- Change - Get rid of static "Shared with:" label: #123
- Change - Large file downloads support with URL signing: #3797
- Enhancement - Enable playing videos in media viewer: #3803
-
Bugfix - Fix display name when using oCIS as backend: #3938
We've fixed the display name when running ocis-web with oCIS as backend. The display name is now again displayed in the top bar and in the account page.
-
Change - Differentiate between user-id and username: #440
With oCIS user-id and username are not the same as is the case in ownCloud 10. We've started differentiating between them to correctly display all information in the accounts page. If the username is not available (oC10), we fall back to using user-id as the username.
-
Change - Provide option for hiding the search bar: #116
We introduced a new
options.hideSearchBar
config variable which can be used to disable the search bar entirely. -
Change - Move information about current folder below the files list: #120
We've moved the information about current folder directly below the files list. Previously this information was always displayed on the bottom of the screen.
-
Change - Use pre-signed URLs in media viewer: #3803
We've started using pre-signed URLs if supported in media viewer to display images instead of fetching them.
-
Change - Move quota indication to the left sidebar: #121
We've moved the quota indication from the bottom of the files list to the footer of the left sidebar.
-
Change - Move docs about hugo usage to ocis: #3828
Since our documentation about how to work with hugo (for documentation) is a cross-extension topic, we have moved it to our main ocis docs.
-
Change - Get rid of static "Shared with:" label: #123
We removed the static "Shared with:" text label in the indicator row of file items. From now on, if a file item has no indicators, it will fall back to the one-row layout (resource name vertically centered).
-
Change - Large file downloads support with URL signing: #3797
When the backend supports URL signing we now download with a signed url instead of downloading as BLOB.
-
Enhancement - Enable playing videos in media viewer: #3803
We've added a capability to the media viewer extension to play videos.
Changelog for ownCloud Web 0.13.0 (2020-07-17)
The following sections list the changes in ownCloud web 0.13.0 relevant to ownCloud admins and users.
- Bugfix - Fix translations string: #3766
- Enhancement - Add dev docs for releases: #3186
- Enhancement - Enable changing sidebar logo via theming: #3782
-
Bugfix - Fix translations string: #3766
Allow better translations of various strings.
-
Enhancement - Add dev docs for releases: #3186
We added documentation on the steps involved to release web.
-
Enhancement - Enable changing sidebar logo via theming: #3782
We've added a key into the theme which enables using different logo in the sidebar.
Changelog for ownCloud Web 0.12.0 (2020-07-10)
The following sections list the changes in ownCloud web 0.12.0 relevant to ownCloud admins and users.
- Bugfix - Fix navigation to the root folder from location picker: #3756
- Change - Don't fallback to appId in case the route of file action is not defined: #69
- Change - Do not display outline when the files list is focused: #3747
- Change - No file drop if upload is not allowed or no space is left: #3677
- Enhancement - Add ability to copy files and folders into a different location: #102
- Enhancement - Add favorites capabilities: #354
- Enhancement - Add ability to move files and folders into a different location: #101
-
Bugfix - Fix navigation to the root folder from location picker: #3756
The target location in the location picker was appending a whitespace when trying to go to root folder. This resulted in an error when trying to load such folder. We've removed the whitespace to fix the navigation.
-
Change - Don't fallback to appId in case the route of file action is not defined: #69
When opening a file in a editor or a viewer the path was falling back to an appId. This made it impossible to navigate via the file actions into an app which doesn't have duplicate appId in the route. We've stopped falling back to this value and in case that the route of the file action is not defined, we use the root path of the app.
-
Change - Do not display outline when the files list is focused: #3747
The files list was displaying outline when it received focus after a click. Since the focus is meant only programatically, the outline was not supposed to be displayed.
-
Change - No file drop if upload is not allowed or no space is left: #3677
-
Enhancement - Add ability to copy files and folders into a different location: #102
We've added copy action to the files list. The copy action is executed via a new page called location picker.
-
Enhancement - Add favorites capabilities: #354
We've added a check of favorites capabilities to enable disabling of favorites list and favorite action.
-
Enhancement - Add ability to move files and folders into a different location: #101
We've added move action to the files list which enables move of resources into different locations. The move operation is executed in a new page called Location picker.
Changelog for ownCloud Web 0.11.2 (2020-07-03)
The following sections list the changes in ownCloud web 0.11.2 relevant to ownCloud admins and users.
- Bugfix - Remove anchor on last breadcrumb segment: #3722
-
Bugfix - Remove anchor on last breadcrumb segment: #3722
The last segment of the breadcrumb was clickable, while it's expected that nothing happens (as it is the current path). We fixed that, the last breadcrumb element is not clickable anymore.
Changelog for ownCloud Web 0.11.1 (2020-06-29)
The following sections list the changes in ownCloud web 0.11.1 relevant to ownCloud admins and users.
- Bugfix - Public upload now keeps modified time: #3686
- Bugfix - Do not expand the width of resource name over it's content: #3685
- Change - Use "Shared with" as a label for indicators: #3688
- Enhancement - Update owncloud-sdk to 1.0.0-663: #3690
-
Bugfix - Public upload now keeps modified time: #3686
The public upload for public links now keeps the modification time of local files. This aligns the behavior with non-public file upload.
-
Bugfix - Do not expand the width of resource name over it's content: #3685
The width of the resource name in the files list was expanded more than the actual width of it's content. This caused that when clicked outside of the resource name, the action to navigate or open the resource has been triggered instead of opening the sidebar. We've fixed the width that it is now equal to the width of the content.
-
Change - Use "Shared with" as a label for indicators: #3688
Instead of "State" we've started using the "Shared with" as a label for the indicators in the files list. This is only intermediate solution because the indicators can be extended by other indicators which don't have to be related to sharing.
-
Enhancement - Update owncloud-sdk to 1.0.0-663: #3690
We've updated the owncloud-sdk to version 1.0.0-663. This version stops rejecting sharing promises if the passed shareID is not an integer.
Changelog for ownCloud Web 0.11.0 (2020-06-26)
The following sections list the changes in ownCloud web 0.11.0 relevant to ownCloud admins and users.
- Bugfix - Fix file type icons for uppercase file extensions: #3670
- Bugfix - Fix empty settings values: #3602
- Bugfix - Set default permissions to public link quick action: #3675
- Bugfix - Set empty object when resetting current sidebar tab: #3676
- Bugfix - Set expiration date only if it is supported: #3674
- Bugfix - Add missing question mark to delete confirmation dialog in trashbin: #3566
- Change - Bring new modal component: #2263
- Change - Move create new button: #3622
- Change - Move status indicators under the resource name: #3617
- Change - Remove sidebar quickAccess: #80
- Change - Rework account dropdown: #82
- Change - Unite files list status indicators: #3567
- Change - Use correct logo: #786
- Enhancement - Send mtime with uploads: #2969
- Enhancement - Use TUS settings from capabilities: #177
- Enhancement - Add collaborators quick action: #3573
- Enhancement - Dynamically loaded nav items: #3497
- Enhancement - Load and display quick actions: #3573
-
Bugfix - Fix file type icons for uppercase file extensions: #3670
-
Bugfix - Fix empty settings values: #3602
We've updated owncloud-sdk to version 1.0.0-638 which makes sure that an empty array gets returned whenever there are no settings values for the authenticated user. Previously having no settings values broke our detection of whether settings values finished loading.
-
Bugfix - Set default permissions to public link quick action: #3675
We've set a default permissions when creating a new public link via the quick actions. The permissions are set to
1
. -
Bugfix - Set empty object when resetting current sidebar tab: #3676
We've changed the argument from
null
to an empty object when resetting the current tab of the sidebar. -
Bugfix - Set expiration date only if it is supported: #3674
We've stopped setting expiration date in collaborators panel if it is not supported.
-
Bugfix - Add missing question mark to delete confirmation dialog in trashbin: #3566
We've added missing question mark to the delete confirmation dialog inside of the trashbin.
-
Change - Bring new modal component: #2263
We've updated our modal component with a new one coming from ODS.
-
Change - Move create new button: #3622
We've moved the create new button in the files app bar to the left directly next to breadcrumbs.
-
Change - Move status indicators under the resource name: #3617
We've moved the sharing status indicators from an own column in the files list to a second row under the resource name.
-
Change - Remove sidebar quickAccess: #80
We have removed the sidebar quickAccess extension point. To create an quick access to the sidebar, we need to use the quickActions extension point.
-
Change - Rework account dropdown: #82
We've removed user avatar, user email and version from the account dropdown. The log out button has been changed into a link. All links in account dropdown are now inside of a list.
-
Change - Unite files list status indicators: #3567
We've merged direct and indirect status indicators in the files list. With this change, we focus on the important information of the indicator (e.g. resource is shared). Any additional information can then be displayed in the related tab of the sidebar.
-
Change - Use correct logo: #786
We've changed the ownCloud logo which is used in the default theme. The previous logo had an incorrect font-weight.
-
Enhancement - Send mtime with uploads: #2969
When uploading a file, the modification time is now sent along. This means that the uploaded file will have the same modification time like the one it had on disk. This aligns the behavior with the desktop client which also keeps the mtime.
-
Enhancement - Use TUS settings from capabilities: #177
The TUS settings advertise the maximum chunk size, so we now use the smallest chunk size from the one configured in config.json and the one from the capabilities.
If the capabilities report that one should use the X-HTTP-Override-Method header, the upload will now use a POST request for uploads with that header set instead of PATCH.
-
Enhancement - Add collaborators quick action: #3573
We've added a new quick action which opens the new collaborators tab in the files list sidebar.
-
Enhancement - Dynamically loaded nav items: #3497
We have moved the navItems from application configuration into a store module. We extended it's functionality by introducing statically and dynamically loaded navItems. This way navItems can be loaded based on extension data, as soon as the extension becomes active. Please note that having at least one static navItem (coming from the appInfo object of an extension) is still a requirement for the extension appearing in the app switcher.
-
Enhancement - Load and display quick actions: #3573
We've added an extension point into files apps for quick actions. By creating and exporting an object called quickActions, developers can define an action which will be then displayed in the files list.
Changelog for ownCloud Web 0.10.0 (2020-05-26)
The following sections list the changes in ownCloud web 0.10.0 relevant to ownCloud admins and users.
- Bugfix - Fix share indicators click to open the correct panel: #3324
- Bugfix - Set server config to ocis proxy in example config file: #3454
- Change - Removed favorite button from file list and added it in the sidebar: #1987
- Change - Make settings available in web: #3484
- Change - Use language setting: #3484
- Change - Permanently visible branded left navigation sidebar: #3395
-
Bugfix - Fix share indicators click to open the correct panel: #3324
When clicking on a share indicator inside a file list row, the correct share panel will now be displayed.
-
Bugfix - Set server config to ocis proxy in example config file: #3454
We fixed the ocis example config to point to the default oCIS Proxy address instead of the default Web service address.
-
Change - Removed favorite button from file list and added it in the sidebar: #1987
We've removed the favorite star button in the file list and added instead a functionality to the before non-working star button in the file's sidebar. We also added a new action in the file action dropdown menu which allows you to toggle the favorite status of your file.
-
Change - Make settings available in web: #3484
We upgraded to a new owncloud-sdk version which provides loading settings from the settings service, if available. The settings values are available throughout web and all extensions.
-
Change - Use language setting: #3484
We've changed web to make use of the language the authenticated user has chosen in the settings.
-
Change - Permanently visible branded left navigation sidebar: #3395
We've made left navigation sidebar permanently visible and moved branding (logo and brand color) into it.
Changelog for ownCloud Web 0.9.0 (2020-04-27)
The following sections list the changes in ownCloud web 0.9.0 relevant to ownCloud admins and users.
- Bugfix - Remove deleted files from search result: #3266
- Bugfix - Show token string if link name is empty in FileLinkSidebar: #3297
- Bugfix - Remove duplicate error display in input prompt: #3342
- Bugfix - Fix translation message extraction from plain javascript files: #3346
- Bugfix - Fix name of selected extension on broken apps: #3376
- Change - Update owncloud-sdk: #3369
- Enhancement - Add chunked upload with tus-js-client: #67
-
Bugfix - Remove deleted files from search result: #3266
Deleted file has been removed from filesSearched state by adding a new mutation. Also, filter condition in remove file mutations has been changed from object reference to unique file id.
-
Bugfix - Show token string if link name is empty in FileLinkSidebar: #3297
Owncloud-js-client was parsing empty link name xml attribute as empty object. The empty object was changed with an empty string. Also, FileLinkSidebar behaviour fixed by showing token as name for the link shares without a name.
-
Bugfix - Remove duplicate error display in input prompt: #3342
Validation errors within the input prompt dialog were showing up twice. One of them is a leftover from the old version. We've fixed the dialog by removing the old validation error type.
-
Bugfix - Fix translation message extraction from plain javascript files: #3346
-
Bugfix - Fix name of selected extension on broken apps: #3376
With the edge case of a broken app in config.json, the top bar is broken, because appInfo can't be loaded. We made ocis-web more robust by just showing the extension id in the top bar when the appInfo is not available.
-
Change - Update owncloud-sdk: #3369
Updated owncloud-sdk to v1.0.0-604
-
Enhancement - Add chunked upload with tus-js-client: #67
Whenever the backend server advertises TUS support, uploading files will use TUS as well for uploading, which makes it possible to resume failed uploads. It is also possible to optionally set a chunk size by setting a numeric value for "uploadChunkSize" in bytes in config.json.
Changelog for ownCloud Web 0.8.0 (2020-04-14)
The following sections list the changes in ownCloud web 0.8.0 relevant to ownCloud admins and users.
- Bugfix - Display errors when saving collaborator fails: #3176
- Bugfix - Fix media-viewer on private pages: #3288
- Bugfix - Fix oidc redirect after logout: #3285
- Bugfix - Update owncloud-sdk 1.0.0-544: #3292
- Bugfix - Set a higher timeout for requirejs: #3293
- Enhancement - Visual improvement to errors in input prompts: #1906
- Enhancement - Add state to app urls: #3294
-
Bugfix - Display errors when saving collaborator fails: #3176
When saving a collaborator has failed, the UI was still behaving like it saved everything successfully. This has been fixed by displaying the errors at the top of the collaborator editing form and staying in the editing view.
-
Bugfix - Fix media-viewer on private pages: #3288
Media-viewer incorrectly assumed it was on a public page when opened from a private page.
-
Bugfix - Fix oidc redirect after logout: #3285
After the logout the idp sent a redirect to
<redirectUri>?state=
which was then redirected to<redirectUri>?state=#/login
by web. Having the query parameters in between broke the application. To prevent the whole login url<baseUrl>#/login
should be sent then the query parameter will be appended to the end. -
Bugfix - Update owncloud-sdk 1.0.0-544: #3292
This sdk version is much smaller in size
-
Bugfix - Set a higher timeout for requirejs: #3293
In slow networks requirejs requests can timeout. The timeout is now set to a higher value (200 secs)
-
Enhancement - Visual improvement to errors in input prompts: #1906
We've adjusted the input prompts to show a visually less prominent text below the input field. Also, error messages now appear with a small delay, so that those happening during typing get ignored (e.g. trailing whitespace is not allowed in folder names and previously caused an error to show on every typed blank).
-
Enhancement - Add state to app urls: #3294
Currently opened file can be added to app routes so reloading the page can be made to work For now it's only implemented in mediaviewer
Changelog for ownCloud Web 0.7.0 (2020-03-30)
The following sections list the changes in ownCloud web 0.7.0 relevant to ownCloud admins and users.
- Bugfix - Fix logout when no tokens are known anymore: #2961
- Bugfix - Files list status indicators are now appearing without any delay: #2973
- Bugfix - Fix file actions menu when using OCIS backend: #3214
- Bugfix - Do not remove first character of etag: #3274
- Change - Don't import whole core-js bundle directly into core: #3173
- Enhancement - Added thumbnails in file list: #276
-
Bugfix - Fix logout when no tokens are known anymore: #2961
Single Log Out requires the id_token and in cases where this token is no longer known calling the SLO endpoint will result in an error.
This has been fixed.
-
Bugfix - Files list status indicators are now appearing without any delay: #2973
We've stopped loading file list status indicators asynchronously to prevent them from appearing delayed. They appear now at the same time as the file list.
-
Bugfix - Fix file actions menu when using OCIS backend: #3214
When using OCIS as backend, the ids of resources is a string instead of integer. So we cannot embed those into DOM node ids and need to use another alternative. This fix introduces a unique viewId which is only there to provide uniqueness across the current list and should not be used for any data related operation.
This fixes the file actions menu when using OCIS as backend.
owncloud#3214 https://github.com/owncloud/ocis-web/issues/51
-
Bugfix - Do not remove first character of etag: #3274
When stripping away double quotes in etag of the file thumbnails, we accidentally removed first character as well. We've stopped removing that character.
-
Change - Don't import whole core-js bundle directly into core: #3173
We've stopped importing whole core-js bundle directly into core and instead load only used parts with babel.
-
Enhancement - Added thumbnails in file list: #276
Thumbnails are now displayed in the file list for known file types. When no thumbnail was returned, fall back to the file type icon.
Changelog for ownCloud Web 0.6.0 (2020-03-16)
The following sections list the changes in ownCloud web 0.6.0 relevant to ownCloud admins and users.
- Bugfix - Indirect share info now visible in favorite and other file lists: #3040
- Bugfix - Fixed layout of file lists: #3100
- Bugfix - Changed share icons to collaborators icons: #3116
- Bugfix - Sorted collaborators column, deduplicate public entry: #3137
- Bugfix - Use end of the day in expiration date: #3158
- Change - Moved collaborators additional info on own row and removed type row: #3130
- Change - New sort order for collaborators and public links: #3136
- Change - Stop support for deployment of Web as an ownCloud app: #3162
- Change - Align columns in file lists to the right: #3036
- Enhancement - Expiration date for collaborators: #2543
-
Bugfix - Indirect share info now visible in favorite and other file lists: #3040
When open the share panel of other flat file lists like the favorites, the collaborators list and link list are now showing the same entries like in the "All files" list, which includes indirect shares (via) that were previously missing.
-
Bugfix - Fixed layout of file lists: #3100
A recent library update in ODS for the recycle scroller seem to have changed the logic or calculation of the height.
This fix accomodates for that change and restores the row height to a correct value.
The shared file lists are now more responsive, the collaborators/owner and share time columns are now hidden on small screens.
-
Bugfix - Changed share icons to collaborators icons: #3116
Adjust icon in files app navigation bar and also in the file actions dropdown to use the group icon.
-
Bugfix - Sorted collaborators column, deduplicate public entry: #3137
The collaborators column that appears in the "shared with others" section are now sorted: first by share type (user, group, link, remote) and then by display name using natural sort. Additionally, if there is more than one public link for the resource, the text "Public" only appears once in the collaborators column.
-
Bugfix - Use end of the day in expiration date: #3158
We've changed the expiration date field in the collaborators list to the end of the day.
-
Change - Moved collaborators additional info on own row and removed type row: #3130
We've moved collaborators additional info on own row under the name of collaborator and removed collaborator type row.
-
Change - New sort order for collaborators and public links: #3136
We've changed the sort order for collaborators and public links. Collaborators are now sorted by: collaborator type, is collaborator direct, display name and creation date. Public links are now sorted by: is public link direct, display name and creation date.
-
Change - Stop support for deployment of Web as an ownCloud app: #3162
We've stopped supporting deployment of Web as an ownCloud app. In the release is no longer available Web ownCloud 10 app package.
-
Change - Align columns in file lists to the right: #3036
We've aligned columns in all file lists to the right so it is easier for the user to compare them.
-
Enhancement - Expiration date for collaborators: #2543
We've added an expiration date for collaborators. Users can choose an expiration date for users and groups. After the date is reached the collaborator is automatically removed. Admins can set default expiration date or enforce it.
Changelog for ownCloud Web 0.5.0 (2020-03-02)
The following sections list the changes in ownCloud web 0.5.0 relevant to ownCloud admins and users.
- Bugfix - Various fixes for files app in responsive mode: #2998
- Bugfix - Responsive buttons layout in app bar when multiple files are selected: #3011
- Bugfix - Fix accessible labels that said $gettext: #3039
- Bugfix - Fix console warning about search query in public page: #3041
- Bugfix - Moved resharers to the top of owner collaborator entry: #3850
- Change - Moved sidebar navigation under top bar: #3077
- Enhancement - Added ability to click file list columns for sorting: #1854
- Enhancement - Improved collaborators column in shared file lists: #2924
- Enhancement - Display decimals in resource size column only for MBs or higher: #2986
- Enhancement - Different message in overwrite dialog when versioning is enabled: #3047
- Enhancement - Current user entry in collaborators list in sidebar: #3808
-
Bugfix - Various fixes for files app in responsive mode: #2998
Fixed properly alignment of header columns with the body of the files table which stays even after resizing. Removed the column label for the actions column as it looks nicer.
-
Bugfix - Responsive buttons layout in app bar when multiple files are selected: #3011
We've fixed the responsive buttons layout in files app bar when multiple files are selected where bulk actions where overlapping and height of the buttons was increased.
-
Bugfix - Fix accessible labels that said $gettext: #3039
Fixed three accessible aria labels that were saying "$gettext" instead of their actual translated text.
-
Bugfix - Fix console warning about search query in public page: #3041
Fixed console warning about the search query attribute not being available whenever the search fields are not visible, for example when accessing a public link page.
-
Bugfix - Moved resharers to the top of owner collaborator entry: #3850
For received shares, the resharers user display names are now shown on top of the owner entry in the collaborators list, with a reshare icon, instead of having their own entry in the collaborators list.
This makes the reshare situation more clear and removes the ambiguity about the formerly displayed "resharer" role which doesn't exist.
-
Change - Moved sidebar navigation under top bar: #3077
We've adjusted the position of the sidebar navigation to be under the top bar.
-
Enhancement - Added ability to click file list columns for sorting: #1854
The sorting mode of the file list can now be changed by clicking on the column headers.
-
Enhancement - Improved collaborators column in shared file lists: #2924
Fixed issue with the collaborators column where only one was being displayed in the "shared with you" file list. This is done by properly aggregating all share entries under each file entry for the list, which now also includes group shares and link shares.
Improved the look of the collaborators by adding avatars and icons there for the shares in the collaborators and owner columns.
-
Enhancement - Display decimals in resource size column only for MBs or higher: #2986
We've stopped displaying decimals in resource size column for sizes smaller than 1 MB. We've also started displaying only one decimal.
-
Enhancement - Different message in overwrite dialog when versioning is enabled: #3047
We've added a new message in the overwrite dialog when versioning is enabled. This message is intended to make it clear that the resource won't be overwritten but a new version of it will be created.
-
Enhancement - Current user entry in collaborators list in sidebar: #3808
We've added a new entry into the collaborators list in sidebar which contains current user.
Changelog for ownCloud Web 0.4.0 (2020-02-14)
The following sections list the changes in ownCloud web 0.4.0 relevant to ownCloud admins and users.
- Bugfix - Fix collaborator selection on new collaborator shares: #1186
- Bugfix - Prevent loader in sidebar on add/remove: #2937
- Bugfix - Fix issue with translate function for pending shares: #3012
- Bugfix - Properly manage escaping of all translations: #3032
- Change - Improve UI/UX of collaborator forms: #1186
- Change - Display only items for current extension in sidebar menu: #2746
- Change - Removed filter button in files list header: #2971
- Change - File actions now always behind three dots button: #2974
- Change - Improve ownCloud Design System (ODS): #2989
- Change - Improve visual appearance of upload progress: #3742
- Enhancement - Add empty folder message in file list views: #1910
- Enhancement - Fixed header for files tables: #1952
-
Bugfix - Fix collaborator selection on new collaborator shares: #1186
When typing text into the search box for new collaborators, selecting a user and a group with identical names was not possible. This was due to the fact that when one (group or user) got selected, the other was excluded because of a matching name. Fixed by including the share type (group or user) in matching.
-
Bugfix - Prevent loader in sidebar on add/remove: #2937
When adding or removing a public link or collaborator, the respective list view sidebar panels briefly hid the panel and showed a loader instead. The UI is supposed to show a visual transition of a new list item into the list on adding, as well as a visual transition out of the list on deletion. This is fixed now by not triggering the loading state on add and remove actions anymore. A loading state is only meant to appear when the user navigates to the shares of another file/folder.
-
Bugfix - Fix issue with translate function for pending shares: #3012
The pending shares was wrongly passing in a translation function, which caused translations to be missing in the error message but also it broke the general translation sync process with Transifex. Thanks to this change the translations will be up to date again.
-
Bugfix - Properly manage escaping of all translations: #3032
We've stopped escaping translations which contained resource names or user names because they can contain special characters which were then not properly displayed. We've done this only with translations which are using mustache syntax which does escaping on its own so we don't introduce poteintial XSS vulnerability. For all other translations, we've explicitly set the escaping.
-
Change - Improve UI/UX of collaborator forms: #1186
Applied several UI/UX improvements to the collaborator forms (adding and editing). - Showing avatars for selected collaborators on a new share and fixed styling/layouting of said collaborators in the list. - Added sensible margins on text about missing permissions for re-sharing in the sharing sidebar. - Fixed alignment of displayed collaborator in editing view for collaborators. - Removed separators from the forms that were cluttering the view. - Moved role description on role selection (links and collaborators) into the form element. Not shown below the form element anymore.
-
Change - Display only items for current extension in sidebar menu: #2746
We've filtered out nav items in the sidebar menu. Now only items for current extension will be displayed. In case the extension has only one nav item, the sidebar menu is hidden and instead of menu button is displayed the name of extension.
-
Change - Removed filter button in files list header: #2971
Removed the confusing filter button in the files list header, so the following are now removed as well: - ability to toggle files and folders visibility which wasn't that useful and not really a requirement - filter text box as it is is redundant as one can already use the global search box - ability to hide dot files, we'll look into providing this again in the future with an improved UI
-
Change - File actions now always behind three dots button: #2974
The inline file actions button didn't look very nice and made the UI look cluttered. This change hides them behind a three dots button on the line, the same that was already visible in responsive mode. The three dots button also now has no more border and looks nicer.
-
Change - Improve ownCloud Design System (ODS): #2989
During the work on this release, there have been several changes in ODS which directly affect Web. - Proper text truncate in breadcrumb component. This fixes the mobile view of the current folder breadcrumb in the top bar. - New icon sizes
xlarge
andxxlarge
in oc-icon component. Those are used for theNo content
messages e.g. when navigating to an empty folder. - Provide new icon sizexsmall
and align spinner-sizes with icon-sizes. Thexsmall
icon size turned out to be prettier in some places. The size alignments fixed layout glitches when removing collaborators or public links. - Fix aria label on spinner in oc-autocomplete. Warning were cluttering the JavaScript console when adding collaborators. - Reset input on selection in oc-autocomplete, whenfillOnSelection=false
. This makes sure that when a new collaborator has been selected, the search input field goes back to being blank for a new search.owncloud#2989 owncloud/owncloud-design-system#630 owncloud/owncloud-design-system#632 owncloud/owncloud-design-system#633 owncloud/owncloud-design-system#634 owncloud/owncloud-design-system#635
-
Change - Improve visual appearance of upload progress: #3742
- Changed the layout of the upload progress to be a narrow standalone full width row below the app top bar. - Transformed textual information into a single row below the progress bar and made it very clear that it can be clicked to show upload progress details. - Changed layout of upload progress details list items, so that the progress bars always have the same width. - Changed visuals of all progress bars in upload context to have a narrow outline and the percentage numbers inside of the progress bars. - Fixed the calculation of the overall upload progress to be weighted by file sizes instead of just adding up percentages and dividing by number of uploads.
-
Enhancement - Add empty folder message in file list views: #1910
Whenever a folder contains no entries in any of the file list views, a message is now shown indicating that the folder is empty, or that there are no favorites, etc.
-
Enhancement - Fixed header for files tables: #1952
We've made the header of files tables fixed so it is easier to know the meaning of table columns.
Changelog for ownCloud Web 0.3.0 (2020-01-31)
The following sections list the changes in ownCloud web 0.3.0 relevant to ownCloud admins and users.
- Bugfix - Transform route titles into real h1 headings: #2681
- Bugfix - Prevent jumpy behavior when loading user avatars: #2921
- Change - Bring UI/UX of file links sidebar in line with sharing sidebar: #1907
- Change - Join users and groups into a single list in collaborators sidebar: #2900
- Change - Adjusted labels in files list: #2902
- Enhancement - Add share indicator for direct and indirect shares in file list: #2060
- Enhancement - Add files list status indicators extension point: #2895
- Enhancement - Add theme option to disable default files list status indicators: #2895
- Enhancement - Show indirect outgoing shares in shares panel: #2897
- Enhancement - Add owner and resharer in collaborators list: #2898
-
Bugfix - Transform route titles into real h1 headings: #2681
We transformed spans that held the page title to h1 elements. In the case of the file list, a h1 is existing for accessibility reasons but can only be perceived via a screen reader.
-
Bugfix - Prevent jumpy behavior when loading user avatars: #2921
When loading a user avatar, the container size was smaller so as soon as the avatar was loaded, it resulted in jumpy behavior. This is fixed now by applying the same size to the loading spinner element.
-
Change - Bring UI/UX of file links sidebar in line with sharing sidebar: #1907
We adapted the UI/UX of the file links sidebar to be in line with the UI/UX of the collaborators sidebar. The order of the two sidebars has been reversed (collaborators first, file links second). We added info messages to support a clear understanding of the purpose of both private and public links. Most notably the file links sidebar has no inline forms anymore.
-
Change - Join users and groups into a single list in collaborators sidebar: #2900
Users and groups were shown as two separate lists (users, then groups) in the collaborators sidebar. This separation is now removed, i.e. there is only one list with all collaborators, sorted by display name (lower case, ascending). On equal names groups are shown first.
-
Change - Adjusted labels in files list: #2902
Renamed "Modification time" to "Updated" to make it look less technical. Replace "Create new" with "New" in the "New" menu as it makes it look less cluttered when trying to spot a matching entry.
-
Enhancement - Add share indicator for direct and indirect shares in file list: #2060
We've added the ability for the user to directly see whether a resource is shared in the file list. For this, share indicators in the form of a group icon and link icon will appear in a new column near the shared resource. The blue color of an icon tells whether outgoing shares exist directly on the resource. The grey color of an icon tells that incoming or outgoing shares exist on any of the parent folders.
-
Enhancement - Add files list status indicators extension point: #2895
We've added the ability for the extension to inject custom status indicator into files list. New indicators will then appear next to the default one.
-
Enhancement - Add theme option to disable default files list status indicators: #2895
We've added the option into the theme to disable default files list status indicators.
-
Enhancement - Show indirect outgoing shares in shares panel: #2897
Whenever outgoing shares exist on any parent resource from the currently viewed resource, the shares panel will now show these outgoing shares with a link to jump to the matching parent resource. This applies to both indirect collaborators shares and also to indirect public link shares.
-
Enhancement - Add owner and resharer in collaborators list: #2898
The top of the collaborators list now display new entries for the resource owner and the resharer when applicable, and also visible when viewing a child resource of a shared folder (indirect share).
Changelog for ownCloud Web 0.2.7 (2020-01-14)
The following sections list the changes in ownCloud web 0.2.7 relevant to ownCloud admins and users.
- Bugfix - Display files list only if there is at least one item: #2745
- Bugfix - Register store which is imported instead of required: #2837
- Enhancement - Internal links in app switcher: #2838
-
Bugfix - Display files list only if there is at least one item: #2745
Vue virtual scroll was throwing an error in console in case that the files list was empty. We prevent this error by displaying the files list only if there is at least one item.
-
Bugfix - Register store which is imported instead of required: #2837
As some extensions export store not as a module we need to handle that case as well.
-
Enhancement - Internal links in app switcher: #2838
In case extensions integrates itself into Phonix core and not as own SPA we need to handle the navigation via router-link inside of Web core SPA.
- Skip to component, id attribute for owncloud#2326
- Focus management regarding off canvas main nav owncloud#2101
- Publish docker on tag owncloud#2485
- New collaborators flow owncloud#2450
- Hide quota on external storage owncloud#2652
- Focus management for uploads owncloud#2542
- File actions can be defined using config settings owncloud#2651
- Files table virtual scroller owncloud#2280
- Virtual scroll in trash bin owncloud#2809
- Wrong method for copy action of public link owncloud#2363
- Token refresh flow owncloud#2472
- App tar balls need to contain top level folder named like the app itself owncloud#2449
- Scroll behavior on mozilla firefox owncloud#2475
- Steps order on release/publish owncloud#2491
- Don't re-filter autocomplete collaborators results for remote user owncloud#2569
- Limit concurrent uploads to one owncloud#2653
- Extend share id check in public links owncloud#2494
- Made the trashbin table responsive owncloud#2287
- Hide checkbox label in files list owncloud#2680
- Share flow accessibility owncloud#2622
- Remove empty parentheses in shared with others list owncloud#2725
- Do not hide collaborator if another entry with the same name exists if they are not the same type owncloud#2724
- Display breadcrumb if rootFolder is set with no value owncloud#2811
- Include avatar placeholder in relevant places owncloud#2783
- Decouple base file list into a separate component owncloud#2318
- Switched the storage of the auth service from local to session storage owncloud#2416
- Don't build the docker image in the release make file owncloud#2495
- Use owncloud-sdk for uploading files owncloud#2239
- Refactor collaborators to use helper classes and to map permissions owncloud#2373
- Moved private link icon to "links" section owncloud#2496
- Separate app switcher from app navigation sidebar owncloud#2669
- IE11 support owncloud#2082
- Draw.io app integration owncloud#2083
- New file menu entries for different file types owncloud#2111
- Drone starlark owncloud#2112
- Rename and delete will be disallowed in case the parent folder has no permissions fot these two operations owncloud#2129
- Progress bar for upload owncloud#2176
- Handle errors while deleting and renaming files owncloud#2177
- Logout option on access denied page owncloud#2178
- Download feedback spinner owncloud#2179
- Remove rootFolder from breadcrumbs owncloud#2196
- Send header X-Requested-With: XMLHttpRequest in all requests owncloud#2197
- X-Frame-Options and Content-Security-Policy owncloud#2311
- IE11 support for media viewer app owncloud#2086
- Files drop when link password is set owncloud#2096
- Detection of public pages despite existing auth owncloud#2097
- Public link access in incognito mode owncloud#2110
- Password handling in public links owncloud#2117
- More close options to file actions menu owncloud#2161
- Reset search value on clear action owncloud#2198
- Prevent duplicate token refresh calls owncloud#2205
- Use PQueue to run only one create folder promise in folder upload owncloud#2210
- Upon token refresh do not perform full login on sdk level owncloud#2211
- Exit link on access denied page owncloud#2220
- Structure of folders in folder upload owncloud#2224
- Remove file from progress after download on IE11 owncloud#2310
- Properly reset capabilities on logout owncloud#2116
- For mounted folders use the full url as private link owncloud#2170
- Store route in vuex before login in case user is unauthorized owncloud#2170
- Use currentFolder path in breadcrumbs owncloud#2196
- Switch to show instead of if in upload progress bar owncloud#2206
- Key of file action buttons to ariaLabel owncloud#2219
- Trigger add to progress before the folders creation owncloud#2221
- Handle remove from progress in its own mutation owncloud#2225
- Use oidc-client 1.9.1 owncloud#2261
- Added sanitization to markdown editor app owncloud#2233
- Drag and drop in ie11 because of compatibility issues owncloud#2128
- Private link for the current folder to the app bar owncloud#2009
- Clear state in case of error in authorisation owncloud#2079
- Hide comma before mdate if there is no size owncloud#2073
- Don't perform OIDC logout in case of error in authorisation owncloud#2072
- Use sharetype keys that are human readable instead of number owncloud#2071
- Set X-Requested-With header - required ownCloud 10.3 owncloud#1984
- Use 2 spaces instead of tab for feature files owncloud#2004
- Handle OAuth/OpenIdConnect error in callback request query string owncloud#2011
- Enable loading apps from external sites owncloud#1986
- Add default client side sort owncloud#1972
- Public link permissions mix up owncloud#1985
- Downgrade vuex-persist to 2.0.1 to fix IE11 issues owncloud#2007
- Show error message when user tries to upload a folder in IE11 owncloud#1956
- Error message if the folder or file name is empty in create dialog and added default value owncloud#1938
- Bookmarks to menu owncloud#1949
- Redirect to access denied page if the user doesn't have access to Web instance owncloud#1939
- Redirect to private link after user has logged in owncloud#1900
- Breaking of link to help desk on new line owncloud#1940
- Download feedback owncloud#1895
- Download of files shared with password-protected public links owncloud#1808
- Search button on mobile devices owncloud#1893
- Collapsing of alert messages after they have been closed owncloud#1881
- Collaborators (replacement for shares)
- Public and private links
- Shared with me and Shared with others lists
- Favorites page
- Trash bin page
- Initial early alpha release