aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library
AgeCommit message (Collapse)Author
2023-06-10Merge pull request #9564 from AmbulantRex/whitelist-dllsCody Robibero
2023-06-10Merge pull request #8203 from Shadowghost/nfo-season-namesCody Robibero
Implement NFO named season parsing
2023-05-26Fix TotalRecordCount calculationShadowghost
2023-05-23Check for Imdb id for seriesBond_009
2023-05-20Implement NFO named season parsingShadowghost
2023-05-15Fix playlists library and migration (#9770)Shadowghost
2023-05-12Fix access to playlists not created by a user (#9746)Shadowghost
2023-04-15Merge branch 'jellyfin:master' into whitelist-dllsAmbulantRex
2023-04-10#7626 Added handling for common FormatExceptions with Skia loading sv… (#9581)JPVenson
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
2023-04-06Remove redundant 'else' keywordsStepan Goremykin
2023-04-06Simplify conditional expressionStepan Goremykin
2023-04-06Simplify linq expressions (use All)Stepan Goremykin
2023-04-01Implement check to hide all libraries when user has no access (#9536)elmuffo
2023-04-01Correct styling inconsistenciesAmbulantRex
2023-04-01Correct style inconsistenciesAmbulantRex
2023-03-30Remove unnecessary using statements in PluginManagerAmbulantRex
2023-03-30Add DLL whitelist support for pluginsAmbulantRex
2023-03-20Merge pull request #9403 from SenorSmartyPants/ExtraCleanAndNFOCody Robibero
Co-authored-by: Cody Robibero <cody@robibe.ro>
2023-03-14Reduce usage of GetAwaiter().GetResult()Bond_009
2023-03-10Merge pull request #9254 from Shadowghost/dvdbdfixBond-009
2023-03-09Clean Extra NamesSenorSmartyPants
- Adds regular expression to CleanStrings to remove suffix style extra naming from the name presented in JF. - Override Resolve for Extras to enable parsename - remove exclusion on parsename of extratypes
2023-03-06Fix cases where multiple files are resolved as a single bookJoe Rogers
2023-03-06Inject IDirectoryService where needed instead of passing it through ↵Joe Rogers
ItemResolveArgs
2023-03-06Remove some BaseItem references to make ItemResolveArgs more usable for testing.Joe Rogers
2023-03-01Allocate less ListsBond_009
2023-02-17Reduce string allocations by regexBond_009
2023-02-04Fix BD and DVD folder recognition for tv episodesShadowghost
2023-01-07Deduplicate media stream ordering code (#9014)Bond-009
2022-12-19Use Order() introduced in .NET 7 (#8923)Bond-009
2022-12-08Allow video extras to use owner library optionsJoe Rogers
2022-12-07Merge pull request #8868 from Bond-009/priorityqueueClaus Vium
Remove dependency on OptimizedPriorityQueue
2022-12-07Merge pull request #8867 from stanionascu/fix-8276Claus Vium
Fix to make sure that UDF streams are opened with Share.Read (#8276)
2022-12-07Remove dependency on OptimizedPriorityQueueBond_009
2022-12-07Fix to make sure that UDF streams are opened with Share.Read (#8276)Stanislav Ionascu
Make sure that any subsequent requests to open the file for read will succeed.
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-11-27Investigate some TODO commentsBond_009
2022-11-17Apply review suggestionsShadowghost
2022-11-17Add xmldocs for TMDb provider, correct provider spellingShadowghost
2022-10-12Merge pull request #8521 from 1337joe/fix-missing-symlink-scanClaus Vium
Skip missing symlink instead of breaking out of directory scan
2022-10-12Merge pull request #8541 from Bond-009/minorClaus Vium
2022-10-12Merge pull request #8472 from jgriff6/subsClaus Vium
Fix subtitle selection behaviour
2022-10-11Fix some things that slipped through the cracksBond_009
2022-10-11Make 'Always' subtitle mode prioritise full tracksjgriff6
2022-10-09Skip missing symlink instead of breaking out of directory scanJoe Rogers
2022-10-07Merge pull request #7514 from Shadowghost/music-extendClaus Vium
2022-10-07Polish smart subtitle selection logicjgriff6
2022-10-07Apply review suggestionsShadowghost
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); ```