From 76eaeb982039d5978ca47e0be3e834d60762c882 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Wed, 12 Feb 2025 08:31:38 +0100 Subject: [PATCH] chore --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + app.json | 2 +- eas.json | 6 +++--- providers/JellyfinProvider.tsx | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a38e5f84..020c5c20 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -43,6 +43,7 @@ body: label: Version description: What version of Streamyfin are you running? options: + - 0.26.0 - 0.25.0 - 0.24.0 - 0.23.0 diff --git a/app.json b/app.json index f3a3c6d8..1155d5a4 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.25.0", + "version": "0.26.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index 5686ecec..0df010d3 100644 --- a/eas.json +++ b/eas.json @@ -32,20 +32,20 @@ } }, "production": { - "channel": "0.25.0", + "channel": "0.26.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.25.0", + "channel": "0.26.0", "android": { "buildType": "apk", "image": "latest" } }, "production-apk-tv": { - "channel": "0.25.0", + "channel": "0.26.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 222417ef..3dd1e7ef 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -64,7 +64,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.25.0" }, + clientInfo: { name: "Streamyfin", version: "0.26.0" }, deviceInfo: { name: deviceName, id, @@ -109,7 +109,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.25.0"`, + }, DeviceId="${deviceId}", Version="0.26.0"`, }; }, [deviceId]);