From 82683407da1621a0f7df3540594814dd9f5c2609 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sun, 16 Nov 2025 11:25:17 +0100 Subject: [PATCH] chore: version --- app.json | 4 ++-- bun.lock | 2 +- eas.json | 6 +++--- providers/JellyfinProvider.tsx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app.json b/app.json index 8fe446c8..5d4e9f4a 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.47.1", + "version": "0.48.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -34,7 +34,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 84, + "versionCode": 85, "adaptiveIcon": { "foregroundImage": "./assets/images/icon-android-plain.png", "monochromeImage": "./assets/images/icon-android-themed.png", diff --git a/bun.lock b/bun.lock index e188abe8..dd10c6b7 100644 --- a/bun.lock +++ b/bun.lock @@ -98,7 +98,7 @@ "husky": "^9.1.7", "lint-staged": "^16.2.6", "react-test-renderer": "19.1.1", - "typescript": "^5.9.3", + "typescript": "~5.9.3", }, }, }, diff --git a/eas.json b/eas.json index 1504100a..08f54fd4 100644 --- a/eas.json +++ b/eas.json @@ -45,14 +45,14 @@ }, "production": { "environment": "production", - "channel": "0.47.1", + "channel": "0.48.0", "android": { "image": "latest" } }, "production-apk": { "environment": "production", - "channel": "0.47.1", + "channel": "0.48.0", "android": { "buildType": "apk", "image": "latest" @@ -60,7 +60,7 @@ }, "production-apk-tv": { "environment": "production", - "channel": "0.47.1", + "channel": "0.48.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index c19c60ce..2c92112e 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -64,7 +64,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.47.1" }, + clientInfo: { name: "Streamyfin", version: "0.48.0" }, deviceInfo: { name: deviceName, id, @@ -87,7 +87,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.47.1"`, + }, DeviceId="${deviceId}", Version="0.48.0"`, }; }, [deviceId]);