0.7.0
Changelog for ownCloud Phoenix 0.7.0 (2020-03-30)
Summary
- 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
Details
-
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.
-
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.