From 005938a4210921265dbe5bab4cf50267715313e7 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sat, 5 Oct 2024 20:01:34 +0200 Subject: [PATCH] chore --- app.json | 2 +- eas.json | 4 ++-- providers/JellyfinProvider.tsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app.json b/app.json index c7d3db86..9eb7e0d0 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.16.0", + "version": "0.17.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index 4c03966e..5583d89f 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.16.0", + "channel": "0.17.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.16.0", + "channel": "0.17.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index bcd0fb07..b4c82b19 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -52,7 +52,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.16.0" }, + clientInfo: { name: "Streamyfin", version: "0.17.0" }, deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id }, }) ); @@ -86,7 +86,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.16.0"`, + }, DeviceId="${deviceId}", Version="0.17.0"`, }; }, [deviceId]);