Fix appstream.

This commit is contained in:
Izzie Walton 2024-05-14 02:38:59 -04:00
parent f95f0b06fc
commit ba299689b8
3 changed files with 5 additions and 2 deletions

View File

@ -68,7 +68,7 @@ fi
current_version=$(get_resource_version jellyfin/jellyfin-mpv-shim) current_version=$(get_resource_version jellyfin/jellyfin-mpv-shim)
current_version=${current_version:1} current_version=${current_version:1}
constants_version=$(cat jellyfin_mpv_shim/constants.py | grep '^CLIENT_VERSION' | cut -d '"' -f 2) constants_version=$(cat jellyfin_mpv_shim/constants.py | grep '^CLIENT_VERSION' | cut -d '"' -f 2)
setup_version=$(grep 'version=' setup.py | cut -d '"' -f 2) setup_version=$(grep 'version=' setup.py | cut -d '"' -f 2 | sed 's/.post.*//g')
iss_version=$(grep '^#define MyAppVersion' "Jellyfin MPV Shim.iss" | cut -d '"' -f 2) iss_version=$(grep '^#define MyAppVersion' "Jellyfin MPV Shim.iss" | cut -d '"' -f 2)
appdata_version=$(grep 'release version="' jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml | \ appdata_version=$(grep 'release version="' jellyfin_mpv_shim/integration/com.github.iwalton3.jellyfin-mpv-shim.appdata.xml | \
head -n 1 | cut -d '"' -f 2) head -n 1 | cut -d '"' -f 2)

View File

@ -63,11 +63,14 @@
<releases> <releases>
<release version="2.7.0" date="2024-05-13"> <release version="2.7.0" date="2024-05-13">
<description> <description>
<p>Changes:</p>
<ul>
<li>Switch to native Jellyfin Trickplay support.</li> <li>Switch to native Jellyfin Trickplay support.</li>
<li>Update mpv version to latest git version.</li> <li>Update mpv version to latest git version.</li>
<li>Fix support for newer MPV versions. (#377)</li> <li>Fix support for newer MPV versions. (#377)</li>
<li>Make log level configurable. (#379)</li> <li>Make log level configurable. (#379)</li>
<li>Fix icon title. (#380)</li> <li>Fix icon title. (#380)</li>
</ul>
</description> </description>
</release> </release>
<release version="2.6.0" date="2023-03-07"> <release version="2.6.0" date="2023-03-07">

View File

@ -37,7 +37,7 @@ if not sys.platform.startswith("win32"):
setup( setup(
name="jellyfin-mpv-shim", name="jellyfin-mpv-shim",
version="2.7.0", version="2.7.0.post1",
author="Izzie Walton", author="Izzie Walton",
author_email="izzie@iwalton.com", author_email="izzie@iwalton.com",
description="Cast media from Jellyfin Mobile and Web apps to MPV.", description="Cast media from Jellyfin Mobile and Web apps to MPV.",