chore: version

This commit is contained in:
Fredrik Burmester
2025-08-18 09:17:24 +02:00
parent a8810cae8a
commit 4fed25a3ab
3 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
"expo": {
"name": "Streamyfin",
"slug": "streamyfin",
"version": "0.30.2",
"version": "0.31.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "streamyfin",
@@ -37,7 +37,7 @@
},
"android": {
"jsEngine": "hermes",
"versionCode": 58,
"versionCode": 59,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon-android-plain.png",
"monochromeImage": "./assets/images/icon-android-themed.png",

View File

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