aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseItem.cs
AgeCommit message (Collapse)Author
2022-12-30Add support for .sup subtitle (#8808)Cody Robibero
Fixes https://github.com/jellyfin/jellyfin/issues/8628
2022-12-08Allow video extras to use owner library optionsJoe Rogers
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-10-27Fix extra type differentiationphotonconvergence
Change rules for Featurettes and Shorts so they don't both get classed as ExtraType.Clip. Fix test that these changes break
2022-10-12Rewrite BaseItem.ModifySortChunksBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_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-13Add function back for compatibility, add sortingZach Phelan
2022-09-13Sort special features same as other spots, removing unnecssary functionZach Phelan
Added to contributors
2022-05-20Merge pull request #7604 from Jellifi007/fixes-diactriticsBond-009
Co-authored-by: Cody Robibero <cody@robibe.ro> (cherry picked from commit 8d1d9734381472b301deb0118bbb8da2a769a65e) Signed-off-by: crobibero <cody@robibe.ro>
2022-03-11BaseItem: remove unused functionBond_009
2022-03-11Merge pull request #7346 from Bond-009/guidClaus Vium
Optimize Guid comparisons
2022-02-28Use IFileSystemCody Robibero
2022-02-21Rewrite tests for coverage and less duplicationJoe Rogers
Address minor warnings Revert making GetInternalMetadataPath mockable
2022-02-21Optimize Guid comparisonsBond_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-02-18feat(external-media): refactor to generic provider, extend tests and file ↵Shadowghost
recognition, consolidate and extend NamingOptions
2022-01-28Remove some allocations (#7246)Claus Vium
2021-12-27Remove more warningsCody Robibero
2021-12-24Update StyleCopBond_009
2021-12-23Fix build from PR mergingCody Robibero
2021-12-24Merge pull request #7029 from cvium/allocations_maybeCody Robibero
2021-12-22Merge pull request #7028 from cvium/everything_went_wrongCody Robibero
2021-12-20Don't skip extras refresh when replacing metadata or doing a full refreshcvium
2021-12-20Use our own Contains extensioncvium
2021-12-20Fix extras folderscvium
2021-12-19Use == instead of Object.Equals to avoid closure allocationcvium
2021-12-15Merge branch 'master' into what_could_go_wrongClaus Vium
2021-12-14Cache BaseItemKindCody Robibero
2021-12-12Folder can't have extrascvium
2021-12-07Refactor extras parsingcvium
2021-11-16Fix some warningsBond_009
2021-11-09Fix some warningsBond_009
609 left
2021-11-06Remove ImageType.Screenshot and ItemFields.ScreenshotJoe Rogers
2021-11-03Minor improvementsBond_009
* Removed some allocations * Removed some useless abstractions
2021-11-02Change RemoveImages to array, improve download testJoe Rogers
2021-11-01Refactor to validate all images up frontJoe Rogers
2021-10-03Fix warning: Qualifier is redundant (#2149)KonH
2021-09-20Update LINQ query according to code review feedback.Dixin
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-09-19Fix extra folder type resolving.Dixin
2021-09-06Merge pull request #6257 from MrTimscampi/music-library-backdropdkanada
Use artist backdrop for generated library image
2021-08-28Remove more and more warningsCody Robibero
2021-08-13Fix warnings in MediaBrowser.ControllerRich Lander
2021-07-11Fix some warningsBond_009
2021-07-03Use artist backdrop for generated library imageMrTimscampi
2021-06-22Remove our own RemoveDiacritcs string extension in favor of Diacritics.NetBond_009
2021-06-19Move non-jellyfin extensions to separate projectBond_009
2021-06-12Merge pull request #6096 from cvium/saving_private_ramBond-009
2021-06-07Merge pull request #6117 from LinFor/pr_originaltitle_in_lookupinfoClaus Vium
Add OriginalTitle to ItemLookupInfo
2021-06-06Remove warninigs from MediaBrowser.Controller (Part 3) (#6078)Cody Robibero
Co-authored-by: Bond-009 <bond.009@outlook.com>