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

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

View File

@@ -13,7 +13,8 @@
"files",
"draw-io",
"markdown-editor",
"media-viewer"
"media-viewer",
"search"
],
"external_apps": [
{

View File

@@ -28,7 +28,7 @@ ci-go-generate: pull-assets # CI runs ci-node-generate automatically before this
.PHONY: ci-node-generate
ci-node-generate:
WEB_ASSETS_VERSION = v3.4.1
WEB_ASSETS_VERSION = v4.0.0
.PHONY: pull-assets
pull-assets:

File diff suppressed because one or more lines are too long

View File

@@ -184,7 +184,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringSliceFlag{
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]`,
EnvVars: []string{"WEB_UI_CONFIG_APPS"},
},