aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-11-14Fix warningsBond_009
2023-11-14Use System.Net.IPNetworkBond_009
2023-11-14Update to .NET 8Bond_009
2023-11-05Add IDisposableAnalyzers to more projectsBond_009
2023-10-27Merge pull request #10472 from cvium/dispose_imagefilterBond-009
2023-10-25refactor: cache the resize image filtercvium
2023-10-25chore(deps): use Svg.Skia instead of the deprecated SkiaSharp.Svgcvium
2023-10-18Merge branch 'master' into trickplayNick
2023-10-08Jellyfin.Drawing minor improvementsBond_009
Reduce duplicate/dead code
2023-10-06Reduce string allocationsBond_009
Some simple changes to reduce the number of allocated strings
2023-09-23Start adding IDisposableAnalyzers to projectsBond_009
2023-09-11Removed nesting levels through block-scoped `using` statement (#10025)Lehonti Ramos
Co-authored-by: John Doe <john@doe> Co-authored-by: Lehonti Ramos <lehonti@ramos>
2023-08-22== null -> is nullBond_009
2023-08-22Enable nullable for more files and add testsBond_009
Adds basic tests for FFProbeVideoInfo.CreateDummyChapters Fixed error message CreateDummyChapters instead of reporting the total minutes it only reported the minute component
2023-08-20fix: accessing Standard* of a Process requires manually disposing them ↵Claus Vium
afterwards (#10125)
2023-06-28Merge branch 'master' into trickplayNick
2023-06-28Fix clean regexBond-009
2023-06-28Use RegexGenerator where possibleBond_009
2023-06-27Fixed RTL text not beeing rendered properly on Lib images (#9612)JPVenson
Co-authored-by: Cody Robibero <cody@robibe.ro>
2023-06-26Migrate to trickplay table to EF. Rename vars/methods/members to have ↵Nick
consistent use of tile and thumbnail
2023-06-22Move SkiaSharp related code to Jellyfin.Drawing and IImageEncoderNick
2023-06-21Reduce bottlenecks scan code (#9863)Bond-009
2023-04-10#7626 Added handling for common FormatExceptions with Skia loading sv… (#9581)JPVenson
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
2023-04-06Remove redundant 'else' keywordsStepan Goremykin
2023-04-06Remove unused using directivesStepan Goremykin
2023-02-20Improve alternate ordering (#9336)Bond-009
2023-02-12Always run code analyzers for tests projects (#9304)Bond-009
2023-02-04Use Directory.Packages.props (#9135)Zoltan Csizmadia
Co-authored-by: Zoltan Csizmadia <CsizmadiaZ@valassis.com>
2023-02-01Improve ffprobe json parsing and don't log error for Codec Type attachmentBond_009
2023-01-28Remove ability to add a played indicator to images (#9186)Cody Robibero
2023-01-24Simplify AlphanumericComparatorBond_009
2023-01-18chore(deps): update dependency microsoft.codeanalysis.bannedapianalyzers to ↵renovate[bot]
v3.3.4 (#9117) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-16Allow limiting parallel image encodings to reduce memory usage (#8783)Hannes Braun
2023-01-10Use file-scoped namespaces in Jellyfin.Drawing.SkiaPatrick Barron
2023-01-10Use file-scoped namespaces in Jellyfin.DrawingPatrick Barron
2023-01-10Move Jellyfin.Drawing.Skia to srcPatrick Barron
2023-01-10Rename Emby.Drawing and move to src (#9054)Patrick Barron
* Move Emby.Drawing to src * Rename Emby.Drawing -> Jellyfin.Drawing
2022-12-27Use Diacritics.NETBond_009
Last time we had to revert this due to regressions, now those regression tests seem to succeed with a newer version of Diacritics.NET
2022-12-07Update depsBond_009
2022-12-07Update projects to .net7Bond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-11-27Investigate some TODO commentsBond_009
2022-11-09chore(deps): update dotnet monorepo (#8708)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2022-10-28Backport pull request #8516 from jellyfin/release-10.8.zcvium
fix: kill ffprobe if keyframe parsing fails Original-merge: 6d23de64c093b83ba5a9c40d79b6362dd508fd62 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-10-22Migrate MusicBrainz plugin to MetaBrainz.MusicBrainzMrTimscampi
Co-authored-by: crobibero <cody@robibe.ro> Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_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-28Remove redundant using directivesHannes Braun
2022-09-23Backport pull request #8433 from jellyfin/release-10.8.zCody 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-06change variable to camelCaseAndreas Egli