Add preview images on seek bar. (Works with chapter images by default, also supports JellyScrub.)
Handle removal of already configured shader profiles gracefully.
diff --git a/jellyfin_mpv_shim/player.py b/jellyfin_mpv_shim/player.py index 5cd6797594..7a33713e22 100644 --- a/jellyfin_mpv_shim/player.py +++ b/jellyfin_mpv_shim/player.py @@ -1054,7 +1054,7 @@ def set_osd_settings(self, back_color: str, font_size: int): def enable_osc(self, enabled: bool): if settings.thumbnail_enable and self.trickplay: self.script_message( - "osc-visibility", "always" if enabled else "never", "False" + "osc-visibility", "auto" if enabled else "never", "False" ) else: if hasattr(self._player, "osc"): diff --git a/setup.py b/setup.py index 34040d5801..a777e12abc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="jellyfin-mpv-shim", - version="2.4.1", + version="2.4.2", author="Ian Walton", author_email="iwalton3@gmail.com", description="Cast media from Jellyfin Mobile and Web apps to MPV.",