From 9ceec9c8d84ade40a994731e44c02005209e82c2 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 1 Apr 2019 16:36:40 -0700 Subject: [PATCH] i2p: Add main web interface to list of clients Signed-off-by: Sunil Mohan Adapa --- plinth/modules/i2p/manifest.py | 39 +++++++++++++++++----------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/plinth/modules/i2p/manifest.py b/plinth/modules/i2p/manifest.py index 91421ee10..c65bdebe7 100644 --- a/plinth/modules/i2p/manifest.py +++ b/plinth/modules/i2p/manifest.py @@ -26,25 +26,26 @@ _download_url = 'https://geti2p.net/download' clients = validate([{ 'name': _('I2P'), - 'platforms': [ - { - 'type': 'package', - 'format': 'deb', - 'name': 'i2p', - }, { - 'type': 'download', - 'os': 'gnu-linux', - 'url': _download_url, - }, { - 'type': 'download', - 'os': 'macos', - 'url': _download_url, - }, { - 'type': 'download', - 'os': 'windows', - 'url': _download_url, - } - ] + 'platforms': [{ + 'type': 'web', + 'url': '/i2p/' + }, { + 'type': 'package', + 'format': 'deb', + 'name': 'i2p', + }, { + 'type': 'download', + 'os': 'gnu-linux', + 'url': _download_url, + }, { + 'type': 'download', + 'os': 'macos', + 'url': _download_url, + }, { + 'type': 'download', + 'os': 'windows', + 'url': _download_url, + }] }]) backup = validate_backup({