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

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Blüm <marius@lineone.io>2017-02-05 18:59:07 +0300
committerMarius Blüm <marius@lineone.io>2017-02-05 18:59:07 +0300
commit57b7062fee0554087b72f410c403881b10f8a0c3 (patch)
tree835b4735039b5270a0ceef24de35dccc538c058f
parent4fb77d526fdb40ce1756d82edec8b0229d434a3f (diff)
Prepare for Nextcloud appstore
Signed-off-by: Marius Blüm <marius@lineone.io>
-rw-r--r--README.md23
-rw-r--r--appinfo/info.xml15
2 files changed, 20 insertions, 18 deletions
diff --git a/README.md b/README.md
index c699f05..4b82310 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,20 @@
-owncloud-checksum
-=================
-
-Owncloud Plugin to create md5-hashes of files.
+Checksum
+========
+**Plugin for [Nextcloud](https://nextcloud.com) and owncloud to create md5-hashes of files.**
Installation
------------
-- Copy the checksum folder in the app directory of owncloud.
-- If not already done, rename the app-folder to "checksum" - causes overwise an sql error.
-- Enable this app in the admin interface.
-
+In your Instance, simply navigate to »Apps«, choose the category »Files«, find the Checksum app and enable it.
Usage
-----
-Open the details view. There should be a new tab called "Checksum". Select a hashalgorithm and it will try to generate a hash.
-
+Just open the details view of the file (Sidebar). There should be a new tab called "Checksum". Select a algorithm and it will try to generate a hash.
-Notice
-------
+Compatibility
+-------------
-- I only tested the app for the current version of owncloud (9.x). I tried to use the current api as much as possible. It should be safe for future versions.
-- Tested and worked with Nextcloud 10.x too.
+- I only tested the app for the current version of owncloud (9.x) and Nextcloud 10 and 11.
+- I tried to use the current api as much as possible. It should be safe for future versions.
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 788ec21..337feff 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,15 +1,22 @@
<?xml version="1.0"?>
-<info>
+<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>checksum</id>
<name>Checksum</name>
+ <summary>Creating a hash checksum of a file.</summary>
<description>Creating a hash checksum of a file.</description>
- <version>0.3</version>
- <licence>AGPL</licence>
+ <version>0.3.1</version>
+ <licence>agpl</licence>
<author>westberliner</author>
<types>
<filesystem/>
</types>
+ <category>files</category>
+ <category>tools</category>
+ <website>https://github.com/westberliner/owncloud-checksum/</website>
+ <bugs>https://github.com/westberliner/owncloud-checksum/issues</bugs>
<dependencies>
<owncloud min-version="9.0" max-version="11" />
+ <nextcloud min-version="9" max-version="12" />
</dependencies>
-</info> \ No newline at end of file
+</info>