summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-17 09:22:09 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-17 09:22:09 +0200
commit17239c085117fd1cc35a1a9723d96697a1b1d268 (patch)
tree385b7f6e0c3306822334dedcec1f312d34a9c6a3
parentb3436aeb1280af60de82d41807332c9b9d6c5e1f (diff)
fix python updater, bump to older url3.403
-rw-r--r--CHANGELOG.md3
-rw-r--r--appinfo/app.json2
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/version2
-rwxr-xr-xbin/updater.py2
-rw-r--r--js/bower.json2
-rw-r--r--js/package.json2
7 files changed, 9 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cc740bd3..ba34b2abc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+owncloud-news (3.403)
+* **Bugfix**: Use correct route for python updater
+
owncloud-news (3.402)
* **New dependency**: Bump required ownCloud version to 7.0.3 (RC1 is also supported)
* **Bugfix**: Use **News** as the app navigation entry name across all languages to fix translation errors and because it makes sense
diff --git a/appinfo/app.json b/appinfo/app.json
index a3d47891c..8d0368807 100644
--- a/appinfo/app.json
+++ b/appinfo/app.json
@@ -3,7 +3,7 @@
"id": "news",
"description": "An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory",
"licence": "AGPL",
- "version": "3.4.2",
+ "version": "3.4.3",
"authors": [
{
"name": "Bernhard Posselt",
diff --git a/appinfo/info.xml b/appinfo/info.xml
index a736bbe96..5fb7d175b 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,6 +5,6 @@
<description>An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory</description>
<licence>AGPL</licence>
<author>Bernhard Posselt, Alessandro Cosentino, Jan-Christoph Borchardt</author>
- <version>3.402</version>
+ <version>3.403</version>
<require>7.0.3</require>
</info>
diff --git a/appinfo/version b/appinfo/version
index 22e17e864..c92d30fed 100644
--- a/appinfo/version
+++ b/appinfo/version
@@ -1 +1 @@
-3.402 \ No newline at end of file
+3.403 \ No newline at end of file
diff --git a/bin/updater.py b/bin/updater.py
index a3da90866..7706bdef7 100755
--- a/bin/updater.py
+++ b/bin/updater.py
@@ -78,7 +78,7 @@ class Updater:
if self.base_url[-1] != '/':
self.base_url += '/'
- self.base_url += 'index.php/apps/news/api/v1-4'
+ self.base_url += 'index.php/apps/news/api/v1-2'
self.before_cleanup_url = '%s/cleanup/before-update' % self.base_url
self.after_cleanup_url = '%s/cleanup/after-update' % self.base_url
diff --git a/js/bower.json b/js/bower.json
index 40a442167..4187bbafb 100644
--- a/js/bower.json
+++ b/js/bower.json
@@ -1,6 +1,6 @@
{
"name": "ownCloud-news",
- "version": "3.4.2",
+ "version": "3.4.3",
"homepage": "https://github.com/owncloud/news",
"authors": [
"Bernhard Posselt <dev@bernhard-posselt.com>"
diff --git a/js/package.json b/js/package.json
index e395871da..f69705625 100644
--- a/js/package.json
+++ b/js/package.json
@@ -1,6 +1,6 @@
{
"name": "ownCloud-news",
- "version": "3.4.2",
+ "version": "3.4.3",
"description": "An RSS/Atom feed reader",
"main": "build/app.js",
"scripts": {