This commit is contained in:
Fredrik Burmester
2024-10-15 20:00:17 +02:00
parent c7901c759a
commit 3916c94f36
4 changed files with 5 additions and 6 deletions

View File

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

View File

@@ -225,7 +225,6 @@ export default function page() {
setAudioTrack={videoRef.current?.setAudioTrack}
setSubtitleTrack={videoRef.current?.setSubtitleTrack}
setSubtitleURL={videoRef.current?.setSubtitleURL}
mediaSource={undefined}
/>
)}
</View>

View File

@@ -22,13 +22,13 @@
}
},
"production": {
"channel": "0.18.0",
"channel": "0.19.0",
"android": {
"image": "latest"
}
},
"production-apk": {
"channel": "0.18.0",
"channel": "0.19.0",
"android": {
"buildType": "apk",
"image": "latest"

View File

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