| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-12-27 | More cleanup | Bond_009 | |
| 2021-12-20 | Use our own Contains extension | cvium | |
| 2021-11-09 | Fix some warnings | Bond_009 | |
| down to 580 | |||
| 2021-11-09 | Fix some warnings | Bond_009 | |
| 609 left | |||
| 2021-10-02 | Fix warnings in ScheduledTasks | Patrick Barron | |
| 2021-09-03 | Fix some warnings | Bond_009 | |
| 2021-09-03 | Merge remote-tracking branch 'upstream/master' into warn-259810 | Cody Robibero | |
| 2021-09-01 | Allow zero activity log retention days | qsniyg | |
| 2021-08-28 | Remove more and more warnings | Cody Robibero | |
| 2021-08-13 | Merge branch 'master' into minor15 | Bond-009 | |
| 2021-07-11 | Fix some warnings | Bond_009 | |
| 2021-07-06 | Minor fixes | Bond_009 | |
| 2021-06-19 | Move non-jellyfin extensions to separate project | Bond_009 | |
| 2021-05-28 | Fix some warnings | Bond_009 | |
| 2021-05-24 | Create scheduled task for database optimization | Fernando Fernández | |
| 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-05 | Code Clean up: Use Pattern Matching (#5838) | BaronGreenback | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com> | |||
| 2021-04-17 | Remove unused using directives | BaronGreenback | |
| 2021-04-10 | Use sync Serialize when writing scheduled tasks to disk | cvium | |
| 2021-03-13 | FxCop -> Net Analyzers (part 2) | Bond_009 | |
| 2021-02-13 | Minor improvements | Bond_009 | |
| 2021-02-05 | Merge pull request #5005 from jellyfin/bytes | dkanada | |
| JsonSerializer deserialize from bytes where possible | |||
| 2021-01-18 | fix delete log task | crobibero | |
| 2021-01-12 | Open FileStream with FileMode.Create instead of FileMode.OpenOrCreate | Bond_009 | |
| > The OpenWrite method opens a file if one already exists for the file path, or creates a new file if one does not exist. For an existing file, it does not append the new text to the existing text. Instead, it overwrites the existing characters with the new characters. If you overwrite a longer string (such as "This is a test of the OpenWrite method") with a shorter string (such as "Second run"), the file will contain a mix of the strings ("Second runtest of the OpenWrite method"). Ref: https://docs.microsoft.com/en-us/dotnet/api/system.io.file.openwrite?view=net-5.0#remarks | |||
| 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 | ``` | |||
| 2021-01-03 | Fix string culture specificity | obradovichv | |
| Fix bug in SsaParser.cs primary color {\1c} formatting that would leave behind the {\1c} closing token and instead append </font> token unconditionally to the dialogue text. Add tests. Change AlphanumComparatorTests.cs complementary test data generation from an array shuffle to an array reversal. Although it was previously using a seeded Random, the shuffle itself could result in no rearrangement of elements if the seed or test data changed over time. The reversal guarantees reordering of elements and has the added benefit of simplifying the test code since no special handling is needed for arrays of 2 elements. Change DailyTrigger.cs logging of TriggerDate format to "yyyy-MM-dd HH:mm:ss.fff zzz" for consistency with configured log timestamp format and change DueTime format to culture-invariant "c" format. | |||
| 2020-12-30 | Merge branch 'master' into PluginDowngrade | Cody Robibero | |
| 2020-12-29 | Use UTF8 encoding and async correctly | David | |
| 2020-12-27 | Code revie | 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 | 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-14 | Initial upload | Greenback | |
| 2020-11-20 | Set DeleteTranscodeFileTask to trigger every 24h | crobibero | |
| 2020-11-18 | Fixes spelling. | Greenback | |
| 2020-11-15 | Merge remote-tracking branch 'upstream/master' into http-exception | crobibero | |
| 2020-11-14 | remove custom HttpException | crobibero | |
| 2020-11-14 | Replace Task.WaitAll with Task.Wait | Bond_009 | |
| 2020-11-14 | Missed some stuff | Bond_009 | |
| 2020-11-02 | Merge pull request #4341 from Bond-009/minor6 | Anthony Lavado | |
| Minor improvements | |||
| 2020-11-01 | Allow configuration of ActivityLogRetention | crobibero | |
| 2020-10-17 | Use nameof where possible | Bond_009 | |
| 2020-10-14 | Automatically clean activity log database | crobibero | |
| 2020-10-12 | Fix SA1012 and SA1013 warnings | Jan-Pieter Baert | |
| 2020-10-05 | Just enable instead | Anthony Lavado | |
| 2020-10-05 | Simply trigger | Anthony Lavado | |
| Co-authored-by: Claus Vium <cvium@users.noreply.github.com> | |||
| 2020-10-05 | Fix Transcode Cleanup Schedule | Anthony Lavado | |
| Sets the default time to midnight, and confirms to the same task scheduling commands that other tasks use. | |||
