tbrittain / SmbExplorerCompanion

Baseball-Reference style desktop application for Super Mega Baseball 4 franchise playthroughs
MIT License
2 stars 0 forks source link

Bump ScottPlot.WPF from 4.1.68 to 5.0.21 #172

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

Bumps ScottPlot.WPF from 4.1.68 to 5.0.21.

Release notes

Sourced from ScottPlot.WPF's releases.

ScottPlot 5.0.21

  • RenderManager: Exposed EnableRendering to facilitate render locking in async environments (#3264, #3213, #3095) Thanks @​kagerouttepaso
  • Arrow: Added a new arrow plot type that can be used to mark a position in coordinate space (#3265) Thanks @​hockerschwan
  • Label: Improved measurement of text containing leading or tailing whitespace (#3223, #3268) Thanks @​KroMignon and @​lindpatr
  • Axis Line: Added LabelOppositeAxis property and created dedicated cookbook page (#3275) Thanks Lyakabynka
  • Plot: AddRectangle() now accepts more input types (#3263) Thanks @​enumer
  • Ticks: Created IMinorTickGenerator to allow users to inject their own logic for placing minor ticks
  • Axes: Added support for log-scale tick labels and grid lines (#3143)
  • Plot: Users can now Add.Ellipse() and Add.Circle() to place closed curves on plots (#3277, #3287) Thanks @​hockerschwan
  • Plot: Added Plot.Remove() overloads for removing all plottables of the given type (#3296, #3296) Thanks @​DerekGooding
  • Plot: Added Plot.Remove() overloads for removing plottables matching specific criteria (#3296, #3297) Thanks @​KroMignon
  • Plot: Added Plot.GetPlottables() overloads to facilitate iterating over plottables of a specific type
  • Rendering: Added support for gradient fills (#3298, #3157, #3310) Thanks @​KroMignon, @​hockerschwan, and @​faguetan
  • Controls: Disabling interactions then re-enabling them restores original interactions (#3305, #3304) Thanks @​Nils-Berghs
  • Plot: Added Plot.GetPixel() overload for improved support on multi-axis plots (#3306) Thanks @​MCF
  • Axis Lines: Label background color may be distinct from line color (#3309) Thanks @​PhoenixChenLu
  • Axis Spans: New Plot.Add.HorizontalSpan() and Plot.Add.VerticalSpan() methods for shading axis ranges (#3307) Thanks @​erikjl
  • Interactivity: Added methods to simplify dragging axis lines and spans. See the demo application for details. (#3307) Thanks @​erikjl
  • Ticks: Improved tick density calculation to prevent overlapping tick labels for very large numbers (#3203)
  • Axes: Deprecate DateTimeTicks(Edge.Bottom) in favor of DateTimeTicksBottom() which now returns the created axis.
  • Cookbook: Demonstrate DateTime tick labels with custom string formatting (#3272, #3273) Thanks @​sterenas and @​stratdev3
  • Demo: Added icon to main application and all windows launched within (#3281, #3273) Thanks @​sterenas
  • Controls: Do not list OpenGL controls in the toolbox. They can still be added programmatically, but they invite many problems and offer little performance improvements for most applications so their use is discouraged (#3282, #3262, #3271)
  • WinForms: Disable design time visibility in .NET Framework projects to prevent Visual Studio error messages (#3300) Thanks @​MaxFun
  • Markers: Added Plot.Add.Markers() to display a collection of marker positions all using the same style (#3283)
  • Axes: Added Plot.Axes.Remove() to allow users to remove additional axes they may have added (#3288) Thanks Felix
  • Data Streamer and Data Logger: Renamed IAxisManager to IAxisLimitManager to disambiguate it from the AxisManager class (#3289)
  • Pie: Added support for displaying slice label text above each slice (#3295) Thanks @​sterenas
  • Plot: Save() methods used to return the saved file path as a string but now they return a SavedImageInfo with a Path property and additional information (#3314)

ScottPlot 5.0.20

  • Assembly: ScottPlot packages are now strongly named (#3235, #3241) Thanks @​mlessmann
  • Scatter Plot: Added a ConnectStyle to enable step display mode (#3242) Thanks @​NoahSigl
  • Polygon: Plot.Add.Polygon() now accepts generic type lists and arrays (#3244) Thanks howhowone_23
  • Demo: Added a draggable points window to show how to drag points of a scatter plot (#3248) Thanks bologna
  • Generate: Added RandomNumber() and RandomNumbers() overloads
  • OHLC: Improved autoscaling behavior for empty datasets
  • Generate: Added RandomOHLCs() overload that accepts a starting DateTime (#3254) Thanks @​CBrauer
  • Axes: Improved support for inverted axes (#3252) Thanks @​fujiangang
  • Finance: Improved performance of financial charts by not rendering symbols outside the data area (#3258) Thanks Lyakabynka
  • SignalXY: Support vertical orientation (#3253) Thanks @​manaruto
  • Data logger and streamer: The property Data has been renamed to DataSource (#3260)
  • SignalConst: The property Data has been renamed to DataSource (#3260)
  • Axes: Added AutoScaleExpand() to zoom out to fit data only if necessary (#3259)
  • Style: Added Plot.Style.ColorLegend() for quick customization of legend colors (#3247)
  • Plot: Replacing palettes is now achieved by setting Plot.Add.Palette instead of Plot.Palette.
  • Plot: Added ShowLegend() overload that accepts manually created legend items
  • Scatter Plot: Added LinePattern property for customizing line style
  • Pie: Improved default colors of pie charts created from discrete values

... (truncated)

Changelog

Sourced from ScottPlot.WPF's changelog.

ScottPlot 5.0.21

Published on NuGet on 2024-01-28

  • RenderManager: Exposed EnableRendering to facilitate render locking in async environments (#3264, #3213, #3095) Thanks @​kagerouttepaso
  • Arrow: Added a new arrow plot type that can be used to mark a position in coordinate space (#3265) Thanks @​hockerschwan
  • Label: Improved measurement of text containing leading or tailing whitespace (#3223, #3268) Thanks @​KroMignon and @​lindpatr
  • Axis Line: Added LabelOppositeAxis property and created dedicated cookbook page (#3275) Thanks Lyakabynka
  • Plot: AddRectangle() now accepts more input types (#3263) Thanks @​enumer
  • Ticks: Created IMinorTickGenerator to allow users to inject their own logic for placing minor ticks
  • Axes: Added support for log-scale tick labels and grid lines (#3143)
  • Plot: Users can now Add.Ellipse() and Add.Circle() to place closed curves on plots (#3277, #3287) Thanks @​hockerschwan
  • Plot: Added Plot.Remove() overloads for removing all plottables of the given type (#3296, #3296) Thanks @​DerekGooding
  • Plot: Added Plot.Remove() overloads for removing plottables matching specific criteria (#3296, #3297) Thanks @​KroMignon
  • Plot: Added Plot.GetPlottables() overloads to facilitate iterating over plottables of a specific type
  • Rendering: Added support for gradient fills (#3298, #3157, #3310) Thanks @​KroMignon, @​hockerschwan, and @​faguetan
  • Controls: Disabling interactions then re-enabling them restores original interactions (#3305, #3304) Thanks @​Nils-Berghs
  • Plot: Added Plot.GetPixel() overload for improved support on multi-axis plots (#3306) Thanks @​MCF
  • Axis Lines: Label background color may be distinct from line color (#3309) Thanks @​PhoenixChenLu
  • Axis Spans: New Plot.Add.HorizontalSpan() and Plot.Add.VerticalSpan() methods for shading axis ranges (#3307) Thanks @​erikjl
  • Interactivity: Added methods to simplify dragging axis lines and spans. See the demo application for details. (#3307) Thanks @​erikjl
  • Ticks: Improved tick density calculation to prevent overlapping tick labels for very large numbers (#3203)
  • Axes: Deprecate DateTimeTicks(Edge.Bottom) in favor of DateTimeTicksBottom() which now returns the created axis.
  • Cookbook: Demonstrate DateTime tick labels with custom string formatting (#3272, #3273) Thanks @​sterenas and @​stratdev3
  • Demo: Added icon to main application and all windows launched within (#3281, #3273) Thanks @​sterenas
  • Controls: Do not list OpenGL controls in the toolbox. They can still be added programmatically, but they invite many problems and offer little performance improvements for most applications so their use is discouraged (#3282, #3262, #3271)
  • WinForms: Disable design time visibility in .NET Framework projects to prevent Visual Studio error messages (#3300) Thanks @​MaxFun
  • Markers: Added Plot.Add.Markers() to display a collection of marker positions all using the same style (#3283)
  • Axes: Added Plot.Axes.Remove() to allow users to remove additional axes they may have added (#3288) Thanks Felix
  • Data Streamer and Data Logger: Renamed IAxisManager to IAxisLimitManager to disambiguate it from the AxisManager class (#3289)
  • Pie: Added support for displaying slice label text above each slice (#3295) Thanks @​sterenas
  • Plot: Save() methods used to return the saved file path as a string but now they return a SavedImageInfo with a Path property and additional information (#3314)

ScottPlot 5.0.20

Published on NuGet on 2024-01-21

  • Assembly: ScottPlot packages are now strongly named (#3235, #3241) Thanks @​mlessmann
  • Scatter Plot: Added a ConnectStyle to enable step display mode (#3242) Thanks @​NoahSigl
  • Polygon: Plot.Add.Polygon() now accepts generic type lists and arrays (#3244) Thanks howhowone_23
  • Demo: Added a draggable points window to show how to drag points of a scatter plot (#3248) Thanks bologna
  • Generate: Added RandomNumber() and RandomNumbers() overloads
  • OHLC: Improved autoscaling behavior for empty datasets
  • Generate: Added RandomOHLCs() overload that accepts a starting DateTime (#3254) Thanks @​CBrauer
  • Axes: Improved support for inverted axes (#3252) Thanks @​fujiangang
  • Finance: Improved performance of financial charts by not rendering symbols outside the data area (#3258) Thanks Lyakabynka
  • SignalXY: Support vertical orientation (#3253) Thanks @​manaruto
  • Data logger and streamer: The property Data has been renamed to DataSource (#3260)
  • SignalConst: The property Data has been renamed to DataSource (#3260)
  • Axes: Added AutoScaleExpand() to zoom out to fit data only if necessary (#3259)
  • Style: Added Plot.Style.ColorLegend() for quick customization of legend colors (#3247)
  • Plot: Replacing palettes is now achieved by setting Plot.Add.Palette instead of Plot.Palette.
  • Plot: Added ShowLegend() overload that accepts manually created legend items
  • Scatter Plot: Added LinePattern property for customizing line style

... (truncated)

Commits
  • 4b0c2de ScottPlot 5.0.21
  • 849c978 SP5 Plot: Save() methods return SavedImageInfo
  • 281caaa SP5 Pie: add options for slice label rendering
  • 107a5f3 SP5: IAxisManager → IAxisLimitManager
  • c2b1be1 Update CHANGELOG.md
  • 380b330 SP5: Plot.Axes.Remove()
  • 81011a5 SP5 Demo: show description beneath each cookbook recipe
  • 3ae47a9 SP5: Plot.Add.Markers()
  • 587560d SP5 WinForms: disable design time visibility
  • 69d74cb SP5: do not display OpenGL controls in the toolbox
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 months ago

Superseded by #176.