This commit is contained in:
Fredrik Burmester
2024-08-14 10:10:45 +02:00
parent 0dc32d58cf
commit fdd07dce3b
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
"expo": {
"name": "Streamyfin",
"slug": "streamyfin",
"version": "0.4.1",
"version": "0.4.2",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "streamyfin",
@@ -35,7 +35,7 @@
},
"android": {
"jsEngine": "hermes",
"versionCode": 14,
"versionCode": 15,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png"
},

View File

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

View File

@@ -56,7 +56,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
setJellyfin(
() =>
new Jellyfin({
clientInfo: { name: "Streamyfin", version: "0.4.1" },
clientInfo: { name: "Streamyfin", version: "0.4.2" },
deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id },
}),
);