Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentserver_community.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Huggins <aaron.huggins@runbox.com>2022-11-02 08:22:22 +0300
committerAaron Huggins <aaron.huggins@runbox.com>2022-11-02 20:18:13 +0300
commit493958115705992e0c8653ae00a50ac6707eb620 (patch)
tree4b9834ae808af57f36a04ef32860a6b2b99b5dca
parent86c6df8bddb6e2b2a732d113d8af59fbb859a125 (diff)
Increment versions and enhance makefile
- Bump OnlyOffice document server to 7.2.1 - Bump app version to 0.1.13 - Allow rm in makefile to force and silently continue Signed-off-by: Aaron Huggins <aaron.huggins@runbox.com>
-rw-r--r--Makefile4
-rw-r--r--appinfo/info.xml4
-rw-r--r--lib/OnlyOffice/WebVersion.php2
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5c1b5e3..0bae739 100644
--- a/Makefile
+++ b/Makefile
@@ -14,10 +14,10 @@ clean:
3rdparty/onlyoffice/documentserver:
mkdir -p 3rdparty/onlyoffice
- docker create --name oo-extract onlyoffice/documentserver:6.4.2.6
+ docker create --name oo-extract onlyoffice/documentserver:7.2.1
docker cp oo-extract:/var/www/onlyoffice/documentserver 3rdparty/onlyoffice
docker rm oo-extract
- rm -r 3rdparty/onlyoffice/documentserver/server/{Common,DocService}
+ rm -rf 3rdparty/onlyoffice/documentserver/server/{Common,DocService}
cd 3rdparty/onlyoffice/documentserver/server/FileConverter/bin && \
../../tools/allfontsgen \
--input="../../../core-fonts" \
diff --git a/appinfo/info.xml b/appinfo/info.xml
index c868a22..f75b9c0 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -14,7 +14,7 @@ The community document server will automatically be configured if no other docum
Additionally, the community document server only supports running on x86-64 Linux servers.]]>
</description>
- <version>0.1.12</version>
+ <version>0.1.13</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>DocumentServer</namespace>
@@ -31,7 +31,7 @@ Additionally, the community document server only supports running on x86-64 Linu
<screenshot>https://raw.githubusercontent.com/nextcloud/documentserver_community/master/screenshots/main.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/documentserver_community/master/screenshots/new.png</screenshot>
<dependencies>
- <nextcloud min-version="21" max-version="23"/>
+ <nextcloud min-version="21" max-version="25"/>
</dependencies>
<background-jobs>
diff --git a/lib/OnlyOffice/WebVersion.php b/lib/OnlyOffice/WebVersion.php
index b2aacc2..594dfd8 100644
--- a/lib/OnlyOffice/WebVersion.php
+++ b/lib/OnlyOffice/WebVersion.php
@@ -25,6 +25,6 @@ namespace OCA\DocumentServer\OnlyOffice;
class WebVersion {
public function getWebUIVersion(): string {
- return '6.4.2';
+ return '7.2.1';
}
}