| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-11-09 | Convert 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-09 | Convert ItemSortBy to enum (#9765) | Cody Robibero | |
| * Convert ItemSortBy to enum * Rename Unknown to Default | |||
| 2023-10-12 | Merge branch 'master' into fix-resharper-warnings | Stepan Goremykin | |
| # Conflicts: # Emby.Server.Implementations/Net/SocketFactory.cs # RSSDP/SsdpCommunicationsServer.cs # RSSDP/SsdpDeviceLocator.cs # RSSDP/SsdpDevicePublisher.cs | |||
| 2023-10-08 | Merge pull request #10345 from Bond-009/getperson | Bond-009 | |
| 2023-10-08 | Remove redundant using directives | Stepan Goremykin | |
| 2023-10-08 | Use async overload | Stepan Goremykin | |
| 2023-10-06 | Reduce string allocations | Bond_009 | |
| Some simple changes to reduce the number of allocated strings | |||
| 2023-10-05 | Don't create non existent persons in LibraryManager.GetPerson | Bond_009 | |
| return null instead. GetStudio, GetGenre, GetMusicGenre, GetYear, GetArtist still create a new one when the requested one doesn't exist Fixes #3901 | |||
| 2023-09-13 | Minor LibraryMonitor improvements | Bond_009 | |
| * Enable nullable * Add a fast return to ReportFileSystemChanged when path should be ignored * Use Span overloads of Path.* functions where possible * IFileSystem: remove NormalizePath as Path.TrimEndingDirectorySeparator already checks if it's a root path | |||
| 2023-08-26 | Fix a few multiple enumerations | Stepan Goremykin | |
| 2023-08-18 | refactor: use ConcurrentDictionary when IMemoryCache isn't needed | cvium | |
| 2023-07-01 | Merge pull request #9447 from Bond-009/disablerealtimemonitor | Claus Vium | |
| Disable real time monitoring by default | |||
| 2023-05-26 | Fix TotalRecordCount calculation | Shadowghost | |
| 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-06 | Simplify conditional expression | Stepan Goremykin | |
| 2023-04-01 | Implement check to hide all libraries when user has no access (#9536) | elmuffo | |
| 2023-03-07 | Disable real time monitoring by default | Bond_009 | |
| 2023-03-06 | Inject IDirectoryService where needed instead of passing it through ↵ | Joe Rogers | |
| ItemResolveArgs | |||
| 2023-03-06 | Remove some BaseItem references to make ItemResolveArgs more usable for testing. | Joe Rogers | |
| 2023-03-01 | Allocate less Lists | Bond_009 | |
| 2022-12-19 | Use Order() introduced in .NET 7 (#8923) | Bond-009 | |
| 2022-12-08 | Allow video extras to use owner library options | Joe Rogers | |
| 2022-12-07 | Remove dependency on OptimizedPriorityQueue | Bond_009 | |
| 2022-12-07 | Use ArgumentException.ThrowIfNullOrEmpty | Bond_009 | |
| 2022-12-05 | Replace != null with is not null | Bond_009 | |
| 2022-12-05 | Replace == null with is null | Bond_009 | |
| 2022-11-17 | Add xmldocs for TMDb provider, correct provider spelling | Shadowghost | |
| 2022-10-09 | Skip missing symlink instead of breaking out of directory scan | Joe Rogers | |
| 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-28 | Remove redundant using directives | Hannes Braun | |
| 2022-09-23 | Backport pull request #8399 from jellyfin/release-10.8.z | LogicalPhallacy | |
| Respect visibility for people items (rebased) Original-merge: e6124bc154c9f95fdd491f309623def6b3df0171 Merged-by: Bond-009 <bond.009@outlook.com> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2022-08-15 | Fix various typos | luz paz | |
| Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows` | |||
| 2022-08-01 | Backport pull request #8167 from jellyfin/release-10.8.z | Joshua Boniface | |
| Add back library scan from library manager Authored-by: Cody Robibero <cody@robibe.ro> Merged-by: Bond-009 <bond.009@outlook.com> Original-merge: f9dffa767f71f287e384282679a9af5e20bc370e | |||
| 2022-06-29 | Merge pull request #7946 from cvium/svg | Cody Robibero | |
| (cherry picked from commit 4ebe70cf6a12be4f4eae0b815a269a483ee238bb) Signed-off-by: Joshua Boniface <joshua@boniface.me> | |||
| 2022-04-07 | Merge pull request #7525 from 1337joe/fix-duplicate-library-media-paths | Cody Robibero | |
| (cherry picked from commit bebe1808ce529cff867b5b0c207542aadc9aedff) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-03-11 | Merge pull request #7346 from Bond-009/guid | Claus Vium | |
| Optimize Guid comparisons | |||
| 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-02-20 | Fix #7100 by catching the exception on opening invalid UDF images | Stanislav Ionascu | |
| When an invalid UDF image is opened by the UdfReader, it may throw and exception. This change is to catch and log the exception. | |||
| 2022-02-17 | Remove some dead code | Bond_009 | |
| 2022-02-15 | Fix some warnings | Bond_009 | |
| 2022-02-06 | Merge pull request #7241 from Bond-009/async5 | Cody Robibero | |
| 2022-01-28 | Remove some allocations (#7246) | Claus Vium | |
| 2022-01-22 | Flush to disk async where possible | Bond_009 | |
| 2022-01-20 | Properly populate QueryResult | Cody Robibero | |
| 2022-01-07 | Keep from serializing trailers into database | Joe Rogers | |
| 2022-01-05 | Error on SA1316 | Bond_009 | |
| 2022-01-02 | Merge pull request #7058 from cvium/the_most_important_feature | Bond-009 | |
| 2022-01-01 | Remove file extension filter and fix build | cvium | |
| 2021-12-28 | Use dedicated resolvers for extras | cvium | |
| 2021-12-27 | Remove more warnings | Cody Robibero | |
