From df6cd170999fc8a58f630cf08b7f6db4dd0e7f5c Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sat, 5 Oct 2024 21:28:07 +0200 Subject: [PATCH] chore --- app.json | 4 ++-- eas.json | 4 ++-- providers/JellyfinProvider.tsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.json b/app.json index 3eb47c3b..de37a56c 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", @@ -33,7 +33,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 42, + "versionCode": 43, "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive_icon.png" }, 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]);