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

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-08-12 14:17:28 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-08-13 17:19:05 +0300
commit7b2198f24b873f1fd7869c0e87add794fd5e4ebe (patch)
tree8840b086e1097bfe21fcb05fcca90d48ef32713e /appinfo
parentdf9f2eb4339811156eb5be390847f71f597d43df (diff)
Move packaging to webpack and update/clean all configs
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml31
-rw-r--r--appinfo/routes.php26
2 files changed, 38 insertions, 19 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 151b2b3..861c8cb 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,9 +1,10 @@
<?xml version="1.0"?>
<info>
- <id>files_pdfviewer</id>
- <name>PDF viewer</name>
- <summary>A pdf viewer for Nextcloud</summary>
- <description><![CDATA[This application integrates the PDF.js library into Nextcloud. Using this
+ <id>files_pdfviewer</id>
+ <name>PDF viewer</name>
+ <summary>PDF viewer plugin for Nextcloud</summary>
+
+ <description><![CDATA[This application integrates the PDF.js library into Nextcloud. Using this
application users can view their PDF files online without the need to
download the file.
@@ -14,15 +15,17 @@ will not work with Microsoft® Internet Explorer® versions below 9.
PDF.js is a JavaScript library developed by Mozilla, you can learn more
about the PDF.js project at [https://mozilla.github.io/pdf.js/](https://mozilla.github.io/pdf.js/)]]></description>
- <version>1.9.0</version>
- <licence>agpl</licence>
- <author>Thomas Müller, Lukas Reschke</author>
- <namespace>Files_PdfViewer</namespace>
- <default_enable/>
- <category>files</category>
- <category>office</category>
- <bugs>https://github.com/nextcloud/files_pdfviewer/issues</bugs>
- <dependencies>
+ <version>2.0.O</version>
+ <licence>agpl</licence>
+ <author mail="skjnldsv@protonmail.com">John Molakvoæ</author>
+
+ <namespace>Files_PDFViewer</namespace>
+ <default_enable/>
+
+ <category>files</category>
+ <category>office</category>
+ <bugs>https://github.com/nextcloud/files_pdfviewer/issues</bugs>
+ <dependencies>
<nextcloud min-version="20" max-version="20" />
- </dependencies>
+ </dependencies>
</info>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 3cfe624..42ee25b 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -1,15 +1,31 @@
<?php
+
declare(strict_types=1);
+
/**
- * @author Lukas Reschke
* @copyright 2014 Lukas Reschke lukas@owncloud.com
*
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
+ * @author Lukas Reschke <lukas@owncloud.com>
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
-namespace OCA\Files_PdfViewer\AppInfo;
+namespace OCA\Files_PDFViewer\AppInfo;
return ['routes' => [
['name' => 'display#showPdfViewer', 'url' => '/', 'verb' => 'GET'],