This commit is contained in:
Fredrik Burmester
2025-07-14 15:48:17 +02:00
parent 59df18621b
commit 61c783fb55
3 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -46,14 +46,14 @@
},
"production": {
"environment": "production",
"channel": "0.29.0",
"channel": "0.29.1",
"android": {
"image": "latest"
}
},
"production-apk": {
"environment": "production",
"channel": "0.29.0",
"channel": "0.29.1",
"android": {
"buildType": "apk",
"image": "latest"
@@ -61,7 +61,7 @@
},
"production-apk-tv": {
"environment": "production",
"channel": "0.29.0",
"channel": "0.29.1",
"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.29.0" },
clientInfo: { name: "Streamyfin", version: "0.29.1" },
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.29.0"`,
}, DeviceId="${deviceId}", Version="0.29.1"`,
};
}, [deviceId]);