From e0afb68f0cf1e5cd939ff8cfc6f88855aea3d660 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 27 Aug 2024 12:05:25 +0200 Subject: [PATCH] chore --- app.json | 4 ++-- providers/JellyfinProvider.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app.json b/app.json index 1cdee583..3cd8abbb 100644 --- a/app.json +++ b/app.json @@ -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" }, diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index f8df5c86..83350dd1 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -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]);