Shadowghost
f3a1d56c56
Use DistinctBy where possible
2026-07-26 09:56:49 +02:00
Shadowghost
766be1e8bb
Fix favorite filter performance
2026-07-25 19:09:39 +02:00
Shadowghost
f2f66606d7
Fix DatePlayed sorting performance
2026-07-25 19:09:39 +02:00
Shadowghost
9aa79682ba
Reduce correlated subqueries to improve performance
2026-07-23 20:50:06 +02:00
Cody Robibero
526f4051e9
Merge pull request #16980 from TheMelmacian/feature/library_specific_language_filter_values
...
Improve language filters to only fetch language codes that match the requested items/libraries (follow up to #9787 )
2026-07-21 20:43:31 -04:00
TheMelmacian
b317af0d30
fix: remove obsolete code
2026-07-21 22:20:07 +02:00
Cody Robibero
65836cc844
Merge pull request #17160 from 854562/truncate-language-strings
...
Truncate ISO-639-2 language display names at first delimiter
2026-07-21 11:22:32 -04:00
Cody Robibero
bdf263d867
Merge pull request #17377 from mbastian77/fix/person-visibility-allowed-tags
...
Exempt people from the allowed tags visibility check
2026-07-20 21:26:06 -04:00
854562
2cd2f36fe4
Extract truncation logic to helper and add tests
2026-07-20 22:00:10 +02:00
mbastian77
5a9fb80239
Exempt people from the allowed tags visibility check
2026-07-18 14:07:52 +02:00
Shadowghost
d894a98b79
Fix tie-breaker performance
2026-07-16 14:20:42 +02:00
Cody Robibero
6e728b009f
Merge pull request #17044 from Shadowghost/version-model-and-handling
...
Fixes for multi version handling
2026-07-05 16:21:02 -04:00
Shadowghost
38f1d9749e
Fix review comments
2026-07-02 08:49:11 +02:00
854562
c632417dda
Fix SonarCloud warnings
2026-06-23 18:32:47 +02:00
854562
94d5326411
Truncate ISO-639-2 language display names at first delimiter
...
Prevents raw ISO-639-2 values (e.g. "Greek, Modern (1453-)" from cluttering the audio and subtitle display names by truncating them at the first comma or semicolon ("Greek"). Applies to MediaStreamRepository and ProbeResultNormalizer.
2026-06-22 20:25:13 +02:00
Joshua M. Boniface
069eb40ebf
Fix too many SQL variables in DeleteItem for large batch deletes
...
The FixIncorrectOwnerIdRelationships migration deletes all duplicate
items in a single DeleteItemsUnsafeFast -> DeleteItem(ids) call. Inside
DeleteItem, the owned-extras lookup used a raw HashSet.Contains, which EF
inlines as one SQL variable per id and overflows SQLite's variable limit
on large libraries. Use WhereOneOrMany so the id set is bound as a single
json_each parameter, like the rest of the method, making bulk deletes
work for unlimited library sizes.
2026-06-21 23:03:45 -04:00
Shadowghost
0fb042b740
Surface the played version for resume
2026-06-19 21:51:57 +02:00
Matt Teahan
5df25cf688
Apply ParentId.Value suggestion
...
Co-authored-by: Bond-009 <bond.009@outlook.com >
2026-06-13 21:04:33 +01:00
Matt
23f8ec93ab
Fix AlbumIds filtering by Name instead of by Id
2026-06-12 21:31:38 +01:00
Shadowghost
0aeee8233b
Fix performance
2026-06-12 08:35:30 +02:00
Shadowghost
95de28cdda
Merge remote-tracking branch 'upstream/master' into version-model-and-handling
2026-06-10 08:05:03 +02:00
Shadowghost
0874a26131
Coalesce alternate-version progress onto primary in resume filter
2026-06-09 23:23:03 +02:00
Shadowghost
fe1accc0e7
Prefer local alternate versions when deduplicating linked children
...
(cherry picked from commit 53f02a04ef7ff8f9d78c5f4e0924a0871b0e96fb)
2026-06-07 23:06:37 +02:00
Shadowghost
fe1d8d8840
Collapse version groups to the primary version in queries
2026-06-07 23:06:14 +02:00
Shadowghost
9ea3f45886
Make resume queries version-aware
2026-06-07 23:06:14 +02:00
Shadowghost
a2bab98c23
Merge remote-tracking branch 'upstream/master' into search-rebased
2026-05-31 18:24:26 +02:00
Tim Eisele
63d1af5fe7
Fix similarity ( #16942 )
...
Fix similarity
2026-05-31 17:21:15 +02:00
Shadowghost
a479e145dc
Merge remote-tracking branch 'upstream/master' into search-rebased
...
# Conflicts:
# Emby.Server.Implementations/Library/LibraryManager.cs
# Jellyfin.Server.Implementations/Item/PeopleRepository.cs
# MediaBrowser.Controller/Library/ILibraryManager.cs
# MediaBrowser.Controller/Persistence/IPeopleRepository.cs
2026-05-30 19:09:11 +02:00
TheMelmacian
7939f3b009
only fetch language codes for the requested library when generating filter values
2026-05-30 16:33:59 +02:00
theguymadmax
ad4e884d18
Fix inaccessible artist when they exist in multiple libraries
2026-05-30 01:31:29 -04:00
Sam Xie
c9f71d8531
Add a collection API for Included In feature ( #15516 )
...
Add a collection API for `Included In` feature
2026-05-29 20:00:34 +02:00
Bond-009
2f17516d4b
Merge pull request #16856 from Shadowghost/movie-recommendations
...
Fix movie recommendations
2026-05-27 20:59:18 +02:00
Shadowghost
cb9d6e9884
Add batch method for people names
2026-05-24 18:26:21 +02:00
Shadowghost
1175846120
Merge remote-tracking branch 'upstream/master' into search-rebased
2026-05-24 18:25:12 +02:00
jakobkukla
37350282cc
Run tree-wide dotnet format
2026-05-21 20:48:41 +02:00
Bond-009
e63bc1e27c
Merge pull request #16861 from JPVenson/fix/fixMigrations12.0
...
Reorder Migrations and fix failing migration
2026-05-21 19:32:57 +02:00
Shadowghost
9dfcc0918f
Add support for filtering boxsets by parentId
2026-05-20 11:34:45 +02:00
Bond-009
f14ab37bf5
Misc fixes ( #16837 )
...
* Order chapter response by start time
* Properly handle cancellation in MediaSegmentManager
* Prevent unecessary log spam in NetworkUtils
* Fixup
2026-05-17 14:07:43 +02:00
Shadowghost
ea8f6c51fd
Merge remote-tracking branch 'upstream/master' into search-rebased
2026-05-16 09:57:06 +02:00
JPVenson
9d20aefd89
Reorder migration handling for extra column
2026-05-15 20:10:33 +00:00
Bond-009
9d420271ad
Merge pull request #9787 from TheMelmacian/feature/language_filters
...
New filters for audio and subtitle languages
2026-05-15 15:44:22 +02:00
Shadowghost
97c20e6ac5
Fix movie recommendations
2026-05-15 14:37:01 +02:00
Bond-009
8e602f982f
Merge pull request #15970 from Shadowghost/similarity
...
Implement similarity providers
2026-05-15 10:00:53 +02:00
Shadowghost
5165e4e2d4
Order chapter response by start time
2026-05-13 13:46:46 +02:00
dkanada
843e0f0c84
return music artists from person endpoints
2026-05-13 09:37:18 +09:00
Shadowghost
9e794e80c2
Fix master merge
2026-05-12 23:11:34 +02:00
Shadowghost
8f7c54ee5e
Merge remote-tracking branch 'upstream/master' into search-rebased
2026-05-12 22:50:16 +02:00
TheMelmacian
39049a726e
move language filters from QueryFiltersLegacy to QueryFilters
2026-05-12 02:12:14 +02:00
Bond-009
406aaabefd
Use SortName when sorting by name ( #16804 )
...
* Use SortName when sorting by name
* Preserve ordering in item values query
2026-05-11 18:22:26 +02:00
TheMelmacian
5701cdce68
fix: prevent language filters to load in non video libraries
2026-05-10 21:40:41 +02:00