From 7c10c467f3263f22e18e7c9b6dbe9f51a64ab041 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Wed, 25 Sep 2024 07:42:41 +0200 Subject: [PATCH] chore --- app.json | 4 ++-- eas.json | 4 ++-- providers/JellyfinProvider.tsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.json b/app.json index b1f99dc8..36c126c2 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.14.0", + "version": "0.15.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -33,7 +33,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 40, + "versionCode": 41, "adaptiveIcon": { "foregroundImage": "./assets/images/icon.png" }, diff --git a/eas.json b/eas.json index b7d775da..1bfada25 100644 --- a/eas.json +++ b/eas.json @@ -21,13 +21,13 @@ } }, "production": { - "channel": "0.14.0", + "channel": "0.15.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.14.0", + "channel": "0.15.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 967f6445..2ae72c73 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -63,7 +63,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.14.0" }, + clientInfo: { name: "Streamyfin", version: "0.15.0" }, deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id }, }) ); @@ -97,7 +97,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.14.0"`, + }, DeviceId="${deviceId}", Version="0.15.0"`, }; }, [deviceId]);