chore: version

This commit is contained in:
Fredrik Burmester
2024-08-21 21:05:53 +02:00
parent a54da1c3dc
commit 1a47ade4dc
3 changed files with 5 additions and 5 deletions

View File

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

View File

@@ -21,13 +21,13 @@
}
},
"production": {
"channel": "0.7.0",
"channel": "0.8.0",
"android": {
"image": "latest"
}
},
"production-apk": {
"channel": "0.7.0",
"channel": "0.8.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.7.0" },
clientInfo: { name: "Streamyfin", version: "0.8.0" },
deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id },
})
);