Skip to content

Commit 868edbf

Browse files
committed
Merge remote-tracking branch 'origin/master' into prerelease
2 parents 6d28d52 + 33fbda2 commit 868edbf

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,18 @@ jobs:
2828
python3 ./scripts/fix-webengine.py ./build/output/Jellyfin\ Media\ Player.app
2929
codesign --force --deep -s - ./build/output/Jellyfin\ Media\ Player.app/
3030
brew install create-dmg
31-
create-dmg --volname "Jellyfin Media Player" --no-internet-enable "JellyfinMediaPlayer.dmg" "./build/output/Jellyfin Media Player.app"
31+
attempts=0
32+
while [[ "$attempts" -lt 10 ]]
33+
do
34+
attempts=$((attempts+1))
35+
create-dmg --volname "Jellyfin Media Player" --no-internet-enable "JellyfinMediaPlayer.dmg" "./build/output/Jellyfin Media Player.app" && break || echo "dmg create failed, retrying..."
36+
sleep 5
37+
done
38+
if ! [[ -e JellyfinMediaPlayer.dmg ]]
39+
then
40+
echo "Failed to create dmg after 10 attempts"
41+
exit 1
42+
fi
3243
- name: Archive production artifacts
3344
uses: actions/upload-artifact@v4
3445
with:

CMakeModules/VersionConfiguration.cmake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ else()
2121
endif()
2222

2323
set(VERSION_MAJOR 1)
24-
set(VERSION_MINOR 11)
25-
set(VERSION_NANO 1)
24+
set(VERSION_MINOR 12)
25+
set(VERSION_NANO 0)
2626

2727
option(UPGRADE_DEBUG "" OFF)
2828

29-
set(VERSION_STRING "1.11.1")
30-
set(VERSION_STRING_SHORT "1.11.1")
31-
set(CANONICAL_VERSION_STRING "1.11.1")
29+
set(VERSION_STRING "1.12.0")
30+
set(VERSION_STRING_SHORT "1.12.0")
31+
set(CANONICAL_VERSION_STRING "1.12.0")
3232

3333
configure_file(src/core/Version.cpp.in src/core/Version.cpp)

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
jellyfin-media-player (1.12.0-1) unstable; urgency=medium
2+
3+
* Prevent issue where wayland has black screen due to broken gpu accel (#165, #610)
4+
* Prevent SRT text being squished and unreadable (#643)
5+
* Handle server connection timeout. (#747)
6+
* Remove obsolete skip intro support.
7+
* Update branding
8+
* Fix caching issues to prevent broken web client when the server web version updates
9+
* Auto fill last used server into server box if server connection fails on startup
10+
11+
-- Izzie Walton <[email protected]> Tue, 18 Mar 2025 10:50:29 -0400
12+
113
jellyfin-media-player (1.11.1-1) unstable; urgency=medium
214

315
* Fix client not connecting to servers with baseurl set.

resources/meta/com.github.iwalton3.jellyfin-media-player.appdata.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,20 @@
4242
<category>TV</category>
4343
</categories>
4444
<releases>
45+
<release version="1.12.0" date="2025-03-18">
46+
<description>
47+
<p>Changes:</p>
48+
<ul>
49+
<li>Prevent issue where wayland has black screen due to broken gpu accel (#165, #610)</li>
50+
<li>Prevent SRT text being squished and unreadable (#643)</li>
51+
<li>Handle server connection timeout. (#747)</li>
52+
<li>Remove obsolete skip intro support.</li>
53+
<li>Update branding</li>
54+
<li>Fix caching issues to prevent broken web client when the server web version updates</li>
55+
<li>Auto fill last used server into server box if server connection fails on startup</li>
56+
</ul>
57+
</description>
58+
</release>
4559
<release version="1.11.1" date="2024-06-07">
4660
<description>
4761
<p>Changes:</p>

0 commit comments

Comments
 (0)