summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--README.rst15
-rwxr-xr-xappinfo/info.xml2
-rwxr-xr-xappinfo/version2
-rw-r--r--build.xml1
5 files changed, 24 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0129a19..f40c0f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2015-09-18 Christian Weiske <cweiske@cweiske.de>
+
+ * Fix search in ownCloud 8.1
+ * Fix #22 and #24: Escape slashes in tags in URLs
+ * Fix #28: array_shift() E_NOTICE in owncloud.log
+ * Move note filtering onto the SQL server
+ * Register app menu icon more efficiently
+ * Add SVG icon
+
2015-06-04 Christian Weiske <cweiske@cweiske.de>
* Fix #19: Tabs ignored in HTML export
diff --git a/README.rst b/README.rst
index 2b7bd62..5b5d65a 100644
--- a/README.rst
+++ b/README.rst
@@ -91,6 +91,15 @@ __ http://pecl.php.net/package/oauth
Installation
============
+App store installation
+======================
+Installation via the app store does not work currently, see
+https://github.com/cweiske/grauphel/issues/26
+
+If one day it works, you can use the ownCloud "Apps" app, select
+"Productivity" and install grauphel with a single click.
+
+
Manual installation
===================
@@ -99,9 +108,9 @@ Manual installation
#. Download the latest release from http://cweiske.de/grauphel.htm and extract it.
For example::
- $ wget http://cweiske.de/download/grauphel/grauphel-0.5.1.tar.bz2
- $ tar xjvf grauphel-0.5.1.tar.bz2
- $ rm grauphel-0.5.1.tar.bz2
+ $ wget http://cweiske.de/download/grauphel/grauphel-0.6.0.tar.bz2
+ $ tar xjvf grauphel-0.6.0.tar.bz2
+ $ rm grauphel-0.6.0.tar.bz2
You do have a directory ``/var/www/owncloud/apps/grauphel`` now.
#. Using your browser, login as administrator into ownCloud and click
diff --git a/appinfo/info.xml b/appinfo/info.xml
index b6a73b1..95b483c 100755
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -7,7 +7,7 @@
Tomboy, Conboy and Tomdroid clients are supported.
</description>
- <version>0.5.1</version>
+ <version>0.6.0</version>
<licence>AGPL3 or later</licence>
<author>Christian Weiske</author>
diff --git a/appinfo/version b/appinfo/version
index 4b9fcbe..a918a2a 100755
--- a/appinfo/version
+++ b/appinfo/version
@@ -1 +1 @@
-0.5.1
+0.6.0
diff --git a/build.xml b/build.xml
index 0db8a62..32e6a81 100644
--- a/build.xml
+++ b/build.xml
@@ -18,6 +18,7 @@
<include name="**"/>
<exclude name="dist/"/>
<exclude name=".git"/>
+ <exclude name=".travis.yml"/>
<exclude name="**/.gitignore"/>
<exclude name="**/build.xml"/>
<exclude name="**/README.html"/>