Changelog for ownCloud Web 2.1.0 (2021-03-24)
Summary
- Bugfix - Fix missing translations in application menu: #4830
- Bugfix - NODE_ENV based on rollup mode: #4819
- Bugfix - Remove unsupported shareType: #4809
- Enhancement - A11y improvements for meta attributes: #4342
- Enhancement - Set locale on moment-js to render translated strings: #4826
- Enhancement - Use pre-signed url download for password protected shares: #38376
Details
-
Bugfix - Fix missing translations in application menu: #4830
-
Bugfix - NODE_ENV based on rollup mode: #4819
The NODE_ENV was set to production by default, now we use development if rollup is started in
watch mode so that the vue devtools can be used. -
Bugfix - Remove unsupported shareType: #4809
We don't support 'userGroup' (originally 'contact', shareType
2
) on the backend side
anymore, so we delete it on the frontend, too. -
Enhancement - A11y improvements for meta attributes: #4342
For a11y the html language attribute will be set dynamically . For a11y the
title will be set automatically following the schema: sub item (e.G file) - route (e.g All
Files) - general name (e.g ownCloud) -
Enhancement - Set locale on moment-js to render translated strings: #4826
For i18n purposes we set the moment-js locale to the current selected locale (language) this
allows us to show translated string for example in the updated column in the All files list
(web-app-files package) -
Enhancement - Use pre-signed url download for password protected shares: #38376
Replaced the blob download with a normal download using a pre-signed url provided by the
backend.