From 3916c94f36c13d6a8156fbed84eeff33369f9a99 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 15 Oct 2024 20:00:17 +0200 Subject: [PATCH] wip --- app.json | 2 +- app/(auth)/play-offline-video.tsx | 1 - eas.json | 4 ++-- providers/JellyfinProvider.tsx | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/app.json b/app.json index 5a2fbbf6..57b10894 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.18.0", + "version": "0.19.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/app/(auth)/play-offline-video.tsx b/app/(auth)/play-offline-video.tsx index 2c9e88d2..f8b03581 100644 --- a/app/(auth)/play-offline-video.tsx +++ b/app/(auth)/play-offline-video.tsx @@ -225,7 +225,6 @@ export default function page() { setAudioTrack={videoRef.current?.setAudioTrack} setSubtitleTrack={videoRef.current?.setSubtitleTrack} setSubtitleURL={videoRef.current?.setSubtitleURL} - mediaSource={undefined} /> )} diff --git a/eas.json b/eas.json index 6c42b511..f828ea06 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.18.0", + "channel": "0.19.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.18.0", + "channel": "0.19.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index b1e5dda7..d1840efc 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.18.0" }, + clientInfo: { name: "Streamyfin", version: "0.19.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.18.0"`, + }, DeviceId="${deviceId}", Version="0.19.0"`, }; }, [deviceId]);