Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
fix python updater, bump to older url
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed Oct 17, 2014
1 parent b3436ae commit 17239c0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion appinfo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion appinfo/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.402
3.403
2 changes: 1 addition & 1 deletion bin/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, base_url, thread_num, interval, user, password, timeout,

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
Expand Down
2 changes: 1 addition & 1 deletion js/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ownCloud-news",
"version": "3.4.2",
"version": "3.4.3",
"homepage": "https://github.com/owncloud/news",
"authors": [
"Bernhard Posselt <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 17239c0

Please sign in to comment.