From d585b20f49c052e6536833feb38bfad2ab129d8c Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sun, 31 May 2026 09:44:05 +0200 Subject: [PATCH] chore: version --- app.json | 4 ++-- eas.json | 8 ++++---- providers/JellyfinProvider.tsx | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app.json b/app.json index 6dee6c85a..92ca6861f 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.54.0", + "version": "0.54.1", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -36,7 +36,7 @@ "appleTeamId": "MWD5K362T8" }, "android": { - "versionCode": 93, + "versionCode": 94, "adaptiveIcon": { "foregroundImage": "./assets/images/icon-android-plain.png", "monochromeImage": "./assets/images/icon-android-themed.png", diff --git a/eas.json b/eas.json index 03f933895..3c125b629 100644 --- a/eas.json +++ b/eas.json @@ -52,14 +52,14 @@ }, "production": { "environment": "production", - "channel": "0.54.0", + "channel": "0.54.1", "android": { "image": "latest" } }, "production-apk": { "environment": "production", - "channel": "0.54.0", + "channel": "0.54.1", "android": { "buildType": "apk", "image": "latest" @@ -67,7 +67,7 @@ }, "production-apk-tv": { "environment": "production", - "channel": "0.54.0", + "channel": "0.54.1", "android": { "buildType": "apk", "image": "latest" @@ -78,7 +78,7 @@ }, "production_tv": { "environment": "production", - "channel": "0.54.0", + "channel": "0.54.1", "env": { "EXPO_TV": "1" }, diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 7dff4b366..e6f9853ae 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -53,7 +53,7 @@ const initialApi = (() => { const id = getOrSetDeviceId(); const deviceName = getDeviceNameSync(); const jellyfinInstance = new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.54.0" }, + clientInfo: { name: "Streamyfin", version: "0.54.1" }, deviceInfo: { name: deviceName, id, @@ -128,7 +128,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ const id = getOrSetDeviceId(); const deviceName = getDeviceNameSync(); return new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.54.0" }, + clientInfo: { name: "Streamyfin", version: "0.54.1" }, deviceInfo: { name: deviceName, id, @@ -162,7 +162,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.54.0"`, + }, DeviceId="${deviceId}", Version="0.54.1"`, }; }, [deviceId]);