-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6003 from cernbox/up_app_provider
Improvements for app provider
- Loading branch information
Showing
8 changed files
with
62 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bugfix: Show context menu for all file extensions | ||
|
||
The context menu was failing to build for file extensions that did not have a match in the apps from the app provider. | ||
|
||
https://github.com/owncloud/web/issues/6002 | ||
https://github.com/owncloud/web/pull/6003 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bugfix: Do not scroll on apps open in app provider | ||
|
||
Apps opened from the app provider were taking more than the window size, prompting the use of the scrollbar. | ||
|
||
https://github.com/owncloud/web/issues/5960 | ||
https://github.com/owncloud/web/pull/6003 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Enhancement: Show errors when failing to open app in app provider | ||
|
||
The error message provided by wopi is now displayed to the user, giving some context on why it failed to open a file. | ||
|
||
https://github.com/owncloud/web/pull/6003 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
<template> | ||
<div class="uk-text-center"> | ||
<oc-icon size="xxlarge" name="warning" /> | ||
<p v-translate>Error when loading the application</p> | ||
<h1 v-translate class="oc-text-lead">Error when loading the application</h1> | ||
<p v-if="message">{{ message }}</p> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'ErrorScreen', | ||
props: { | ||
/** | ||
* error message | ||
*/ | ||
message: { | ||
default: '', | ||
type: String, | ||
required: false | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters