chore: version

This commit is contained in:
Fredrik Burmester
2025-11-07 08:07:02 +01:00
parent 1ff723b29f
commit e4e1e556bf
3 changed files with 7 additions and 7 deletions

View File

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

View File

@@ -45,14 +45,14 @@
},
"production": {
"environment": "production",
"channel": "0.40.0",
"channel": "0.40.1",
"android": {
"image": "latest"
}
},
"production-apk": {
"environment": "production",
"channel": "0.40.0",
"channel": "0.40.1",
"android": {
"buildType": "apk",
"image": "latest"
@@ -60,7 +60,7 @@
},
"production-apk-tv": {
"environment": "production",
"channel": "0.40.0",
"channel": "0.40.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.40.0" },
clientInfo: { name: "Streamyfin", version: "0.40.1" },
deviceInfo: {
name: deviceName,
id,
@@ -87,7 +87,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
return {
authorization: `MediaBrowser Client="Streamyfin", Device=${
Platform.OS === "android" ? "Android" : "iOS"
}, DeviceId="${deviceId}", Version="0.40.0"`,
}, DeviceId="${deviceId}", Version="0.40.1"`,
};
}, [deviceId]);