diff --git a/app.json b/app.json index da2cee2c..9e227a49 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.17.0", + "version": "0.18.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -33,7 +33,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 44, + "versionCode": 46, "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive_icon.png" }, diff --git a/eas.json b/eas.json index 5583d89f..6c42b511 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.17.0", + "channel": "0.18.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.17.0", + "channel": "0.18.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index b4c82b19..b1e5dda7 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -52,7 +52,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.17.0" }, + clientInfo: { name: "Streamyfin", version: "0.18.0" }, deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id }, }) ); @@ -86,7 +86,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.17.0"`, + }, DeviceId="${deviceId}", Version="0.18.0"`, }; }, [deviceId]);