Commit Graph

27435 Commits

Author SHA1 Message Date
mani
3dd1de3d9c Fix CRT shader: use plain &crtShader=true query param in TranscodingUrl
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
Previous approach used streamOptions[crtShader]=true (wrong format).
ParseStreamOptions on the server reads IQueryCollection directly and
stores keys verbatim — so streamOptions[crtShader] becomes the key,
not crtShader, and TryGetValue("crtShader") always returns false.

Plain &crtShader=true works because ParseStreamOptions adds any
lowercase-starting query param directly to the StreamOptions dict.

Also remove the dead PlaybackInfoDto.StreamOptions code — that DTO
has no StreamOptions field, so it was silently ignored.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-25 22:23:24 +01:00
mani
d14f15a2f8 Fix CRT shader: pass streamOptions via PlaybackInfo body, not URL
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
The previous approach of appending streamOptions[crtShader]=true to
the transcoding URL didn't work — the server only reads StreamOptions
from the PlaybackInfo request body (PlaybackInfoDto), not from the
streaming endpoint URL query string.

Pass streamOptions as part of the getPlaybackInfo query so the server
embeds them in the TranscodingUrl. Also propagate crtShadowMask the
same way. Remove the broken URL-appending code.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-25 21:36:59 +01:00
mani
de2a29621d Fix CRT shader: add AllowVideoStreamCopy=false to force re-encode
Some checks failed
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Without this the server chooses codec:copy (container remux MKV→HLS)
which runs no filter chain at all. The CRT shader requires actual
video decoding and re-encoding through program_opencl.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-25 02:51:45 +01:00
mani
f6fce9eae8 Fix CRT shader: force transcoding when enabling filter
When setCrtShader(true) was called the stream restart passed an empty
params object to changeStream(), which left EnableDirectPlay/EnableDirectStream
undefined. Due to JavaScript loose equality (undefined != null === false)
these were never sent to the server, so the server could return a Direct Play
MediaSource and our streamOptions[crtShader] append on TranscodingUrl was
never reached — resulting in no visual effect.

Fix: pass EnableDirectPlay:false, EnableDirectStream:false when enabling CRT
to force the server to transcode. When disabling, empty params restore the
default negotiation so the server can resume direct play if eligible.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 14:19:31 +01:00
mani
0b4b125519 Add CRT shader toggle to player settings menu
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
Adds a per-session CRT-Lottes shader toggle in the video player settings
menu (shown when transcoding is available). Toggling restarts the stream
with streamOptions[crtShader]=true appended to the TranscodingUrl, which
the server picks up to apply the OpenCL CRT post-processing filter.

- playersettingsmenu: showCrtMenu() (On/Off actionsheet), menu entry with
  current state as aside text, handleSelectedOption case
- playbackmanager: isCrtShaderEnabled(), setCrtShader(enabled, shadowMask)
  methods; createStreamInfo appends CRT stream options to TranscodingUrl

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 13:53:56 +01:00
mani
c66db4e18d Merge tag 'v10.11.6' into release-10.11.z
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
2026-01-20 14:18:42 +01:00
Jellyfin Release Bot
ea2abad3e1 Bump version to 10.11.6 2026-01-18 20:03:02 -05:00
Bill Thornton
6d8c8c0566 Merge pull request #7500 from thornbill/bring-back-back
Restore back button in experimental layout for apps
2026-01-16 13:09:38 -05:00
Bill Thornton
a2855c785e Merge pull request #7499 from thornbill/default-font
Add default font family for fallback
2026-01-16 11:39:23 -05:00
Bill Thornton
bf31a733a7 Restore back button in experimental layout for apps 2026-01-16 11:32:45 -05:00
Bill Thornton
bf70fb80aa Merge pull request #7498 from theguymadmax/add-sort-to-boxsets
Add sort options to movie collections in the experimental layout
2026-01-16 10:46:40 -05:00
Bill Thornton
2acc6f360a Add default font family for fallback 2026-01-16 10:29:45 -05:00
theguymadmax
a36eb7b546 Add sort options to movie collections 2026-01-15 18:59:15 -05:00
Bill Thornton
fb6250d108 Merge pull request #7493 from thornbill/plugin-error
Improve error handling on plugin page
2026-01-15 13:38:44 -05:00
Bill Thornton
a82ae33aa3 Merge pull request #7496 from thornbill/no-server-id
Fix missing server id
2026-01-15 13:35:58 -05:00
Bill Thornton
32d916b420 Fix missing server id 2026-01-14 17:35:15 -05:00
Bill Thornton
014af0ebe9 Merge pull request #7470 from theguymadmax/add-alphapicker-to-sort-options
Enable AlphaPicker for non-random sorts in experimental layout
2026-01-14 16:57:34 -05:00
Bill Thornton
9b80917cd1 Merge pull request #7495 from thornbill/vegan-support
Add Vega OS detection
2026-01-14 16:52:29 -05:00
Bill Thornton
238c5bbf58 Add vega os name and icon for dashboard 2026-01-13 13:39:01 -05:00
Bill Thornton
264cdafaff Add vega os detection 2026-01-13 13:33:13 -05:00
Bill Thornton
1459a11320 Improve error handling on plugin page 2026-01-13 10:26:25 -05:00
mani
ad3223cb77 Fix Xbox UWP codec detection: disable AV1 and Opus
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
2026-01-09 00:50:06 +01:00
Dante Tyler
445fe22f29 Fix quality secondary text incoherency
Some checks failed
Push & Release 🌍 / Automation 🎛️ (push) Has been cancelled
Push & Release 🌍 / Unstable release 🚀⚠️ (push) Has been cancelled
Push & Release 🌍 / Quality checks 👌🧪 (push) Has been cancelled
Push & Release 🌍 / GitHub CodeQL 🔬 (push) Has been cancelled
Push & Release 🌍 / Deploy 🚀 (push) Has been cancelled
Parse correct context to the quality options object. This correctly returns the selected option name at index 0
2026-01-08 23:37:06 +01:00
theguymadmax
e28d70d34c Enable alphapicker in more sort by options 2026-01-02 23:02:49 -05:00
Bill Thornton
9a207e9ba9 Merge pull request #7135 from HaloCelsius/fix/inconsistent-quality-text
Fix incorrect quality text label in video player
2025-12-15 17:42:57 -05:00
Dante Tyler
5db40d03ac Fix quality secondary text incoherency
Parse correct context to the quality options object. This correctly returns the selected option name at index 0
2025-12-15 17:37:21 -05:00
Jellyfin Release Bot
ae58599bd0 Bump version to 10.11.5 2025-12-14 21:44:17 -05:00
Bill Thornton
e2ae48d8e5 Merge pull request #7415 from dmitrylyzo/fix-scroll-options-behavior
Fix the return value for 'behavior' property
2025-12-12 13:30:48 -05:00
Bill Thornton
bc39ee10ba Merge pull request #7409 from shempignon/master
Fix subtitles need to be uploaded twice
2025-12-12 13:29:39 -05:00
Shempignon
603b5ed20c Issue #7194: Subtitles need to be uploaded twice 2025-12-10 18:51:54 +01:00
Bill Thornton
6bfff061ce Fix browser detection overwrites (#7411)
* Fix browser detection overwrites

* Fix Opera TV detection

* Move tv flag logic

* Fix indentation
2025-12-10 09:54:08 -05:00
Dmitry Lyzo
44818f0c97 Fix the return value for 'behavior' property
The provided value 'null' is not a valid enum value of type ScrollBehavior.
2025-12-10 12:27:38 +03:00
Bill Thornton
b3725e9dd5 Merge pull request #7392 from thornbill/backport-6376 2025-12-05 10:13:29 -05:00
imtsuki
ce22f8fe22 Add hevc level 6.2 check
Signed-off-by: imtsuki <me@qjx.app>
2025-12-05 10:01:10 -05:00
Bill Thornton
9f1370f242 Merge pull request #7387 from thornbill/fix-exp-card-actions
Fix card actions in experimental layout
2025-12-03 16:20:25 -05:00
Bill Thornton
b3913d7bb3 Fix card actions in experimental layout 2025-12-03 12:18:21 -05:00
Bill Thornton
69d169e45f Merge pull request #7380 from theguymadmax/add-help-to-backup
Add help link to backups page
2025-12-02 16:01:43 -05:00
theguymadmax
264eedc90a Add help link to backups page 2025-12-02 11:19:29 -05:00
Bill Thornton
6fba30a0a9 Merge pull request #7379 from Collin-Swish/fix-duplicate-years 2025-12-01 23:24:32 -05:00
Collin Swisher
3376a126de Fix duplicate years due to type mismatch 2025-12-01 21:53:47 -06:00
Roberto Romero
4e9c2e71a9 Bind PlayerChange before handlers to report correct isLocalPlayer (#7376)
PlayerChange was firing before the subscriber rebound its player, so the
first media session update could send `isLocalPlayer: false` (player undefined)
and Android treated playback as remote (cast volume UI). Rewire PlaybackSubscriber
so PlayerChange binds the current player before invoking handlers, ensuring media
session updates always have a bound player and report the correct local/remote
state.

Fixes: https://github.com/jellyfin/jellyfin-android/issues/1745
Fixes: https://github.com/jellyfin/jellyfin-android/issues/1854
2025-12-01 21:23:24 -05:00
Bill Thornton
06f5442fc9 Merge pull request #7378 from thornbill/fix-rtl-details 2025-12-01 15:24:47 -05:00
Bill Thornton
c478d6e307 Fix card and logo position for rtl languages 2025-12-01 12:44:46 -05:00
Jellyfin Release Bot
cacb660ff8 Bump version to 10.11.4 2025-11-30 21:33:35 -05:00
Bill Thornton
4bdc0fd974 Merge pull request #7344 from dkanada/book-player-layout 2025-11-27 02:22:31 -05:00
dkanada
9af155b291 keep existing dialog style on desktop layout 2025-11-27 16:00:39 +09:00
dkanada
74f98bb120 use book player theme in TOC element 2025-11-27 16:00:19 +09:00
dkanada
e568ecbf30 modify TOC and button layout in book player 2025-11-27 15:52:01 +09:00
Bill Thornton
1686788be5 Merge pull request #7345 from dkanada/fix-continue-reading
fix book playback in continue reading home section
2025-11-25 10:59:13 -05:00
dkanada
43749273e4 fix book playback in continue reading home section 2025-11-24 14:32:14 +09:00