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:
authorSergey Linnik <sergey.linnik@onlyoffice.com>2017-11-14 12:08:15 +0300
committerGitHub <noreply@github.com>2017-11-14 12:08:15 +0300
commit7f2a61b5d9643cb63d22c414df34911cbd23c092 (patch)
treefd8b081427e2898cba6ffa2e560c6d4c077c3157
parent050234ccd85c9822107f49ca77e236fd8c85bc54 (diff)
parent07026afd906e002d79bbb37e7352b2e826d60522 (diff)
Merge pull request #117 from ONLYOFFICE/developv1.1.6
1.1.6
-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"));
}