Update web to 4.0.0

This commit is contained in:
Benedikt Kulmann
2021-08-04 17:34:11 +02:00
parent 69dfdeac0d
commit 2b6b92a134
5 changed files with 249 additions and 66 deletions
+8
View File
@@ -0,0 +1,8 @@
Change: Update ownCloud Web to v4.0.0
Tags: web
We updated ownCloud Web to v4.0.0. Please refer to the changelog (linked) for details on the web release.
https://github.com/owncloud/ocis/pull/2353
https://github.com/owncloud/web/releases/tag/v4.0.0
+2 -1
View File
@@ -13,7 +13,8 @@
"files", "files",
"draw-io", "draw-io",
"markdown-editor", "markdown-editor",
"media-viewer" "media-viewer",
"search"
], ],
"external_apps": [ "external_apps": [
{ {
+1 -1
View File
@@ -28,7 +28,7 @@ ci-go-generate: pull-assets # CI runs ci-node-generate automatically before this
.PHONY: ci-node-generate .PHONY: ci-node-generate
ci-node-generate: ci-node-generate:
WEB_ASSETS_VERSION = v3.4.1 WEB_ASSETS_VERSION = v4.0.0
.PHONY: pull-assets .PHONY: pull-assets
pull-assets: pull-assets:
+237 -63
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -184,7 +184,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
}, },
&cli.StringSliceFlag{ &cli.StringSliceFlag{
Name: "web-config-app", Name: "web-config-app",
Value: cli.NewStringSlice("files", "media-viewer"), Value: cli.NewStringSlice("files", "search", "media-viewer"),
Usage: `--web-config-app files [--web-config-app draw-io]`, Usage: `--web-config-app files [--web-config-app draw-io]`,
EnvVars: []string{"WEB_UI_CONFIG_APPS"}, EnvVars: []string{"WEB_UI_CONFIG_APPS"},
}, },