diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f9c6df4f..82018c50 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,13 +1,13 @@ name: Bug report description: Create a report to help us improve -title: '[Bug]: ' +title: "[Bug]: " labels: - - ['❌ bug'] -projects: - - ['fredrikburmester/5'] + - ["❌ bug"] +projects: + - ["fredrikburmester/5"] assignees: - fredrikburmester - + body: - type: textarea id: what-happened @@ -43,8 +43,9 @@ body: id: version attributes: label: Version - description: What version of Streamyfin are you running? + description: What version of Streamyfin are you running? options: + - 0.23.0 - 0.22.0 - 0.21.0 - older @@ -54,6 +55,5 @@ body: - type: textarea id: screenshots attributes: - label: - If applicable, please add screenshots to help explain your problem. + label: If applicable, please add screenshots to help explain your problem. You can drag and drop images here or paste them directly into the comment box. diff --git a/app.json b/app.json index 7883be21..cc4325de 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.22.0", + "version": "0.23.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -36,7 +36,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 47, + "versionCode": 49, "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive_icon.png" }, diff --git a/eas.json b/eas.json index ff6a9440..af2b7e82 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.22.0", + "channel": "0.23.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.22.0", + "channel": "0.23.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index da13d08b..497d17dd 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -54,7 +54,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.22.0" }, + clientInfo: { name: "Streamyfin", version: "0.23.0" }, deviceInfo: { name: deviceName, id, @@ -91,7 +91,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.22.0"`, + }, DeviceId="${deviceId}", Version="0.23.0"`, }; }, [deviceId]);