chore: version

This commit is contained in:
Fredrik Burmester
2025-07-14 15:12:56 +02:00
parent 0021b94e00
commit 59df18621b
4 changed files with 8 additions and 9 deletions

View File

@@ -43,7 +43,7 @@ body:
label: Version
description: What version of Streamyfin are you running?
options:
- 0.28.1
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.1

View File

@@ -2,7 +2,7 @@
"expo": {
"name": "Streamyfin",
"slug": "streamyfin",
"version": "0.28.1",
"version": "0.29.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "streamyfin",

View File

@@ -1,7 +1,6 @@
{
"cli": {
"version": ">= 9.1.0",
"appVersionSource": "local"
"version": ">= 9.1.0"
},
"build": {
"development": {
@@ -47,14 +46,14 @@
},
"production": {
"environment": "production",
"channel": "0.28.1",
"channel": "0.29.0",
"android": {
"image": "latest"
}
},
"production-apk": {
"environment": "production",
"channel": "0.28.1",
"channel": "0.29.0",
"android": {
"buildType": "apk",
"image": "latest"
@@ -62,7 +61,7 @@
},
"production-apk-tv": {
"environment": "production",
"channel": "0.28.1",
"channel": "0.29.0",
"android": {
"buildType": "apk",
"image": "latest"

View File

@@ -64,7 +64,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
setJellyfin(
() =>
new Jellyfin({
clientInfo: { name: "Streamyfin", version: "0.28.1" },
clientInfo: { name: "Streamyfin", version: "0.29.0" },
deviceInfo: {
name: deviceName,
id,
@@ -93,7 +93,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
return {
authorization: `MediaBrowser Client="Streamyfin", Device=${
Platform.OS === "android" ? "Android" : "iOS"
}, DeviceId="${deviceId}", Version="0.28.1"`,
}, DeviceId="${deviceId}", Version="0.29.0"`,
};
}, [deviceId]);