aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ContentDirectory/ControlHandler.cs
AgeCommit message (Collapse)Author
2023-11-15Remove Emby.DlnaPatrick Barron
2023-11-09Merge branch 'master' into media-typeCody Robibero
2023-11-09Convert CollectionType, SpecialFolderType to enum (#9764)Cody Robibero
* Convert CollectionType, SpecialFolderType to enum * Hide internal enum CollectionType values * Apply suggestions from code review Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com> * Fix recent change * Update Jellyfin.Data/Attributes/OpenApiIgnoreEnumAttribute.cs Co-authored-by: Patrick Barron <barronpm@gmail.com> --------- Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com> Co-authored-by: Patrick Barron <barronpm@gmail.com>
2023-11-09Convert ItemSortBy to enum (#9765)Cody Robibero
* Convert ItemSortBy to enum * Rename Unknown to Default
2023-10-10Convert string MediaType to enum MediaTypeCody Robibero
2022-12-05Replace != null with is not nullBond_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-01-20Properly populate QueryResultCody Robibero
2022-01-10Fix warning SA1414 and CA1849Bond_009
2021-12-24Update StyleCopBond_009
2021-12-20Use our own Contains extensioncvium
2021-12-12Use BaseItemKind where possibleCody Robibero
2021-11-14- flush the XmlWriter before calling the StringBuilder ToString() methodMarius Luca
2021-11-09Remove unused fieldcvium
2021-11-09lengthcvium
2021-11-09Last small fixescvium
2021-11-09Reduce indentationcvium
2021-11-09Use GetOrderBy in GetChildrenSortedcvium
2021-11-09Fix SortCriteria and refactor SetSortingcvium
2021-11-09Build an array instead of using LINQcvium
2021-11-09commentscvium
2021-11-09review stuffcvium
2021-11-09Apply suggestions from code reviewClaus Vium
2021-11-09Update Emby.Dlna/ContentDirectory/ControlHandler.csClaus Vium
2021-11-08Simplify and reduce LOC in ControlHandlercvium
2021-11-08Samsung DLNA fixesLinFor
2021-07-06Minor fixesBond_009
2021-05-07Enable nullable reference types for Emby.DlnaBond_009
2021-04-17Remove unused using directivesBaronGreenback
2021-04-01Remove useless codeBond_009
2020-12-02Minor improvementsBond_009
2020-11-18Fixes spelling.Greenback
2020-11-16Merge pull request #4138 from BaronGreenback/Comment3Joshua M. Boniface
DLNA ContentManager - static and commented.
2020-11-06Minor perf improvementsBond_009
2020-10-17Fix buildBond_009
2020-10-17Use nameof where possibleBond_009
2020-09-13ContentDirectoryJim Cartlidge
2020-08-31Fix some warningsBond_009
2020-08-20Fix all warnings in Emby.DlnaBond_009
2020-08-20Reduce warnings in Emby.DlnaDavid
2020-07-17Migrate Display Preferences to EF CorePatrick Barron
2020-06-16fix SA1513/SA1516telans
2020-06-15fix SA1005telans
2020-05-20Remove redundant qualifiersPatrick Barron
2020-05-12Initial migration codePatrick Barron
2020-04-02Fix some warningsBond_009
2020-02-23Fix some warningsBond_009
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
2020-01-29Close xmlwriter firstBond-009
2020-01-28StyleBond_009
2020-01-28Fix?Bond-009