diff --git a/Jellyfin MPV Shim.iss b/Jellyfin MPV Shim.iss index e638a60973..3fd5d85670 100644 --- a/Jellyfin MPV Shim.iss +++ b/Jellyfin MPV Shim.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Jellyfin MPV Shim" -#define MyAppVersion "2.4.2" +#define MyAppVersion "2.5.0" #define MyAppPublisher "Ian Walton" #define MyAppURL "https://github.com/jellyfin/jellyfin-mpv-shim" #define MyAppExeName "run.exe" diff --git a/jellyfin_mpv_shim/constants.py b/jellyfin_mpv_shim/constants.py index e126d0479d..ad60aa2f15 100644 --- a/jellyfin_mpv_shim/constants.py +++ b/jellyfin_mpv_shim/constants.py @@ -1,6 +1,6 @@ APP_NAME = "jellyfin-mpv-shim" USER_APP_NAME = "Jellyfin MPV Shim" -CLIENT_VERSION = "2.4.2" +CLIENT_VERSION = "2.5.0" USER_AGENT = "Jellyfin-MPV-Shim/%s" % CLIENT_VERSION CAPABILITIES = { "PlayableMediaTypes": "Video", diff --git a/jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml b/jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml index 19d639506e..a137660b64 100644 --- a/jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml +++ b/jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml @@ -58,6 +58,15 @@ + + +

Fix thread hang when quitting application. (#317)

+

Fix direct paths in external mpv. (#316)

+

Ignore chapters which do not have images for trickplay.

+

Fix script support and map config folder to MPV (including scripts/fonts). (#320) (#321)

+

Add thumbfast compatibility layer to support alternate OSCs. (#321)

+
+

Add preview images on seek bar. (Works with chapter images by default, also supports JellyScrub.)

diff --git a/setup.py b/setup.py index bd487cab50..fdc1280fb7 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="jellyfin-mpv-shim", - version="2.4.2", + version="2.5.0", author="Ian Walton", author_email="iwalton3@gmail.com", description="Cast media from Jellyfin Mobile and Web apps to MPV.",