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

github.com/ONLYOFFICE/onlyoffice-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--appinfo/info.xml8
-rw-r--r--controller/settingscontroller.php2
3 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a78191a..f07c1b9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Change Log
+## 1.1.6
+## Changed
+- update description
+
## 1.1.5
## Added
- the ability to change the header key
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 13847e0..1fdb8d7 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -2,12 +2,12 @@
<info>
<id>onlyoffice</id>
<ocsid>174798</ocsid>
- <name>Onlyoffice</name>
- <summary>ownCloud ONLYOFFICE integration app</summary>
- <description>ONLYOFFICE integration app enables users to edit Office documents within ONLYOFFICE from OwnCloud. This will create a new Open in ONLYOFFICE action within the document library for Office documents. This allows multiple users to collaborate in real time and to save back those changes to OwnCloud.</description>
+ <name>ONLYOFFICE</name>
+ <summary>ONLYOFFICE connector</summary>
+ <description>ONLYOFFICE connector enables you to edit Office documents within ONLYOFFICE from the familiar web interface. This will create a new Open in ONLYOFFICE action within the document library for Office documents. This allows multiple users to collaborate in real time and to save back those changes to your file storage.</description>
<licence>agpl</licence>
<author>Ascensio System SIA</author>
- <version>1.1.5</version>
+ <version>1.1.6</version>
<namespace>Onlyoffice</namespace>
<types>
<filesystem/>
diff --git a/controller/settingscontroller.php b/controller/settingscontroller.php
index 4320d4c..86f34f1 100644
--- a/controller/settingscontroller.php
+++ b/controller/settingscontroller.php
@@ -240,7 +240,7 @@ class SettingsController extends Controller {
}
$version = floatval($commandResponse->version);
- if ($version < 4.2) {
+ if ($version > 0.0 && $version < 4.2) {
throw new \Exception($this->trans->t("Not supported version"));
}