diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1ac06eda..c8f30a95 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.24.0 + - 0.25.0 - 0.22.0 - 0.21.0 - older diff --git a/app.json b/app.json index d0023760..fc2c4505 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.24.0", + "version": "0.25.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index 8ce5fc71..9821cceb 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.24.0", + "channel": "0.25.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.24.0", + "channel": "0.25.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 57dd94c6..f4ccce75 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -55,7 +55,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.24.0" }, + clientInfo: { name: "Streamyfin", version: "0.25.0" }, deviceInfo: { name: deviceName, id, @@ -92,7 +92,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.24.0"`, + }, DeviceId="${deviceId}", Version="0.25.0"`, }; }, [deviceId]);