From 31e46164706739a5797ef8dc783d95425adf2a52 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 26 Apr 2023 18:12:10 -0700 Subject: [PATCH] transmission: Add Tremotesf to list of client apps Test: - From F-droid, install and configure the app. Ensure that it works with FreedomBox. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/transmission/manifest.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/plinth/modules/transmission/manifest.py b/plinth/modules/transmission/manifest.py index 2fb13fb10..ed7023d47 100644 --- a/plinth/modules/transmission/manifest.py +++ b/plinth/modules/transmission/manifest.py @@ -2,12 +2,28 @@ from django.utils.translation import gettext_lazy as _ +from plinth.clients import store_url + clients = [{ 'name': _('Transmission'), 'platforms': [{ 'type': 'web', 'url': '/transmission' }] +}, { + 'name': + _('Tremotesf'), + 'platforms': [{ + 'type': 'store', + 'os': 'android', + 'store_name': 'f-droid', + 'url': store_url('f-droid', 'org.equeim.tremotesf') + }, { + 'type': 'store', + 'os': 'android', + 'store_name': 'google-play', + 'url': store_url('google-play', 'org.equeim.tremotesf') + }] }] backup = {