Skip to content

Commit

Permalink
Tidying up
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Dec 30, 2022
1 parent e56d551 commit ba934b9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion AltCover.Avalonia/MainWindow.fs
Original file line number Diff line number Diff line change
Expand Up @@ -803,9 +803,16 @@ type MainWindow() as this =

[<assembly: SuppressMessage("Gendarme.Rules.Correctness",
"EnsureLocalDisposalRule",
Scope = "member",
Scope = "member", // MethodDefinition
Target =
"<StartupCode$AltCover-Visualizer>.$MainWindow/Pipe #1 input at line 516@517::Invoke(Microsoft.FSharp.Core.Unit)",
Justification =
"Local of type 'Task`1' is not disposed of. Hmm.")>]
[<assembly: SuppressMessage("Gendarme.Rules.Correctness",
"EnsureLocalDisposalRule",
Scope = "member", // MethodDefinition
Target =
"<StartupCode$AltCover-Visualizer>.$MainWindow/InitializeComponent@594-7::Invoke(Avalonia.Interactivity.RoutedEventArgs)",
Justification =
"Local of type 'Task' is not disposed of (at least not locally)")>]
()
7 changes: 6 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ A. Start with the Quick Start guide : https://github.com/SteveGilham/altcover/wi
read the FAQ : https://github.com/SteveGilham/altcover/wiki/FAQ

# {0} (Habu series release 19)
* [API] Types Options.CLI, Options.Prepare and Options.Collect in namespace `AltCover`; concrete implementations of the `ICLIOptions`, `IPrepareOptions` and `ICollectOptions` respectively, with getter and setter for each property. Default values for the latter two are as per the [`Primitive`](https://stevegilham.github.io/altcover/AltCover.Engine/Primitive-fsapidoc) record types.
* [GTKVisualizer] Fix an off-by-one crash for `coverlet` generated files
* [AvaloniaVisualizer] Fix possible crash launching the About dialog
* [Visualizer] Display coverage percentages against nodes of the tree (known issue that the synthetic F# module nodes are not thus decorated)
* [Visualizer] Improve handling of larger coverage files by deferring more processing until the tree model is actually expanded.
* [API] Types `Options.CLI`, `Options.Logging`, `Options.Prepare` and `Options.Collect` in namespace `AltCover`; concrete implementations of the `ICLIOptions`, `ILoggingOptions` and `IPrepareOptions` and `ICollectOptions` respectively, with getter and setter for each property. Default values for the latter two are as per the corresponding [`Primitive`](https://stevegilham.github.io/altcover/AltCover.Engine/Primitive-fsapidoc) record types.
* [API] Also on the `AltCover.Fake` package in the `AltCoverFake.DotNet.Testing` namespace (except `Options.Logging` which is not useful in that context)

# 8.5.842 (Habu series release 18)
* [VISUALIZER] As the relevant Avalonia issue is long resolved, move to having separate dialog boxes for the Avalonia Visualizer's "About" and message box, as in the GTK# version.
Expand Down

0 comments on commit ba934b9

Please sign in to comment.