i2p: Add main web interface to list of clients

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-04-01 16:36:40 -07:00
parent c98f44f5ae
commit 9ceec9c8d8
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -26,25 +26,26 @@ _download_url = 'https://geti2p.net/download'
clients = validate([{ clients = validate([{
'name': 'name':
_('I2P'), _('I2P'),
'platforms': [ 'platforms': [{
{ 'type': 'web',
'type': 'package', 'url': '/i2p/'
'format': 'deb', }, {
'name': 'i2p', 'type': 'package',
}, { 'format': 'deb',
'type': 'download', 'name': 'i2p',
'os': 'gnu-linux', }, {
'url': _download_url, 'type': 'download',
}, { 'os': 'gnu-linux',
'type': 'download', 'url': _download_url,
'os': 'macos', }, {
'url': _download_url, 'type': 'download',
}, { 'os': 'macos',
'type': 'download', 'url': _download_url,
'os': 'windows', }, {
'url': _download_url, 'type': 'download',
} 'os': 'windows',
] 'url': _download_url,
}]
}]) }])
backup = validate_backup({ backup = validate_backup({