Skip to content

Commit

Permalink
Up version to 2.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwalton3 committed May 13, 2024
1 parent bfa2727 commit 0c87625
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Jellyfin MPV Shim.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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"
#define MyAppPublisher "Izzie Walton"
#define MyAppURL "https://github.com/jellyfin/jellyfin-mpv-shim"
#define MyAppExeName "run.exe"
Expand Down
2 changes: 1 addition & 1 deletion jellyfin_mpv_shim/constants.py
Original file line number Diff line number Diff line change
@@ -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"
USER_AGENT = "Jellyfin-MPV-Shim/%s" % CLIENT_VERSION
CAPABILITIES = {
"PlayableMediaTypes": "Video",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
MPV media player. The application runs in the background and opens MPV only
when media is cast to the player. The player supports most file formats, allowing you
to prevent needless transcoding of your media files on the server. The player also has
advanced features, such as bulk subtitle updates and launching commands on events.
advanced features, such as bulk subtitle updates and launching commands on events.
</p>
<p>
Please read the detailed instructions on GitHub for more details, including usage
Expand Down Expand Up @@ -58,6 +58,12 @@

<content_rating type="oars-1.1" />
<releases>
<release version="2.7.0" date="2024-05-13">
<description>
<li>Switch to native Jellyfin Trickplay support.</li>
<li>Update runtimes.</li>
</description>
</release>
<release version="2.6.0" date="2023-03-07">
<description>
<p>Disable built-in MPV playback resuming. (#323)</p>
Expand Down
18 changes: 16 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from setuptools import setup
import sys
import os

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -16,17 +17,30 @@
extras["all"] += win_extra
extras["mirror"] += win_extra

packages = [
"jellyfin_mpv_shim",
"jellyfin_mpv_shim.display_mirror",
"jellyfin_mpv_shim.messages",
"jellyfin_mpv_shim.default_shader_pack",
"jellyfin_mpv_shim.default_shader_pack.shaders",
"jellyfin_mpv_shim.integration"
]

for dir in os.listdir("jellyfin_mpv_shim/messages"):
if os.path.isdir("jellyfin_mpv_shim/messages/" + dir + "/LC_MESSAGES"):
packages.append("jellyfin_mpv_shim.messages." + dir + ".LC_MESSAGES")

setup(
name="jellyfin-mpv-shim",
version="2.6.0",
version="2.7.0",
author="Izzie Walton",
author_email="[email protected]",
description="Cast media from Jellyfin Mobile and Web apps to MPV.",
license="GPLv3",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jellyfin/jellyfin-mpv-shim",
packages=["jellyfin_mpv_shim", "jellyfin_mpv_shim.display_mirror"],
packages=packages,
package_data={
"jellyfin_mpv_shim.display_mirror": ["*.css", "*.html"],
"jellyfin_mpv_shim": ["systray.png"],
Expand Down

0 comments on commit 0c87625

Please sign in to comment.