diff --git a/app.json b/app.json index e9cb10da..a4f42658 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.21.0", + "version": "0.22.0", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -34,7 +34,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 46, + "versionCode": 47, "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive_icon.png" }, diff --git a/components/downloads/MovieCard.tsx b/components/downloads/MovieCard.tsx index 2feb5fda..1340c562 100644 --- a/components/downloads/MovieCard.tsx +++ b/components/downloads/MovieCard.tsx @@ -4,16 +4,16 @@ import { } from "@expo/react-native-action-sheet"; import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models"; import * as Haptics from "expo-haptics"; -import React, {useCallback, useEffect, useMemo, useState} from "react"; +import React, { useCallback, useMemo } from "react"; import { TouchableOpacity, View } from "react-native"; +import { DownloadSize } from "@/components/downloads/DownloadSize"; import { useDownloadedFileOpener } from "@/hooks/useDownloadedFileOpener"; import { useDownload } from "@/providers/DownloadProvider"; import { storage } from "@/utils/mmkv"; import { Ionicons } from "@expo/vector-icons"; import { Image } from "expo-image"; import { ItemCardText } from "../ItemCardText"; -import {DownloadSize} from "@/components/downloads/DownloadSize"; interface MovieCardProps { item: BaseItemDto; diff --git a/eas.json b/eas.json index 336a9d1b..ff6a9440 100644 --- a/eas.json +++ b/eas.json @@ -22,13 +22,13 @@ } }, "production": { - "channel": "0.21.0", + "channel": "0.22.0", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.21.0", + "channel": "0.22.0", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index 88e13292..da13d08b 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -54,7 +54,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.21.0" }, + clientInfo: { name: "Streamyfin", version: "0.22.0" }, deviceInfo: { name: deviceName, id, @@ -91,7 +91,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ return { authorization: `MediaBrowser Client="Streamyfin", Device=${ Platform.OS === "android" ? "Android" : "iOS" - }, DeviceId="${deviceId}", Version="0.21.0"`, + }, DeviceId="${deviceId}", Version="0.22.0"`, }; }, [deviceId]);