This commit is contained in:
Fredrik Burmester
2024-08-27 12:05:25 +02:00
parent 91ed109a04
commit e0afb68f0c
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
"expo": {
"name": "Streamyfin",
"slug": "streamyfin",
"version": "0.8.4",
"version": "0.9.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "streamyfin",
@@ -33,7 +33,7 @@
},
"android": {
"jsEngine": "hermes",
"versionCode": 26,
"versionCode": 27,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png"
},

View File

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