chore: version bump

This commit is contained in:
Fredrik Burmester
2025-08-15 21:45:37 +02:00
parent 5384c34b27
commit b7221e5599
3 changed files with 6 additions and 6 deletions

View File

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

View File

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