ttrss: update client apps

- Add new F-Droid app
- Remove TT-RSS Reader which no longer works with the current version of TT-RSS
  server.

Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Joseph Nuthalapati 2018-03-03 07:24:09 +05:30 committed by James Valleroy
parent fa812abce4
commit eaa6d4ea62
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -19,9 +19,16 @@ from django.utils.translation import ugettext_lazy as _
from plinth.clients import store_url, validate
_package_id = 'org.ttrssreader'
clients = validate([{
'name':
_('Tiny Tiny RSS (Fork)'),
'platforms': [{
'type': 'store',
'os': 'android',
'store_name': 'f-droid',
'url': store_url('f-droid', 'org.fox.tttrss')
}]
}, {
'name':
_('Tiny Tiny RSS'),
'platforms': [{
@ -33,18 +40,4 @@ clients = validate([{
'type': 'web',
'url': '/tt-rss'
}]
}, {
'name':
_('TT-RSS Reader'),
'platforms': [{
'type': 'store',
'os': 'android',
'store_name': 'google-play',
'url': store_url('google-play', _package_id),
}, {
'type': 'store',
'os': 'android',
'store_name': 'f-droid',
'url': store_url('f-droid', _package_id),
}]
}])