diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 284fd980..a011a538 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.27.0 - 0.26.1 - 0.26.0 - 0.25.0 diff --git a/app.json b/app.json index 234cad89..140a7f9a 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.26.1", + "version": "0.27.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", diff --git a/eas.json b/eas.json index ffcf9125..0df93411 100644 --- a/eas.json +++ b/eas.json @@ -32,20 +32,20 @@ } }, "production": { - "channel": "0.26.1", + "channel": "0.27.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.26.1", + "channel": "0.27.0", "android": { "buildType": "apk", "image": "latest" } }, "production-apk-tv": { - "channel": "0.26.1", + "channel": "0.27.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 463cc3f6..ea473d43 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -61,7 +61,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.26.1" }, + clientInfo: { name: "Streamyfin", version: "0.27.0" }, deviceInfo: { name: deviceName, id, @@ -90,7 +90,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.26.1"`, + }, DeviceId="${deviceId}", Version="0.27.0"`, }; }, [deviceId]);