Up release version to 2.1.0.

This commit is contained in:
Ian Walton 2022-06-11 01:16:22 -04:00
parent bfa67acbde
commit 344820139e
4 changed files with 14 additions and 3 deletions

View File

@ -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"

View File

@ -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",

View File

@ -58,6 +58,17 @@
<content_rating type="oars-1.1" />
<releases>
<release version="2.1.0" date="2022-06-11">
<description>
<p>Upgrade to MPV version 20220515 9467772.</p>
<p>Add flag for force_set_played due to double trakt play issue.</p>
<p>Prevent multiple unwanted update checks.</p>
<p>Fix to work with python-mpv 1.0 and MPV library v2.</p>
<p>Add play_cmd and idle_ended_cmd. (#225)</p>
<p>Allow disabling raise_mpv and also only do it once per play. (#218)</p>
<p>Make transcode termination failure non-fatal. (#259)</p>
</description>
</release>
<release version="2.0.2" date="2021-12-22">
<description>
<p>Upgrade to MPV version 20211212 0e76372.</p>

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
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.",