| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-11 | Don't auto-update if plugin is pending restart | Cody Robibero | |
| 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 | |||
| 2021-12-27 | More cleanup | Bond_009 | |
| 2021-11-06 | Load all types when checking plugin DLLs | cvium | |
| 2021-09-25 | Fix some warnings | Bond_009 | |
| 2021-09-02 | Use async FileStreams where it makes sense | Bond_009 | |
| 2021-06-19 | Move non-jellyfin extensions to separate project | Bond_009 | |
| 2021-06-06 | Minor fixes | Bond_009 | |
| 2021-05-28 | Fix some warnings | Bond_009 | |
| 2021-05-20 | Enable nullable reference types for Emby.Server.Implementations | Bond_009 | |
| 2021-05-05 | Code Clean up: Convert to null-coalescing operator ?? (#5845) | BaronGreenback | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com> | |||
| 2021-05-02 | minor optimization. | BaronGreenback | |
| 2021-04-06 | Keep plugin status after update. | BaronGreenback | |
| 2021-03-13 | FxCop -> Net Analyzers (part 2) | Bond_009 | |
| 2021-03-05 | 100% branch coverage for DashboardController | Bond_009 | |
| 2021-02-24 | catch http exception and fix possible issues | dkanada | |
| 2021-02-23 | add await directive for image download | dkanada | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2021-02-23 | remove useless call to dispose | dkanada | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2021-02-23 | improve performance in the wrong place | dkanada | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2021-02-23 | add suggested changes | dkanada | |
| 2021-02-23 | update timestamp parse for plugins | dkanada | |
| 2021-02-12 | handle plugin manifests automatically | dkanada | |
| 2021-02-08 | Add regression test for PluginManager.SaveManifest | Bond_009 | |
| 2021-02-08 | Exclude BOM when writing meta.json plugin manifest | cvium | |
| 2021-02-05 | Merge pull request #5005 from jellyfin/bytes | dkanada | |
| JsonSerializer deserialize from bytes where possible | |||
| 2021-01-25 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | David Ullmer | |
| Co-authored-by: Claus Vium <cvium@users.noreply.github.com> | |||
| 2021-01-24 | Remove try-catch nesting | David | |
| 2021-01-24 | Change plugin error message | David | |
| 2021-01-24 | Catch TypeLoadException during plugin loading | David Ullmer | |
| 2021-01-19 | Bug fixes | BaronGreenback | |
| 2021-01-12 | Handle IO errors in LoadManifest | 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-31 | Added referenced assembly failure detection, and DI failure protection. | BaronGreenback | |
| 2020-12-23 | copy constructor | BaronGreenback | |
| 2020-12-23 | Changes as requested | BaronGreenback | |
| 2020-12-23 | Update PluginManager.cs | BaronGreenback | |
| Changed a to i | |||
| 2020-12-23 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | BaronGreenback | |
| Co-authored-by: Claus Vium <cvium@users.noreply.github.com> | |||
| 2020-12-23 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | BaronGreenback | |
| Co-authored-by: Claus Vium <cvium@users.noreply.github.com> | |||
| 2020-12-22 | Fix for DI. | BaronGreenback | |
| 2020-12-22 | Fallback to default guid | BaronGreenback | |
| 2020-12-21 | New json converter implemented. | BaronGreenback | |
| 2020-12-20 | write json files indented. | BaronGreenback | |
| 2020-12-18 | removed exception | Greenback | |
| 2020-12-18 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | BaronGreenback | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2020-12-18 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | BaronGreenback | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2020-12-18 | Update Emby.Server.Implementations/Plugins/PluginManager.cs | BaronGreenback | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
