| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-05-13 | Backport pull request #11569 from jellyfin/release-10.9.z | crobibero | |
| Default to processor count concurrent scan instead of 2 * processor count Original-merge: f77a5d0c5c11741e16e7c2411e8f9df04d5f0b26 Merged-by: crobibero <cody@robibe.ro> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2024-05-11 | Update MediaBrowser.Controller/Entities/Folder.cs | Joshua M. Boniface | |
| 2024-05-11 | Don't assume library change only on item count | gnattu | |
| The library will also be updated when the number of children remains the same before and after scanning. For example, if one video file is removed and replaced with another version, we still need to remove the old one in this case. Signed-off-by: gnattu <gnattuoc@me.com> | |||
| 2024-05-05 | Validate Collection Folders on adding and removal (#11444) | gnattu | |
| 2024-04-17 | fix: correctly pass parameters in overrides | gnattu | |
| Signed-off-by: gnattu <gnattuoc@me.com> | |||
| 2024-04-17 | chore: use proper way to override remove root | gnattu | |
| This is an alternate approach which is more proper, but changes all parts that uses/overrides the original ValidateChildren method Signed-off-by: gnattu <gnattuoc@me.com> | |||
| 2024-04-12 | Only update if actively refreshing (#11341) | Cody Robibero | |
| 2024-03-18 | fix: skip library folders that are inaccessible or empty (#9291) | Claus Vium | |
| 2024-02-06 | Fix tests | Patrick Barron | |
| 2024-02-06 | Remove ActionableProgress | Patrick Barron | |
| 2024-02-06 | Remove SimpleProgress | Patrick Barron | |
| 2024-01-17 | Use helper function to compare guid (#10825) | Cody Robibero | |
| 2023-10-08 | Pass cancellation token | Stepan Goremykin | |
| 2023-06-21 | Reduce bottlenecks scan code (#9863) | Bond-009 | |
| 2023-05-26 | Fix TotalRecordCount calculation | Shadowghost | |
| 2023-01-07 | Fix recursive children lookup of folders (#8678) | Egor Bakanov | |
| Fixes https://github.com/jellyfin/jellyfin/issues/6193 Fixes https://github.com/jellyfin/jellyfin/issues/7226 | |||
| 2022-12-05 | Replace != null with is not null | Bond_009 | |
| 2022-12-05 | Replace == null with is null | Bond_009 | |
| 2022-10-06 | Use ArgumentNullException.ThrowIfNull helper method | Bond_009 | |
| Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ``` | |||
| 2022-09-23 | Backport pull request #8189 from jellyfin/release-10.8.z | Luke F | |
| Fix GetItems IndexOutOfRangeException when IDs do not exist Original-merge: 527ed0607d5f31a232293b39daac19018518b1a0 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2022-08-14 | Check for empty guid | Niels van Velzen | |
| 2022-08-14 | Use Guid for adjacentTo API parameter | Niels van Velzen | |
| 2022-03-11 | BaseItem: remove unused function | Bond_009 | |
| 2022-03-11 | Merge pull request #7346 from Bond-009/guid | Claus Vium | |
| Optimize Guid comparisons | |||
| 2022-02-27 | Add post filtering for theme song and video | Joe Rogers | |
| 2022-02-21 | Optimize Guid comparisons | Bond_009 | |
| * Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty | |||
| 2022-01-28 | Remove some allocations (#7246) | Claus Vium | |
| 2022-01-22 | Ban the usage of Task.Result | Bond_009 | |
| If the calling function can't be made async easily you can still use .GetAwaiter().GetResult(), which is way easier to find in the future | |||
| 2022-01-20 | Properly populate QueryResult | Cody Robibero | |
| 2021-12-12 | Use BaseItemKind where possible | Cody Robibero | |
| 2021-11-09 | Fix some warnings | Bond_009 | |
| down to 580 | |||
| 2021-11-09 | Fix some warnings | Bond_009 | |
| 609 left | |||
| 2021-11-08 | Fix and disable new dotnet6 warnings | Cody Robibero | |
| 2021-09-09 | Fix some warnings | Bond_009 | |
| 2021-08-28 | Remove more and more warnings | Cody Robibero | |
| 2021-08-13 | Fix warnings in MediaBrowser.Controller | Rich Lander | |
| 2021-08-11 | Update MediaBrowser.Controller/Entities/Folder.cs | Rich Lander | |
| Co-authored-by: Claus Vium <cvium@users.noreply.github.com> | |||
| 2021-07-23 | Fix more warnings | Rich Lander | |
| 2021-07-23 | Fix partial set of MediaBrowser.Controller/Entities warnings | Rich Lander | |
| 2021-07-10 | [CA1801] Parameter is never used. Remove the parameter or use it in the ↵ | Cody Robibero | |
| method body. | |||
| 2021-06-07 | Merge pull request #6071 from BaronGreenback/DLNAFolderFixPart1 | Claus Vium | |
| Make DLNA folders to work as expected. | |||
| 2021-06-06 | Remove warninigs from MediaBrowser.Controller (Part 3) (#6078) | Cody Robibero | |
| Co-authored-by: Bond-009 <bond.009@outlook.com> | |||
| 2021-05-17 | Enable child items to be returned if a musicAlbum | BaronGreenback | |
| 2021-05-13 | Reduce warnings in MediaBrowser.Controller | crobibero | |
| 2021-05-07 | Enable nullable reference types for MediaBrowser.Controller | Bond_009 | |
| 2021-04-30 | Reduce some allocations with the magic of spans etc. | cvium | |
| 2021-04-21 | Merge pull request #5808 from cvium/semi-fix-collection-perf | Bond-009 | |
| 2021-04-17 | Remove unused using directives | BaronGreenback | |
| 2021-04-13 | fixes | cvium | |
| 2021-04-13 | Optimize the way items are grouped into collections | cvium | |
