| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-01-09 | Move channels to LiveTv project | Patrick Barron | |
| 2024-01-06 | Fix More Live TV Warnings (#10818) | Patrick Barron | |
| * Fix CA1819 in LiveTvManager * Call ConfigureAwait in ChannelManager | |||
| 2023-10-14 | Merge branch 'master' into fix-resharper-warnings | Stepan Goremykin | |
| # Conflicts: # Emby.Server.Implementations/Updates/InstallationManager.cs # tests/Jellyfin.Server.Integration.Tests/OpenApiSpecTests.cs | |||
| 2023-10-11 | Multiple Stream changes | Bond_009 | |
| * Remove useless MemoryStream in DlnaHttpClient * Use HttpContent.ReadFromJsonAsync extension * Call ConfigureAwait for IAsyncDisposable * Use HttpContent.CopyToAsync where possible | |||
| 2023-10-07 | Pass cancellation token | Stepan Goremykin | |
| 2023-03-14 | Reduce usage of GetAwaiter().GetResult() | Bond_009 | |
| 2023-03-01 | Allocate less Lists | Bond_009 | |
| 2023-01-27 | Use dependency injection for IChannel | Patrick Barron | |
| 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-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-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-15 | Fix some warnings | Bond_009 | |
| 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 | |
| 2021-12-27 | Remove more warnings | Cody Robibero | |
| 2021-12-20 | Use our own Contains extension | cvium | |
| 2021-12-12 | Use BaseItemKind where possible | Cody Robibero | |
| 2021-11-16 | Fix some warnings | Bond_009 | |
| 2021-10-26 | Enable nullable for more files | Bond_009 | |
| 2021-10-03 | Fix warnings in ChannelManager | Patrick Barron | |
| 2021-09-06 | Merge pull request #6177 from Bond-009/async | Claus Vium | |
| Use async FileStreams where it makes sense | |||
| 2021-09-02 | Use async FileStreams where it makes sense | Bond_009 | |
| 2021-08-28 | Remove more and more warnings | Cody Robibero | |
| 2021-08-15 | Minor improvements | Bond_009 | |
| 2021-06-19 | Move non-jellyfin extensions to separate project | Bond_009 | |
| 2021-05-20 | Enable nullable reference types for Emby.Server.Implementations | Bond_009 | |
| 2021-04-17 | Remove unused using directives | BaronGreenback | |
| 2021-03-13 | FxCop -> Net Analyzers (part 2) | Bond_009 | |
| 2021-01-12 | JsonSerializer deserialize from bytes where possible | Bond_009 | |
| This is faster and uses way less memory ``` BenchmarkDotNet=v0.12.1, OS=fedora 32 Intel Core i7-6700HQ CPU 2.60GHz (Skylake), 1 CPU, 8 logical and 4 physical cores .NET Core SDK=5.0.100 [Host] : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT DefaultJob : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT | Method | Mean | Error | StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated | |------- |---------:|--------:|--------:|--------:|------:|------:|----------:| | Bytes | 158.4 us | 2.56 us | 2.14 us | 16.8457 | - | - | 52.08 KB | | String | 172.8 us | 0.78 us | 0.70 us | 41.5039 | - | - | 127.82 KB | | Custom | 155.5 us | 2.95 us | 2.76 us | 10.0098 | - | - | 31.27 KB | ``` | |||
| 2020-12-29 | Use UTF8 encoding and async correctly | David | |
| 2020-12-24 | Put json serializer options in private field | David | |
| 2020-12-24 | Use sync string instead of file | David | |
| 2020-12-23 | Add missing FileStreams | David | |
| 2020-12-23 | Use streams instead of strings | David | |
| 2020-12-23 | Remove xml docs | David | |
| 2020-12-23 | Remove custom Json serializer from Emby.Server.Implementations | David | |
| 2020-12-01 | fix spacing | crobibero | |
| 2020-12-01 | Use Guid as API parameter type where possible | crobibero | |
| 2020-11-16 | Reduce RequestHelpers.Split usage and remove RequestHelpers.GetGuids usage. | crobibero | |
| 2020-11-06 | Minor perf improvements | Bond_009 | |
| 2020-10-17 | Use nameof where possible | Bond_009 | |
| 2020-08-31 | Fix some warnings | Bond_009 | |
| 2020-08-21 | Make some methods async | Bond_009 | |
| 2020-08-07 | Fix MemoryCache Usage. | Patrick Barron | |
| 2020-08-01 | Merge pull request #3578 from barronpm/displaypreferences-efcore | Bond-009 | |
| Migrate Display Preferences to EF Core | |||
| 2020-07-29 | Use MemoryCache in ChannelManager | Patrick Barron | |
| 2020-07-17 | Migrate Display Preferences to EF Core | Patrick Barron | |
| 2020-06-15 | fix SA1005 | telans | |
