From e09bbb2449889b2122d3394f44caf7c72b4f93d6 Mon Sep 17 00:00:00 2001 From: Xameon42 <142261328+Xameon42@users.noreply.github.com> Date: Tue, 5 Dec 2023 15:35:34 +0100 Subject: [PATCH] Bump version, add custom note and remove testing branch from building --- .github/workflows/main.yml | 1 - Jellyfin MPV Shim.iss | 2 +- jellyfin_mpv_shim/constants.py | 2 +- .../com.github.iwalton3.jellyfin-mpv-shim.appdata.xml | 7 +++++++ setup.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3e4f314bdc..54ccc7cf8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,6 @@ on: push: branches: - master - - testing jobs: build-win64: runs-on: windows-latest diff --git a/Jellyfin MPV Shim.iss b/Jellyfin MPV Shim.iss index 6e3be6236b..7f89b12980 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.6.0" +#define MyAppVersion "2.7.0-custom" #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 47f3711bc2..16434db587 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.6.0" +CLIENT_VERSION = "2.7.0-custom" 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 dd67ad818b..6eb09902db 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 @@ -57,6 +57,13 @@ + + + + Add highly experimental skip credits/outro support + Updated to master branch + + diff --git a/setup.py b/setup.py index 08b1856f39..ada30e2d28 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="jellyfin-mpv-shim", - version="2.6.0", + version="2.7.0-custom", author="Ian Walton", author_email="iwalton3@gmail.com", description="Cast media from Jellyfin Mobile and Web apps to MPV.",
Add highly experimental skip credits/outro support
Updated to master branch