Skip to content

0.8.0

Compare
Choose a tag to compare
@LukasHirt LukasHirt released this 14 Apr 09:23
· 11696 commits to master since this release

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.

    #3176
    #3241

  • Bugfix - Fix media-viewer on private pages: #3288

    Media-viewer incorrectly assumed it was on a public page when opened from a private page.

    #3288

  • 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.

    #3285

  • Bugfix - Update owncloud-sdk 1.0.0-544: #3292

    This sdk version is much smaller in size

    #3292

  • 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)

    #3293

  • 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).

    #1906
    #3240

  • 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

    #3294