Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikburmester committed Sep 25, 2024
1 parent eff12b7 commit 7c10c46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"android": {
"jsEngine": "hermes",
"versionCode": 40,
"versionCode": 41,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png"
},
Expand Down
4 changes: 2 additions & 2 deletions eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions providers/JellyfinProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
})
);
Expand Down Expand Up @@ -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]);

Expand Down

0 comments on commit 7c10c46

Please sign in to comment.