This commit is contained in:
Fredrik Burmester
2025-02-12 08:31:38 +01:00
parent 9a70f98dd5
commit 76eaeb9820
4 changed files with 7 additions and 6 deletions

View File

@@ -43,6 +43,7 @@ body:
label: Version
description: What version of Streamyfin are you running?
options:
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0

View File

@@ -2,7 +2,7 @@
"expo": {
"name": "Streamyfin",
"slug": "streamyfin",
"version": "0.25.0",
"version": "0.26.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "streamyfin",

View File

@@ -32,20 +32,20 @@
}
},
"production": {
"channel": "0.25.0",
"channel": "0.26.0",
"android": {
"image": "latest"
}
},
"production-apk": {
"channel": "0.25.0",
"channel": "0.26.0",
"android": {
"buildType": "apk",
"image": "latest"
}
},
"production-apk-tv": {
"channel": "0.25.0",
"channel": "0.26.0",
"android": {
"buildType": "apk",
"image": "latest"

View File

@@ -64,7 +64,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
setJellyfin(
() =>
new Jellyfin({
clientInfo: { name: "Streamyfin", version: "0.25.0" },
clientInfo: { name: "Streamyfin", version: "0.26.0" },
deviceInfo: {
name: deviceName,
id,
@@ -109,7 +109,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
return {
authorization: `MediaBrowser Client="Streamyfin", Device=${
Platform.OS === "android" ? "Android" : "iOS"
}, DeviceId="${deviceId}", Version="0.25.0"`,
}, DeviceId="${deviceId}", Version="0.26.0"`,
};
}, [deviceId]);