ejabberd, mumble, wireguard: Update Apple app links

- Old URLs are still valid but are being redirected to newer URLs.

Tests:

- View the app pages. See the list of the clients and visit the URLs.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
This commit is contained in:
Sunil Mohan Adapa 2020-08-20 11:49:06 -07:00 committed by Joseph Nuthalapati
parent 10544b4386
commit 7afe361eee
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35
3 changed files with 15 additions and 26 deletions

View File

@ -2,8 +2,8 @@
from django.utils.translation import ugettext_lazy as _ from django.utils.translation import ugettext_lazy as _
from plinth.modules.backups.api import validate as validate_backup
from plinth.clients import store_url, validate from plinth.clients import store_url, validate
from plinth.modules.backups.api import validate as validate_backup
from plinth.modules.jsxc import manifest as jsxc_manifest from plinth.modules.jsxc import manifest as jsxc_manifest
_clients = validate([{ _clients = validate([{
@ -66,8 +66,7 @@ _clients = validate([{
'type': 'store', 'type': 'store',
'os': 'ios', 'os': 'ios',
'store_name': 'app-store', 'store_name': 'app-store',
'url': 'https://itunes.apple.com/us/app/chatsecure' 'url': 'https://apps.apple.com/us/app/chatsecure/id464200063'
'/id464200063'
}] }]
}, { }, {
'name': 'name':

View File

@ -30,7 +30,7 @@ clients = validate([{
'type': 'store', 'type': 'store',
'os': 'ios', 'os': 'ios',
'store_name': 'app-store', 'store_name': 'app-store',
'url': 'https://itunes.apple.com/us/app/mumble/id443472808' 'url': 'https://apps.apple.com/us/app/mumble/id443472808'
}] }]
}, { }, {
'name': 'name':
@ -53,7 +53,7 @@ clients = validate([{
'type': 'store', 'type': 'store',
'os': 'ios', 'os': 'ios',
'store_name': 'app-store', 'store_name': 'app-store',
'url': 'https://itunes.apple.com/dk/app/mumblefy/id858752232' 'url': 'https://apps.apple.com/dk/app/mumblefy/id858752232'
}] }]
}, { }, {
'name': 'name':

View File

@ -13,20 +13,14 @@ clients = validate([{
'name': 'name':
_('WireGuard'), _('WireGuard'),
'platforms': [{ 'platforms': [{
'type': 'type': 'download',
'download', 'os': 'windows',
'os': 'url': 'https://download.wireguard.com/windows-client/'
'windows', 'wireguard-amd64-0.0.23.msi'
'url':
'https://download.wireguard.com/windows-client/'
'wireguard-amd64-0.0.23.msi'
}, { }, {
'type': 'type': 'download',
'download', 'os': 'macos',
'os': 'url': 'https://apps.apple.com/us/app/wireguard/id1451685025'
'macos',
'url':
'https://itunes.apple.com/us/app/wireguard/id1451685025?ls=1&mt=12'
}, { }, {
'type': 'package', 'type': 'package',
'format': 'deb', 'format': 'deb',
@ -42,13 +36,9 @@ clients = validate([{
'store_name': 'google-play', 'store_name': 'google-play',
'url': store_url('google-play', _wireguard_package_id) 'url': store_url('google-play', _wireguard_package_id)
}, { }, {
'type': 'type': 'store',
'store', 'os': 'ios',
'os': 'store_name': 'app-store',
'ios', 'url': 'https://apps.apple.com/us/app/wireguard/id1441195209'
'store_name':
'app-store',
'url':
'https://itunes.apple.com/us/app/wireguard/id1441195209?ls=1&mt=8'
}] }]
}]) }])