From bc081b535e7c866c452106ee76686b8288046da1 Mon Sep 17 00:00:00 2001 From: herrrta <73949927+herrrta@users.noreply.github.com> Date: Fri, 21 Mar 2025 20:22:31 -0400 Subject: [PATCH] chore: version bump --- .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 a011a538..ca68dc43 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.28.0 - 0.27.0 - 0.26.1 - 0.26.0 diff --git a/app.json b/app.json index 8f10deb3..19a35516 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.27.0", + "version": "0.28.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index 0df93411..39e6e913 100644 --- a/eas.json +++ b/eas.json @@ -32,20 +32,20 @@ } }, "production": { - "channel": "0.27.0", + "channel": "0.28.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.27.0", + "channel": "0.28.0", "android": { "buildType": "apk", "image": "latest" } }, "production-apk-tv": { - "channel": "0.27.0", + "channel": "0.28.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index b8bab659..5c3401b6 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.27.0" }, + clientInfo: { name: "Streamyfin", version: "0.28.0" }, deviceInfo: { name: deviceName, id, @@ -93,7 +93,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.27.0"`, + }, DeviceId="${deviceId}", Version="0.28.0"`, }; }, [deviceId]);