mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-08-26 12:46:08 +00:00
ttrss: Update list of clients
- Tiny Tiny RSS Fork calls itself "Tiny Tiny RSS" on F-Droid and "TTTRSS" on project page. - TTRSS-Reader is available on F-Droid and Google Play Store. - Geekttrss is available on F-Droid. - The original TTRSS app does not seem to be available on Google Play Store anymore. Tests: - Install each app on respective platforms. Configure them and see if they work. - Check for free software licenses on project pages. - Click on each of the clients in the clients list in the web UI and see that the links redirect to corresponding app pages on the appropriate store. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
3d1beaf640
commit
537cc749d1
@ -4,28 +4,50 @@ from django.utils.translation import gettext_lazy as _
|
|||||||
|
|
||||||
from plinth.clients import store_url
|
from plinth.clients import store_url
|
||||||
|
|
||||||
clients = [{
|
clients = [
|
||||||
'name':
|
{
|
||||||
_('Tiny Tiny RSS (Fork)'),
|
'name':
|
||||||
'platforms': [{
|
_('Tiny Tiny RSS (TTTRSS)'),
|
||||||
'type': 'store',
|
'platforms': [{
|
||||||
'os': 'android',
|
'type': 'store',
|
||||||
'store_name': 'f-droid',
|
'os': 'android',
|
||||||
'url': store_url('f-droid', 'org.fox.tttrss')
|
'store_name': 'f-droid',
|
||||||
}]
|
'url': store_url('f-droid', 'org.fox.tttrss')
|
||||||
}, {
|
}]
|
||||||
'name':
|
},
|
||||||
_('Tiny Tiny RSS'),
|
{
|
||||||
'platforms': [{
|
'name':
|
||||||
'type': 'store',
|
_('TTRSS-Reader'),
|
||||||
'os': 'android',
|
'platforms': [{
|
||||||
'store_name': 'google-play',
|
'type': 'store',
|
||||||
'url': store_url('google-play', 'org.fox.ttrss')
|
'os': 'android',
|
||||||
}, {
|
'store_name': 'google-play',
|
||||||
'type': 'web',
|
'url': store_url('google-play', 'org.ttrssreader')
|
||||||
'url': '/tt-rss'
|
}, {
|
||||||
}]
|
'type': 'store',
|
||||||
}]
|
'os': 'android',
|
||||||
|
'store_name': 'f-droid',
|
||||||
|
'url': store_url('f-droid', 'org.ttrssreader')
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'name':
|
||||||
|
_('Geekttrss'),
|
||||||
|
'platforms': [{
|
||||||
|
'type': 'store',
|
||||||
|
'os': 'android',
|
||||||
|
'store_name': 'google-play',
|
||||||
|
'url': store_url('google-play', 'com.geekorum.ttrss')
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'name': _('Tiny Tiny RSS'),
|
||||||
|
'platforms': [{
|
||||||
|
'type': 'web',
|
||||||
|
'url': '/tt-rss'
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
backup = {
|
backup = {
|
||||||
'data': {
|
'data': {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user