From dc02db646372480122c3f24d96b6758736e58dc2 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Thu, 29 Aug 2024 09:11:50 +0200 Subject: [PATCH] chore: version --- 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 2a9b1e60..d14d982c 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.10.0", + "version": "0.10.1", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -33,7 +33,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 29, + "versionCode": 30, "adaptiveIcon": { "foregroundImage": "./assets/images/icon.png" }, diff --git a/eas.json b/eas.json index 299b5e9c..fe95ec60 100644 --- a/eas.json +++ b/eas.json @@ -21,13 +21,13 @@ } }, "production": { - "channel": "0.10.0", + "channel": "0.10.1", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.10.0", + "channel": "0.10.1", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 25e1f510..311b5e52 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.10.0" }, + clientInfo: { name: "Streamyfin", version: "0.10.1" }, 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.10.0"`, + }, DeviceId="${deviceId}", Version="0.10.1"`, }; }, [deviceId]);