| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-10-07 | Merge pull request #7514 from Shadowghost/music-extend | Claus Vium | |
| 2022-10-06 | Remove extra argument | Bond_009 | |
| 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-23 | Backport pull request #8189 from jellyfin/release-10.8.z | Luke F | |
| Fix GetItems IndexOutOfRangeException when IDs do not exist Original-merge: 527ed0607d5f31a232293b39daac19018518b1a0 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2022-09-13 | Add function back for compatibility, add sorting | Zach Phelan | |
| 2022-09-13 | Sort special features same as other spots, removing unnecssary function | Zach Phelan | |
| Added to contributors | |||
| 2022-09-13 | Extend music parsing | Shadowghost | |
| 2022-09-09 | Merge pull request #8250 from Bond-009/minor18 | Claus Vium | |
| Minor cleanup | |||
| 2022-08-18 | Minor cleanup | Bond_009 | |
| 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-14 | Check for empty guid | Niels van Velzen | |
| 2022-08-14 | Use Guid for adjacentTo API parameter | Niels van Velzen | |
| 2022-08-13 | Backport pull request #8209 from jellyfin/release-10.8.z | Shadowghost | |
| Fix series query including missing episodes when it should not Original-merge: 9357d610b13e2d9a759d69ed80dd71108af1e602 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua Boniface <joshua@boniface.me> | |||
| 2022-08-01 | Backport pull request #8191 from jellyfin/release-10.8.z | Joshua Boniface | |
| fix: remove Virtual episodes when their physical counterpart exists Authored-by: cvium <clausvium@gmail.com> Merged-by: Bond-009 <bond.009@outlook.com> Original-merge: 77a007a24d5eef1209766d31e2f5038b11d1a8d4 | |||
| 2022-08-01 | Backport pull request #8163 from jellyfin/release-10.8.z | Joshua Boniface | |
| Don't refresh playlists on album refresh Authored-by: David Ullmer <davidullmer@outlook.de> Merged-by: Claus Vium <cvium@users.noreply.github.com> Original-merge: 444b0ea3105517900e869d73223b8bf984f28aa4 | |||
| 2022-07-03 | Add escape hatch for Series merging | Mikal Stordal | |
| This is an universal solution for plugins to override how series are merged. The reason to override is so we can set the same provider id on multiple items without merging them, while using another id for merging them. Having an (optional) provider id not tied to any online database allows plugins to use their own rules for merging series. | |||
| 2022-05-20 | Merge pull request #7604 from Jellifi007/fixes-diactritics | Bond-009 | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> (cherry picked from commit 8d1d9734381472b301deb0118bbb8da2a769a65e) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-03-11 | BaseItem: remove unused function | Bond_009 | |
| 2022-03-11 | Merge pull request #7346 from Bond-009/guid | Claus Vium | |
| Optimize Guid comparisons | |||
| 2022-03-04 | Merge pull request #7370 from crobibero/internal-metadata-path | Claus Vium | |
| Only add internal files if the internal metadata path exists | |||
| 2022-02-28 | Use IFileSystem | Cody Robibero | |
| 2022-02-27 | Add post filtering for theme song and video | Joe Rogers | |
| 2022-02-21 | Rewrite tests for coverage and less duplication | Joe Rogers | |
| Address minor warnings Revert making GetInternalMetadataPath mockable | |||
| 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-18 | feat(external-media): refactor to generic provider, extend tests and file ↵ | Shadowghost | |
| recognition, consolidate and extend NamingOptions | |||
| 2022-01-28 | Remove some allocations (#7246) | Claus Vium | |
| 2022-01-22 | Ban the usage of Task.Result | Bond_009 | |
| If the calling function can't be made async easily you can still use .GetAwaiter().GetResult(), which is way easier to find in the future | |||
| 2022-01-20 | Properly populate QueryResult | Cody Robibero | |
| 2022-01-14 | Ignore JSON serialization for special features of movie. | Dmitry Lyzo | |
| When refreshing the metadata of the video with a local trailer, the server gets stuck trying to read the database and save the item at the same time. | |||
| 2022-01-11 | Merge pull request #7134 from adavier/trakt-episode-links | Cody Robibero | |
| 2022-01-07 | Keep from serializing trailers into database | Joe Rogers | |
| 2022-01-07 | Implement trakt episode links using the implementation from Series.cs | adavier | |
| The code is the same as `MediaBrowser.Controller/Entities/TV/Series.cs`, using the imdbID to generate Trakt links. The trakt url for episodes is `https://trakt.tv/episodes/{0}`. | |||
| 2021-12-27 | Remove more warnings | Cody Robibero | |
| 2021-12-24 | Update StyleCop | Bond_009 | |
| 2021-12-23 | Fix build from PR merging | Cody Robibero | |
| 2021-12-24 | Merge pull request #7029 from cvium/allocations_maybe | Cody Robibero | |
| 2021-12-22 | Merge pull request #7028 from cvium/everything_went_wrong | Cody Robibero | |
| 2021-12-21 | Don't cache special feature ids | cvium | |
| 2021-12-20 | Don't skip extras refresh when replacing metadata or doing a full refresh | cvium | |
| 2021-12-20 | Use our own Contains extension | cvium | |
| 2021-12-20 | Fix extras folders | cvium | |
| 2021-12-19 | Use == instead of Object.Equals to avoid closure allocation | cvium | |
| 2021-12-15 | Merge branch 'master' into what_could_go_wrong | Claus Vium | |
| 2021-12-14 | Cache BaseItemKind | Cody Robibero | |
| 2021-12-12 | Folder can't have extras | cvium | |
| 2021-12-12 | Use BaseItemKind where possible | Cody Robibero | |
| 2021-12-07 | Refactor extras parsing | cvium | |
| 2021-12-01 | Prevent crashes in specific scenarios | Jonas Resch | |
| 2021-11-30 | Add support for external audio files | Jonas Resch | |
| 2021-11-20 | Merge pull request #6862 from 1337joe/query-instead-of-filtering | Cody Robibero | |
