Changelog for ownCloud Phoenix 0.8.0 (2020-04-14)
Summary
- 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
Details
-
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 phoenix. 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