From 344820139eb71f9922e5b6a65b2baa5a62766f29 Mon Sep 17 00:00:00 2001 From: Ian Walton Date: Sat, 11 Jun 2022 01:16:22 -0400 Subject: [PATCH] Up release version to 2.1.0. --- Jellyfin MPV Shim.iss | 2 +- jellyfin_mpv_shim/constants.py | 2 +- .../com.github.iwalton3.jellyfin-mpv-shim.appdata.xml | 11 +++++++++++ setup.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Jellyfin MPV Shim.iss b/Jellyfin MPV Shim.iss index 7fe07bab20..5532055067 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.0.2" +#define MyAppVersion "2.1.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 e8cf9b00ae..3ee0892a1f 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.0.2" +CLIENT_VERSION = "2.1.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 9da7339c3d..3a966c6a51 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,17 @@ + + +

Upgrade to MPV version 20220515 9467772.

+

Add flag for force_set_played due to double trakt play issue.

+

Prevent multiple unwanted update checks.

+

Fix to work with python-mpv 1.0 and MPV library v2.

+

Add play_cmd and idle_ended_cmd. (#225)

+

Allow disabling raise_mpv and also only do it once per play. (#218)

+

Make transcode termination failure non-fatal. (#259)

+
+

Upgrade to MPV version 20211212 0e76372.

diff --git a/setup.py b/setup.py index a21e668359..5135876f19 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="jellyfin-mpv-shim", - version="2.0.2", + version="2.1.0", author="Ian Walton", author_email="iwalton3@gmail.com", description="Cast media from Jellyfin Mobile and Web apps to MPV.",