From 105744fc9ce2167144deea0d6ebba033d0019716 Mon Sep 17 00:00:00 2001 From: PartyDonut <42371342+PartyDonut@users.noreply.github.com> Date: Sat, 9 Nov 2024 12:44:30 +0000 Subject: [PATCH] Add Fladder client --- src/data/clients.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/data/clients.ts b/src/data/clients.ts index d15a8cd53..22442a214 100644 --- a/src/data/clients.ts +++ b/src/data/clients.ts @@ -930,5 +930,28 @@ export const Clients: Array = [ url: 'https://tilo.dev/manet/' } ] + }, + { + id: "fladder", + name: "Fladder", + description: "A simple, cross-platform Jellyfin frontend built on top of Flutter.", + clientType: ClientType.ThirdParty, + deviceTypes: [DeviceType.Mobile, DeviceType.Desktop], + licenseType: LicenseType.OpenSource, + platforms: [Platform.Linux, Platform.Windows, Platform.MacOS, Platform.Android, Platform.IOS, Platform.Docker, Platform.Browser], + primaryLinks: [ + { + id: "play-store", + name: "Play Store", + url: "https://play.google.com/store/apps/details?id=nl.jknaapen.fladder", + }, + ], + secondaryLinks: [ + { + id: "github", + name: "GitHub", + url: "https://github.com/DonutWare/Fladder", + }, + ] } ];