Joshua M. Boniface
965b602c68
Apply suggestions from code review
...
Co-authored-by: JPVenson <ger-delta-07@hotmail.de >
2026-03-23 23:09:56 -04:00
Joshua M. Boniface
8142bbd50e
Properly define variable type
2026-03-23 17:22:35 -04:00
Joshua M. Boniface
434ebc8b11
Ensure ResolvedPath is sent on error too
2026-03-23 17:11:29 -04:00
Joshua M. Boniface
300036c859
Fix FolderStorageInfo to show parent filesystem
...
A direct implementation using DriveInfo directly on a path does not work
as expected. The method will return a DriveInfo object with the given
path as both the Name and the RootDirectory, which is not helpful.
Instead, add parsing logic to find the best possible match out of all
filesystems on the system for the path, including handling edge cases
involving symlinked paths in the chain.
This ensures that the resulting DeviceId is a valid filesystem, allowing
it to be used in the UI to show a better description. It also includes
the new ResolvedPath which will show, if required, what the Path
resolved to after all symlinks are interpolated.
One possible issue here is that walking all drives as-is might become
slow(er) on a system with many partitions, but even on my
partition-heavy system with over a dozen ZVOLs and remote mounts, this
takes under 0.4 seconds including runup time for `dotnet run`, so I
imagine this should be fine.
2026-03-23 17:08:15 -04:00
Bond-009
08f9ec5d37
Merge pull request #16160 from Shadowghost/fix-itemvalues-uniqueness
...
Stale PR Check / Check PRs with merge conflicts (push) Has been cancelled
CodeQL / Analyze (csharp) (push) Has been cancelled
OpenAPI / OpenAPI - BASE (push) Has been cancelled
OpenAPI / OpenAPI - HEAD (push) Has been cancelled
OpenAPI / OpenAPI - Difference (push) Has been cancelled
OpenAPI / OpenAPI - Publish Unstable Spec (push) Has been cancelled
OpenAPI / OpenAPI - Publish Stable Spec (push) Has been cancelled
Tests / run-tests (macos-latest) (push) Has been cancelled
Tests / run-tests (ubuntu-latest) (push) Has been cancelled
Tests / run-tests (windows-latest) (push) Has been cancelled
Project Automation / Project board (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
Stale Issue Labeler / Check for stale issues (push) Has been cancelled
Fix ItemValues Type checks
2026-03-10 21:26:05 +01:00
theguymadmax
4c751e0a86
Normalize names and roles
2026-02-03 17:41:01 -05:00
Shadowghost
77ff451e60
Only save unique values of ProductionLocations, Studios, Tags, Artists and AlbumArtists
2026-02-01 21:23:13 +01:00
theguymadmax
815a153b94
Backport pull request #16098 from jellyfin/release-10.11.z
...
Fix random sort returning duplicate items
Original-merge: a37ead86df
Merged-by: nielsvanvelzen <nielsvanvelzen@users.noreply.github.com >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-28 12:11:29 -05:00
MarcoCoreDuo
6d34f605a3
Backport pull request #16071 from jellyfin/release-10.11.z
...
Rehydrate cached UserData after reattachment
Original-merge: 95d08b264f
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-28 12:11:26 -05:00
theguymadmax
ec4744709d
Backport pull request #15816 from jellyfin/release-10.11.z
...
Fix artist display order
Original-merge: a2b1936e73
Merged-by: joshuaboniface <joshua@boniface.me >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-28 12:11:23 -05:00
theguymadmax
42ff253339
Backport pull request #16020 from jellyfin/release-10.11.z
...
Fix birthplace not saving correctly
Original-merge: 49775b1f6a
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-18 11:30:42 -05:00
Shadowghost
c4ffc357a3
Backport pull request #15983 from jellyfin/release-10.11.z
...
Prioritize better matches on search
Original-merge: a518160a6f
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-18 11:30:41 -05:00
MarcoCoreDuo
09edca8b7a
Backport pull request #15899 from jellyfin/release-10.11.z
...
Fix watched state not kept on Media replace/rename
Original-merge: 8433b6d8a4
Merged-by: joshuaboniface <joshua@boniface.me >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-18 11:30:38 -05:00
Bond-009
226da3b371
Fix zh-CN subtitle language display ( #15947 )
...
The DisplayTitle property was using .NET's CultureInfo.GetCultures(NeutralCultures)
to resolve language display names. Since zh-CN is a specific culture (not neutral),
it would fall back to the base 'zh' code, resulting in generic 'Chinese' instead
of 'Chinese (Simplified)'.
This change adds a LocalizedLanguage property to MediaStream that gets populated
via LocalizationManager.FindLanguageInfo() when streams are retrieved from the
database. This leverages Jellyfin's existing iso6392.txt mappings which correctly
map zh-CN to 'Chinese (Simplified)'.
The same pattern is already used for other localized strings like LocalizedDefault
and LocalizedExternal.
2026-01-18 12:19:31 +01:00
Bond_009
9e480f6efb
Update to .NET 10.0
2026-01-14 18:55:47 +01:00
theguymadmax
0ee872999d
Backport pull request #15931 from jellyfin/release-10.11.z
...
Fix tag inheritance for Continue Watching queries
Original-merge: 559e0088e5
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2026-01-10 06:11:25 -05:00
ZeusCraft10
0ff869dfcd
fix: Handle unknown item types gracefully in DeserializeBaseItem
...
When querying items with recursive=true, items with types from removed
plugins would cause a 500 error. Now these items are skipped with a
warning log instead of throwing an exception.
Fixes #15945
2026-01-05 21:08:26 -05:00
ZeusCraft10
9039077286
Fix zh-CN subtitle language display
...
The DisplayTitle property was using .NET's CultureInfo.GetCultures(NeutralCultures)
to resolve language display names. Since zh-CN is a specific culture (not neutral),
it would fall back to the base 'zh' code, resulting in generic 'Chinese' instead
of 'Chinese (Simplified)'.
This change adds a LocalizedLanguage property to MediaStream that gets populated
via LocalizationManager.FindLanguageInfo() when streams are retrieved from the
database. This leverages Jellyfin's existing iso6392.txt mappings which correctly
map zh-CN to 'Chinese (Simplified)'.
The same pattern is already used for other localized strings like LocalizedDefault
and LocalizedExternal.
2026-01-05 06:22:44 -05:00
theguymadmax
b9158c467a
Backport pull request #15768 from jellyfin/release-10.11.z
...
Fix NullReferenceException in ApplyOrder method
Original-merge: b617c62f8e
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-28 07:22:26 -05:00
Collin-Swish
2a464c316d
Backport pull request #15752 from jellyfin/release-10.11.z
...
Fix case sensitivity edge case
Original-merge: b50ce1ad6b
Merged-by: Bond-009 <bond.009@outlook.com >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-28 07:22:21 -05:00
gnattu
5557004375
Backport pull request #15689 from jellyfin/release-10.11.z
...
Use original name for MusicAritist matching
Original-merge: 4c5a3fbff3
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-28 07:22:17 -05:00
andrewrabert
8461268837
Backport pull request #15666 from jellyfin/release-10.11.z
...
Fix unnecessary database JOINs in ApplyNavigations
Original-merge: 4cdd8c8233
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-28 07:22:13 -05:00
Björn Tenje Persson
84f66dd54e
Fixed Multi Sort in New ActivityManager ( #15820 )
Stale PR Check / Check PRs with merge conflicts (push) Has been cancelled
Project Automation / Project board (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
CodeQL / Analyze (csharp) (push) Has been cancelled
OpenAPI / OpenAPI - HEAD (push) Has been cancelled
OpenAPI / OpenAPI - BASE (push) Has been cancelled
Tests / run-tests (macos-latest) (push) Has been cancelled
Tests / run-tests (ubuntu-latest) (push) Has been cancelled
Tests / run-tests (windows-latest) (push) Has been cancelled
OpenAPI / OpenAPI - Difference (push) Has been cancelled
OpenAPI / OpenAPI - Publish Unstable Spec (push) Has been cancelled
OpenAPI / OpenAPI - Publish Stable Spec (push) Has been cancelled
Stale Issue Labeler / Check for stale issues (push) Has been cancelled
2025-12-19 20:36:38 -07:00
Luigi311
771b0a7eab
Library: Async the SaveImages function ( #15718 )
Stale PR Check / Check PRs with merge conflicts (push) Has been cancelled
Stale Issue Labeler / Check for stale issues (push) Has been cancelled
CodeQL / Analyze (csharp) (push) Has been cancelled
OpenAPI / OpenAPI - HEAD (push) Has been cancelled
OpenAPI / OpenAPI - BASE (push) Has been cancelled
Tests / run-tests (macos-latest) (push) Has been cancelled
Tests / run-tests (ubuntu-latest) (push) Has been cancelled
Tests / run-tests (windows-latest) (push) Has been cancelled
Project Automation / Project board (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
OpenAPI / OpenAPI - Difference (push) Has been cancelled
OpenAPI / OpenAPI - Publish Unstable Spec (push) Has been cancelled
OpenAPI / OpenAPI - Publish Stable Spec (push) Has been cancelled
2025-12-13 08:43:49 -07:00
evan314159
8b2a8b94b6
avoid Take(0) when limit == 0 ( #14608 )
...
Co-authored-by: Evan <evan@MacBook-Pro.local >
2025-12-08 21:15:46 -07:00
Cody Robibero
0b3d6676d1
Add ability to sort and filter activity log entries ( #15583 )
2025-12-08 21:01:32 -07:00
audrey-inglish
8fd59d6f33
Merge pull request #14879 from audrey-inglish/master
...
CodeQL / Analyze (csharp) (push) Has been cancelled
OpenAPI / OpenAPI - BASE (push) Has been cancelled
OpenAPI / OpenAPI - HEAD (push) Has been cancelled
OpenAPI / OpenAPI - Difference (push) Has been cancelled
OpenAPI / OpenAPI - Publish Unstable Spec (push) Has been cancelled
OpenAPI / OpenAPI - Publish Stable Spec (push) Has been cancelled
Tests / run-tests (macos-latest) (push) Has been cancelled
Tests / run-tests (ubuntu-latest) (push) Has been cancelled
Tests / run-tests (windows-latest) (push) Has been cancelled
Project Automation / Project board (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
Stale PR Check / Check PRs with merge conflicts (push) Has been cancelled
Stale Issue Labeler / Check for stale issues (push) Has been cancelled
Fix: normalize punctuation when computing CleanName so searches without punctuation match (closes #1674 )
2025-12-08 18:43:37 +01:00
theguymadmax
70dcf3f7b3
Backport pull request #15594 from jellyfin/release-10.11.z
...
Fix isMovie filter logic
Original-merge: 94f3725208
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-03 14:04:25 -05:00
theguymadmax
4f020a947a
Backport pull request #15564 from jellyfin/release-10.11.z
...
Fix locked fields not saving
Original-merge: 0ee81e87be
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-12-03 14:04:22 -05:00
Niels van Velzen
19c232809e
Merge pull request #14950 from nielsvanvelzen/security-remove-has-password
...
Deprecate HasPassword property on UserDto
2025-11-27 16:31:05 +01:00
theguymadmax
c869b5b884
Backport pull request #15493 from jellyfin/release-10.11.z
...
Remove InheritedTags and update tag filtering logic
Original-merge: 4b38e35bbb
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:09:08 -05:00
theguymadmax
de9e653b73
Backport pull request #15435 from jellyfin/release-10.11.z
...
Fix search terms using diacritics
Original-merge: 63a3e55297
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:08:58 -05:00
JPVenson
74c9629372
Backport pull request #15413 from jellyfin/release-10.11.z
...
Fixed missing sort argument
Original-merge: 91c3b1617e
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:08:55 -05:00
Bond-009
f848b8f12c
Backport pull request #15390 from jellyfin/release-10.11.z
...
Don't enforce a minimum amount of free space for the tmp and log dirs
Original-merge: 097cb87f6f
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:08:53 -05:00
theguymadmax
bcec5f2e44
Backport pull request #15381 from jellyfin/release-10.11.z
...
Fix name filters to use only SortName
Original-merge: 7222910b05
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:08:51 -05:00
revam
5ea3910af9
Backport pull request #15263 from jellyfin/release-10.11.z
...
Resolve symlinks for static media source infos
Original-merge: 3b2d64995a
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-11-17 14:08:47 -05:00
thornbill
1ccd10863e
Backport pull request #15254 from jellyfin/release-10.11.z
...
Update password reset to always return the same response structure
Original-merge: 4ad3141875
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Joshua M. Boniface <joshua@boniface.me >
2025-11-02 21:58:42 -05:00
theguymadmax
28b0657608
Backport pull request #15217 from jellyfin/release-10.11.z
...
Normalize paths in database queries
Original-merge: 75f472e6a7
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:30 -04:00
crobibero
0f21222a0c
Backport pull request #15196 from jellyfin/release-10.11.z
...
Skip directory entry when restoring from backup
Original-merge: 0e4031ae52
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:25 -04:00
crobibero
ed6cb30762
Backport pull request #15170 from jellyfin/release-10.11.z
...
Clean up BackupService
Original-merge: ac3fa3c376
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:20 -04:00
MBR-0001
0931d6e4de
Backport pull request #15126 from jellyfin/release-10.11.z
...
Fix Has(Imdb/Tmdb/Tvdb)Id checks
Original-merge: 14b3085ff1
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:15 -04:00
Bond-009
54d28d9842
Backport pull request #15098 from jellyfin/release-10.11.z
...
Lower required tmp dir size to 512MiB
Original-merge: 0a6e8146be
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:11 -04:00
theguymadmax
adfa520057
Backport pull request #15087 from jellyfin/release-10.11.z
...
Optimize WhereReferencedItemMultipleTypes filtering
Original-merge: a5bc4524d8
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:10 -04:00
theguymadmax
5deb69b23f
Backport pull request #15083 from jellyfin/release-10.11.z
...
Fix LiveTV images not saving to database
Original-merge: d738386fe2
Merged-by: crobibero <cody@robibe.ro >
Backported-by: Bond_009 <bond.009@outlook.com >
2025-10-27 15:43:09 -04:00
Tim Eisele
5c519270b8
Remove chapters on file change ( #14984 )
2025-10-13 12:32:41 -06:00
theguymadmax
794e1361d7
Fix contributing artist query ( #14991 )
2025-10-13 09:09:09 -06:00
Joshua M. Boniface
cf3edd9875
Merge pull request #14971 from theguymadmax/skip-artist-album-persontype
...
Skip creating Person entities for Artist and AlbumArtist types
2025-10-11 17:20:31 -04:00
JPVenson
8abcfb2a80
Fix ordering query
2025-10-10 20:08:59 +00:00
JPVenson
ceef9143ad
cleanup
2025-10-10 09:18:05 +00:00
JPVenson
a7a92509c7
fixes #14952 apply sort on ItemValue query
2025-10-10 09:10:21 +00:00