From 75009c1ed74c2f3d14186b1f0599bc4c3904df38 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 11 Feb 2022 16:19:14 +0100 Subject: [PATCH 1/3] Update web to v5.0.0 --- .drone.env | 4 ++-- changelog/unreleased/update-5.0.0.md | 10 ++++++++++ changelog/unreleased/update-web-4.8.0.md | 8 -------- web/Makefile | 2 +- 4 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 changelog/unreleased/update-5.0.0.md delete mode 100644 changelog/unreleased/update-web-4.8.0.md diff --git a/.drone.env b/.drone.env index 3ee3c14b92d..9c211f96b76 100644 --- a/.drone.env +++ b/.drone.env @@ -3,5 +3,5 @@ CORE_COMMITID=cb9a31fd45721406ee150682d86e29e1b2e8b0d8 CORE_BRANCH=master # The test runner source for UI tests -WEB_COMMITID=262398e513253d3296792434ecc4a96fa1c19a73 -WEB_BRANCH=testSharesFolderAlwaysVisible +WEB_COMMITID=e84960674723d8fb8c3c42e1ada8ef8cc1747ba6 +WEB_BRANCH=master diff --git a/changelog/unreleased/update-5.0.0.md b/changelog/unreleased/update-5.0.0.md new file mode 100644 index 00000000000..e55537eaa4e --- /dev/null +++ b/changelog/unreleased/update-5.0.0.md @@ -0,0 +1,10 @@ +Enhancement: Update ownCloud Web to v5.0.0 + +Tags: web + +We updated ownCloud Web to v5.0.0. Please refer to the changelog (linked) for details on the web release. + +https://github.com/owncloud/ocis/pull/2895 +https://github.com/owncloud/ocis/pull/3157 +https://github.com/owncloud/web/releases/tag/v4.8.0 +https://github.com/owncloud/web/releases/tag/v5.0.0 diff --git a/changelog/unreleased/update-web-4.8.0.md b/changelog/unreleased/update-web-4.8.0.md deleted file mode 100644 index a4956808eb7..00000000000 --- a/changelog/unreleased/update-web-4.8.0.md +++ /dev/null @@ -1,8 +0,0 @@ -Enhancement: Update ownCloud Web to v4.8.0 - -Tags: web - -We updated ownCloud Web to v4.8.0. Please refer to the changelog (linked) for details on the web release. - -https://github.com/owncloud/ocis/pull/2895 -https://github.com/owncloud/web/releases/tag/v4.8.0 diff --git a/web/Makefile b/web/Makefile index af5203a1cf0..1806a1b0294 100644 --- a/web/Makefile +++ b/web/Makefile @@ -29,7 +29,7 @@ ci-go-generate: # CI runs ci-node-generate automatically before this target .PHONY: ci-node-generate ci-node-generate: pull-assets -WEB_ASSETS_VERSION = v4.8.0 +WEB_ASSETS_VERSION = v5.0.0-rc .PHONY: pull-assets pull-assets: From f90d329e85a7cf0789e87bd0a26bdf1287233800 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 11 Feb 2022 16:53:39 +0100 Subject: [PATCH 2/3] ui adjustments after ODS and Web update --- accounts/package.json | 2 +- accounts/ui/app.js | 6 +- accounts/ui/components/App.vue | 4 +- .../ui/components/accounts/AccountsCreate.vue | 2 +- .../components/accounts/AccountsListRow.vue | 6 +- accounts/yarn.lock | 2 +- settings/package.json | 2 +- settings/ui/app.js | 6 +- settings/ui/components/SettingsApp.vue | 2 +- tests/config/drone/ocis-config.json | 55 ++++++++++--------- 10 files changed, 43 insertions(+), 44 deletions(-) diff --git a/accounts/package.json b/accounts/package.json index a0f8d54cfab..5db78147f2a 100644 --- a/accounts/package.json +++ b/accounts/package.json @@ -80,7 +80,7 @@ "xml-js": "^1.6.11" }, "peerDependencies": { - "owncloud-design-system": "^11.0.0" + "owncloud-design-system": "^12.1.0" }, "packageManager": "yarn@3.1.0" } diff --git a/accounts/ui/app.js b/accounts/ui/app.js index 04ea46ed5e7..a4e2c963b78 100644 --- a/accounts/ui/app.js +++ b/accounts/ui/app.js @@ -11,7 +11,7 @@ function $gettext (msg) { const appInfo = { name: $gettext('Accounts'), id: 'accounts', - icon: 'text-vcard', + icon: 'team', isFileEditor: false, extensions: [] } @@ -20,9 +20,7 @@ const routes = [ { name: 'accounts', path: '/', - components: { - app: App - } + component: App } ] diff --git a/accounts/ui/components/App.vue b/accounts/ui/components/App.vue index e922edb1b0b..4c36b0b8237 100644 --- a/accounts/ui/components/App.vue +++ b/accounts/ui/components/App.vue @@ -1,6 +1,6 @@