Up version to 1.9.0.

This commit is contained in:
Ian Walton 2021-03-18 01:44:38 -04:00
parent 37ffb7068b
commit 52977e373f
5 changed files with 18 additions and 7 deletions

View File

@ -1,8 +1,8 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Jellyfin MPV Desktop"
#define MyAppVersion "1.8.1"
#define MyAppName "Jellyfin Desktop"
#define MyAppVersion "1.9.0"
#define MyAppPublisher "Ian Walton"
#define MyAppURL "https://github.com/jellyfin/jellyfin-desktop"
#define MyAppExeName "run-desktop.exe"

View File

@ -68,10 +68,10 @@ subtitles. You must either [use the menu](https://github.com/jellyfin/jellyfin-d
Please note the following issues with controlling SyncPlay:
- The desktop client can join SyncPlay groups from the web app's menu, but not create them.
- If you attempt to create a group from the web app's menu, it will break SyncPlay for all users until you close the client or leave the invalid group. ([Link to Issue.](https://github.com/jellyfin/jellyfin-desktop/issues/107))
- If you attempt to join a SyncPlay group when casting to MPV Shim, it will play the media but it will not activate SyncPlay.
- You can, however, proceed to activate SyncPlay [using the menu within MPV](https://github.com/jellyfin/jellyfin-desktop#menu).
- If you would like to create a group or join a group for currently playing media, [use menu within MPV](https://github.com/jellyfin/jellyfin-desktop#menu).
- SyncPlay as of 10.7.0 is new and kind of fragile. You may need to rejoin or even restart the client. Please report any issues you find.
Music playback sort-of works, but repeat, shuffle, and gapless playback have not been implemented and
would require major changes to the application to properly support, as it was built for video.

View File

@ -1,4 +1,4 @@
APP_NAME = "jellyfin-mpv-shim"
USER_APP_NAME = "Jellyfin MPV Shim"
CLIENT_VERSION = "1.8.1"
CLIENT_VERSION = "1.9.0"
USER_AGENT = "Jellyfin-MPV-Shim/%s" % CLIENT_VERSION

View File

@ -60,7 +60,17 @@
<content_rating type="oars-1.1" />
<releases>
<release version="1.8.1" date="2020-12-12">
<release version="1.9.0" date="2021-03-18">
<description>
<p>This release adds support for SyncPlay on 10.7.0. Changes:</p>
<ul>
<li>Speed up closing the player.</li>
<li>Drop SyncPlay 10.6.x support.</li>
<li>Upgrade the web client.</li>
</ul>
</description>
</release>
<release version="1.8.1" date="2020-12-12">
<description>
<p>This is a maintenance update and the last one to support SyncPlay on 1.6.x. Changes:</p>
<ul>

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setup(
name="jellyfin-mpv-shim",
version="1.8.1",
version="1.9.0",
author="Ian Walton",
author_email="iwalton3@gmail.com",
description="Cast media from Jellyfin Mobile and Web apps to MPV.",
@ -26,6 +26,7 @@ setup(
"console_scripts": [
"jellyfin-mpv-shim=jellyfin_mpv_shim.mpv_shim:main",
"jellyfin-mpv-desktop=jellyfin_mpv_shim.mpv_shim:main_desktop",
"jellyfin-desktop=jellyfin_mpv_shim.mpv_shim:main_desktop",
]
},
classifiers=[
@ -50,7 +51,7 @@ setup(
python_requires=">=3.6",
install_requires=[
"python-mpv",
"jellyfin-apiclient-python>=1.6.2",
"jellyfin-apiclient-python>=1.7.0",
"python-mpv-jsonipc>=1.1.9",
"requests",
"pydantic",