From 5be386467b53b6ef30a3c6d6d0775829c97293aa Mon Sep 17 00:00:00 2001 From: felix920506 Date: Sat, 5 Oct 2024 17:05:57 -0400 Subject: [PATCH 1/2] Add Jellychord to clients list --- src/data/clients.ts | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/src/data/clients.ts b/src/data/clients.ts index 46f0e5345..3efb64038 100644 --- a/src/data/clients.ts +++ b/src/data/clients.ts @@ -860,37 +860,52 @@ export const Clients: Array = [ ] }, { - id: "streamyfin", - name: "Streamyfin", - description: - "A third-party client for iOS, iPadOS and Android with download capability", + id: 'streamyfin', + name: 'Streamyfin', + description: 'A third-party client for iOS, iPadOS and Android with download capability', clientType: ClientType.ThirdParty, deviceTypes: [DeviceType.Mobile], licenseType: LicenseType.OpenSource, platforms: [Platform.Android, Platform.IOS, Platform.iPadOS], primaryLinks: [ { - id: "app-store", - name: "App Store", - url: "https://apps.apple.com/app/streamyfin/id6593660679", + id: 'app-store', + name: 'App Store', + url: 'https://apps.apple.com/app/streamyfin/id6593660679' }, { - id: "play-store", - name: "Play Store", - url: "https://play.google.com/store/apps/details?id=com.fredrikburmester.streamyfin", - }, + id: 'play-store', + name: 'Play Store', + url: 'https://play.google.com/store/apps/details?id=com.fredrikburmester.streamyfin' + } ], secondaryLinks: [ { - id: "github", - name: "GitHub", - url: "https://github.com/fredrikburmester/streamyfin", + id: 'github', + name: 'GitHub', + url: 'https://github.com/fredrikburmester/streamyfin' }, { id: 'website', name: 'Website', url: 'https://streamyfin.app' - } + } + ] + }, + { + id: 'jellychord', + name: 'Jellychord', + description: 'A modern Discord music bot using slash commands, written in python.', + clientType: ClientType.ThirdParty, + deviceTypes: [], + licenseType: LicenseType.OpenSource, + platforms: [Platform.Discord], + primaryLinks: [ + { + id: 'github', + name: 'GitHub', + url: 'https://github.com/felix920506/jellychord' + } ] } ]; From 4b3ab30595066bb066137ab5c7c911b2248e444b Mon Sep 17 00:00:00 2001 From: felix920506 Date: Sat, 12 Oct 2024 00:24:32 -0400 Subject: [PATCH 2/2] Reorder --- src/data/clients.ts | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/data/clients.ts b/src/data/clients.ts index 3efb64038..341460d4c 100644 --- a/src/data/clients.ts +++ b/src/data/clients.ts @@ -719,6 +719,22 @@ export const Clients: Array = [ } ] }, + { + id: 'jellychord', + name: 'Jellychord', + description: 'A modern Discord music bot for Jellyfin using slash commands, written in python.', + clientType: ClientType.ThirdParty, + deviceTypes: [], + licenseType: LicenseType.OpenSource, + platforms: [Platform.Discord], + primaryLinks: [ + { + id: 'github', + name: 'GitHub', + url: 'https://github.com/felix920506/jellychord' + } + ] + }, { id: 'jellycli', name: 'Jellycli', @@ -891,21 +907,5 @@ export const Clients: Array = [ url: 'https://streamyfin.app' } ] - }, - { - id: 'jellychord', - name: 'Jellychord', - description: 'A modern Discord music bot using slash commands, written in python.', - clientType: ClientType.ThirdParty, - deviceTypes: [], - licenseType: LicenseType.OpenSource, - platforms: [Platform.Discord], - primaryLinks: [ - { - id: 'github', - name: 'GitHub', - url: 'https://github.com/felix920506/jellychord' - } - ] } ];