chore: version

This commit is contained in:
Fredrik Burmester
2024-08-29 09:11:50 +02:00
parent c168d79377
commit dc02db6463
3 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -21,13 +21,13 @@
}
},
"production": {
"channel": "0.10.0",
"channel": "0.10.1",
"android": {
"image": "latest"
}
},
"production-apk": {
"channel": "0.10.0",
"channel": "0.10.1",
"android": {
"buildType": "apk",
"image": "latest"

View File

@@ -62,7 +62,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
setJellyfin(
() =>
new Jellyfin({
clientInfo: { name: "Streamyfin", version: "0.10.0" },
clientInfo: { name: "Streamyfin", version: "0.10.1" },
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.10.0"`,
}, DeviceId="${deviceId}", Version="0.10.1"`,
};
}, [deviceId]);