| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 #8433 from jellyfin/release-10.8.z | Cody Robibero | |
| Update to dotnet 6.0.9 Original-merge: 4ec82ec662834867742a08dff680c938c4a5542a Merged-by: Joshua M. Boniface <joshua@boniface.me> Backported-by: Joshua M. Boniface <joshua@boniface.me> | |||
| 2022-09-06 | change variable to camelCase | Andreas Egli | |
| 2022-08-28 | allow additional flags after K_ for ffprobe keyframe extraction | Andreas Egli | |
| 2022-08-28 | add gentps flag to ffprobe for keyframe extraction | Andreas Egli | |
| 2022-08-28 | add TryParse to FFProbe Keyframe extraction | Andreas Egli | |
| 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-07-13 | bump Jellyfin to 10.9 | Cody Robibero | |
| 2022-06-14 | Merge pull request #7911 from cvium/fix_keyframe_transcode | Cody Robibero | |
| (cherry picked from commit 07b39655ebe2e96388ffbbecebeebb5284c26baf) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 2022-06-14 | Merge pull request #7894 from crobibero/search-hints | Cody Robibero | |
| (cherry picked from commit 0f75f177361906626e658da86d63583d5111f006) Signed-off-by: crobibero <cody@robibe.ro> | |||
| 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-05-09 | Bump StyleCop.Analyzers from 1.2.0-beta.406 to 1.2.0-beta.435 (#7726) | dependabot[bot] | |
| Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | |||
| 2022-03-21 | Bump StyleCop.Analyzers from 1.2.0-beta.376 to 1.2.0-beta.406 | dependabot[bot] | |
| Bumps [StyleCop.Analyzers](https://github.com/DotNetAnalyzers/StyleCopAnalyzers) from 1.2.0-beta.376 to 1.2.0-beta.406. - [Release notes](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/releases) - [Commits](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.376...1.2.0-beta.406) --- updated-dependencies: - dependency-name: StyleCop.Analyzers dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> | |||
| 2022-03-12 | Merge pull request #7325 from eyezak/issue/6450 | Cody Robibero | |
| 2022-03-11 | Merge pull request #7346 from Bond-009/guid | Claus Vium | |
| Optimize Guid comparisons | |||
| 2022-03-08 | Update to dotnet 6.0.3 | Cody Robibero | |
| 2022-03-06 | Use Enum.GetValues<T>() | Cody Robibero | |
| 2022-03-06 | Clean up EnumFlags serialization | Cody Robibero | |
| 2022-02-28 | Allow KeyframeExtractor to be localized | Cody Robibero | |
| 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-02-08 | Update to dotnet 6.0.2 | Cody Robibero | |
| Signed-off-by: Cody Robibero <cody@robibe.ro> | |||
| 2022-02-01 | Fix the broken fMP4 main playlist (#7263) | Nyanmisaka | |
| 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-16 | Add pagination and fixes | cvium | |
| 2022-01-14 | Apply suggestions from code review | Claus Vium | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2022-01-12 | Fix bool | cvium | |
| 2022-01-12 | Fix progress | cvium | |
| 2022-01-12 | Apply suggestions from code review | Claus Vium | |
| Co-authored-by: Cody Robibero <cody@robibe.ro> | |||
| 2022-01-11 | Use local var for the length | cvium | |
| 2022-01-11 | Add progress report | cvium | |
| 2022-01-11 | Refactor and add scheduled task | cvium | |
| 2022-01-07 | Merge branch 'master' into keyframe_extraction_v1 | cvium | |
| # Conflicts: # Jellyfin.Api/Controllers/DynamicHlsController.cs # MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs # MediaBrowser.MediaEncoding/Encoder/MediaEncoder.cs | |||
| 2021-12-24 | Update StyleCop | Bond_009 | |
| 2021-12-19 | Remove unreachable branches from JsonConverters | Bond_009 | |
| * If the type is a reference type we don't have to handle null ourselves * reader.ValueSpan is only valid if reader.HasValueSequence is false | |||
| 2021-10-09 | Merge pull request #6501 from crobibero/schedules-direct | Claus Vium | |
| 2021-10-08 | Merge remote-tracking branch 'upstream/master' into schedules-direct | Cody Robibero | |
| 2021-10-08 | Remove duplicate Fisher–Yates shuffle impl | Bond_009 | |
| 2021-10-01 | Use ConvertFrom with invariant culture instead of current culture | Bond_009 | |
| 2021-09-26 | Implement FfProbeKeyframeExtractor and add tests for it | cvium | |
| 2021-09-25 | Review comment | cvium | |
| 2021-09-25 | Add ComputeSegments test | cvium | |
| 2021-09-25 | Update to .net 6 | cvium | |
| 2021-09-25 | Merge branch 'master' into keyframe_extraction_v1 | cvium | |
| 2021-09-25 | Add tests for ComputeEqualLengthSegments and fix bug | cvium | |
| 2021-09-25 | Add first test | cvium | |
| 2021-09-25 | Restructure the code to make it more testable | cvium | |
| 2021-09-25 | Fixes | cvium | |
| 2021-09-24 | Update Jellyfin.Extensions to .Net6 | Bond_009 | |
