aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Folder.cs
AgeCommit message (Collapse)Author
2020-10-12Fix SA 1116 warningsJan-Pieter Baert
2020-10-03Defer image pre-fetching until the end of a refresh/scancvium
2020-10-02fix parallelism when set to 0Gary Wilber
2020-10-01Switch to TPL dataflow for subfolder scanGary Wilber
2020-09-30Increase library scan and metadata refresh speedGary Wilber
2020-09-28Fix SA1513, SA1514, SA1507, and SA1508Matt Montgomery
2020-08-21Make some methods asyncBond_009
2020-06-20fix SA1119telans
2020-06-16Merge pull request #3343 from telans/comment-stopsBond-009
Add full stop at end of comments (SA1629)
2020-06-16fix SA1513/SA1516telans
2020-06-16Add full stop at end of comments (SA1629)telans
2020-06-15fix SA1508telans
2020-06-15fix SA1005telans
2020-06-07Apply review suggestions and fix bugPatrick Barron
2020-06-04Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs # Emby.Server.Implementations/Library/UserManager.cs # Emby.Server.Implementations/Sorting/IsFavoriteOrLikeComparer.cs # Emby.Server.Implementations/Sorting/IsPlayedComparer.cs # Emby.Server.Implementations/Sorting/IsUnplayedComparer.cs # Emby.Server.Implementations/TV/TVSeriesManager.cs # Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
2020-05-20Make blurhash be computed during regular scans if it was not already computedVasily
2020-05-20Remove redundant qualifiersPatrick Barron
2020-05-12Initial migration codePatrick Barron
2020-04-19Minor improvementsBond_009
2020-04-01Address commentsBond_009
2020-04-01Merge branch 'master' into minorBond_009
2020-03-04Merge pull request #2476 from JustAMan/playto-sortdkanada
Bring back sorting when needed to fix PlayTo
2020-03-02Replace foreach with for - MOAR SPEEDVasily
2020-03-02Apply suggestions from code reviewVasily
Co-Authored-By: Bond-009 <bond.009@outlook.com>
2020-02-28Remove custom queue class as it is not neededVasily
2020-02-28Small speed improvement - no need to convert an array to a list to just ↵Vasily
iterate over it
2020-02-27Implement fast sortingVasily
2020-02-27Trying to be more safeVasily
2020-02-27Bring back sorting when needed to fix PlayToVasily
This is partial revert of https://github.com/jellyfin/jellyfin/pull/1011
2020-02-23Minor improvementsBond_009
2020-02-22add config options for musicbrainzdkanada
2019-11-23Merge pull request #1926 from Bond-009/authdkanada
Add clearer exceptions, warnings and docs
2019-10-29Fix more warningsBond_009
2019-10-20Add clearer exceptions, warnings and docsBond_009
2019-10-15Fix Json serialization errorBond_009
2019-09-02Fix warnings, improve performance (#1665)Bond-009
* Fix warnings, improve performance `QueryResult.Items` is now a `IReadOnlyList` so we don't need to allocate a new `Array` when we have a `List` (and `Items` shouldn't need to be mutable anyway) * Update Providers .csproj to latest C# * Remove extra newline from DtoService.cs * Remove extra newline from UserLibraryService.cs
2019-08-09Use CultureInvariant string conversion for GuidsBond-009
2019-03-07Cleanup/simplificationBond-009
* Removed useless copies/allocations * Reduced unneeded complexity
2019-02-26Remove ordering itemsBond-009
2019-01-31Remove support for games as a media typeClaus Vium
2019-01-24Set Parent to current query Item if ParentId is empty (#680)Claus Vium
**Changes** Fixed a faulty change in logic that occurred during the Christmas GPL nightmare. I stepped through Emby 3.5.2 and stumbled over a difference in the query between Jellyfin and Emby, where in Emby, query.ParentId was set to the item itself. So I did a little digging in the old GPLv2 source and found this https://github.com/MediaBrowser/Emby/blob/3.4.1.8/MediaBrowser.Controller/Entities/Folder.cs#L720 **Issues** Fixes #673
2019-01-17Reformat JustAMan review pt2 changesErwin de Haan
Refs #575
2019-01-13ReSharper format: conform inline 'out' parameters.Erwin de Haan
2019-01-13ReSharper conform to 'var' settingsErwin de Haan
2019-01-13ReSharper Reformat: Properties to expression bodied form.Erwin de Haan
2019-01-13Find+Sed BOM removal *.cs: Jellyfin.Server-MediaBrowser.ControllerErwin de Haan
2019-01-13Visual Studio Reformat: MediaBrowser.ControllerErwin de Haan
2019-01-11Merge branch 'dev' into code-cleanupErwin de Haan
2019-01-10Mayor code cleanupErwin de Haan
Add Argument*Exceptions now use proper nameof operators. Added exception messages to quite a few Argument*Exceptions. Fixed rethorwing to be proper syntax. Added a ton of null checkes. (This is only a start, there are about 500 places that need proper null handling) Added some TODOs to log certain exceptions. Fix sln again. Fixed all AssemblyInfo's and added proper copyright (where I could find them) We live in *current year*. Fixed the use of braces. Fixed a ton of properties, and made a fair amount of functions static that should be and can be static. Made more Methods that should be static static. You can now use static to find bad functions! Removed unused variable. And added one more proper XML comment.
2019-01-07remove trailing whitespacehawken