From eaa6d4ea62e54c0d7fdf5d9618c98c57e1c8faa9 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Sat, 3 Mar 2018 07:24:09 +0530 Subject: [PATCH] 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 Reviewed-by: James Valleroy --- plinth/modules/ttrss/manifest.py | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/plinth/modules/ttrss/manifest.py b/plinth/modules/ttrss/manifest.py index 07f0b6b8c..4fac04f53 100644 --- a/plinth/modules/ttrss/manifest.py +++ b/plinth/modules/ttrss/manifest.py @@ -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), - }] }])