From 2382bad321016decaddf13ffb5e9a88ddd92fc16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lign=C3=A9?= Date: Thu, 24 Oct 2024 08:59:12 +0200 Subject: [PATCH] Add Manet to the clients list --- src/data/clients.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/data/clients.ts b/src/data/clients.ts index 341460d4c..d15a8cd53 100644 --- a/src/data/clients.ts +++ b/src/data/clients.ts @@ -907,5 +907,28 @@ export const Clients: Array = [ url: 'https://streamyfin.app' } ] + }, + { + id: 'manet', + name: 'Manet', + description: 'A third-party music client for iOS', + clientType: ClientType.ThirdParty, + deviceTypes: [DeviceType.Mobile], + licenseType: LicenseType.Proprietary, + platforms: [Platform.IOS], + primaryLinks: [ + { + id: 'app-store', + name: 'App Store', + url: 'https://apps.apple.com/us/app/manet-music/id6470928235' + }, + ], + secondaryLinks: [ + { + id: 'website', + name: 'Website', + url: 'https://tilo.dev/manet/' + } + ] } ];