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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-05-07 12:51:15 +0300
committerGitHub <noreply@github.com>2019-05-07 12:51:15 +0300
commitcf923274c6f70adc39a1df01602e04520c515b30 (patch)
tree963fa3848e3a98edb5fe78f0152ba25355555e69
parent399a5cefb236437b14f5a2024b805cbcc5e58c1c (diff)
parentdd888698d8a67fec4e8a0b53d3e5d9773bcf12e2 (diff)
Bump version to 3.3.0 (#485)v3.3.0
Bump version to 3.3.0
-rw-r--r--CHANGELOG.md15
-rw-r--r--appinfo/info.xml2
-rw-r--r--lib/Controller/WopiController.php4
3 files changed, 19 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 45891e35..992953f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,19 @@
# Changelog
+## 3.3.0
+
+### Added
+
+- Use product name from collabora capabilities
+- Add hide download support for share links
+- Use collabora to generate PDF previews
+- Better mimetype handling for mobile editing
+
+### Fixed
+
+- Set timeout for editor inactivity
+- Set proper extension when creating ooxml files from templates
+- Do not open SVG files with collabora by default
+- Hide collabora user list on desktop browsers
## 3.2.4
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 6ee8d8a8..91b07d5e 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -4,7 +4,7 @@
<name>Collabora Online</name>
<summary>Edit office documents directly in your browser.</summary>
<description>This application can connect to a Collabora Online server (WOPI Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.</description>
- <version>3.2.4-1</version>
+ <version>3.3.0</version>
<licence>agpl</licence>
<author>Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk</author>
<types>
diff --git a/lib/Controller/WopiController.php b/lib/Controller/WopiController.php
index d7619947..647b6dc0 100644
--- a/lib/Controller/WopiController.php
+++ b/lib/Controller/WopiController.php
@@ -157,7 +157,9 @@ class WopiController extends Controller {
'HideUserList' => 'desktop',
'DisablePrint' => $wopi->getHideDownload(),
'DisableExport' => $wopi->getHideDownload(),
- 'DisableCopy' => $wopi->getHideDownload()
+ 'DisableCopy' => $wopi->getHideDownload(),
+ 'HideExportOption' => $wopi->getHideDownload(),
+ 'HidePrintOption' => $wopi->getHideDownload()
];
if ($wopi->isTemplateToken()) {