From da8fac8d2f608a9583f16b323bf474b4952c6178 Mon Sep 17 00:00:00 2001 From: Violet Caulfield <42452695+anultravioletaurora@users.noreply.github.com> Date: Sun, 30 Nov 2025 14:38:35 -0600 Subject: [PATCH] Add Jellify to Third Party Clients list --- src/data/clients.ts | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/data/clients.ts b/src/data/clients.ts index 67e19f30..65ef011d 100644 --- a/src/data/clients.ts +++ b/src/data/clients.ts @@ -994,6 +994,39 @@ const thirdPartyClients: Array = [ url: 'https://monk-studio.com/finer' } ] + }, + { + id: 'jellify', + name: 'Jellify', + description: 'A free and open source music player available for iOS and Android', + clientType: ClientType.ThirdParty, + deviceTypes: [DeviceType.Mobile, DeviceType.Desktop], + licenseType: LicenseType.OpenSource, + platforms: [Platform.MacOS, Platform.IOS, Platform.Android], + primaryLinks: [ + { + id: 'app-store', + name: 'App Store', + url: '', + }, + { + id: 'google-play', + name: 'Google Play', + url: 'https://play.google.com/store/apps/details?id=com.cosmonautical.jellify' + } + ], + secondaryLinks: [ + { + id: 'website', + name: 'Website', + url: 'https://jellify.app' + }, + { + id: 'github', + name: 'GitHub', + url: 'https://github.com/Jellify-Music/App' + } + ] } ];