From 59df18621b766fbe5813064bde27d5c92e4d7ff3 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Mon, 14 Jul 2025 15:12:56 +0200 Subject: [PATCH] chore: version --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- app.json | 2 +- eas.json | 9 ++++----- providers/JellyfinProvider.tsx | 4 ++-- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index bfee8601..5ba823bb 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -43,7 +43,7 @@ body: label: Version description: What version of Streamyfin are you running? options: - - 0.28.1 + - 0.29.0 - 0.28.0 - 0.27.0 - 0.26.1 diff --git a/app.json b/app.json index 823f085f..a7499e08 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.28.1", + "version": "0.29.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index a51b7f46..96fa99e0 100644 --- a/eas.json +++ b/eas.json @@ -1,7 +1,6 @@ { "cli": { - "version": ">= 9.1.0", - "appVersionSource": "local" + "version": ">= 9.1.0" }, "build": { "development": { @@ -47,14 +46,14 @@ }, "production": { "environment": "production", - "channel": "0.28.1", + "channel": "0.29.0", "android": { "image": "latest" } }, "production-apk": { "environment": "production", - "channel": "0.28.1", + "channel": "0.29.0", "android": { "buildType": "apk", "image": "latest" @@ -62,7 +61,7 @@ }, "production-apk-tv": { "environment": "production", - "channel": "0.28.1", + "channel": "0.29.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 52ed9db8..78d67ee7 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.28.1" }, + clientInfo: { name: "Streamyfin", version: "0.29.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.28.1"`, + }, DeviceId="${deviceId}", Version="0.29.0"`, }; }, [deviceId]);