UndoService 2.1.3-alpha
See the version list below for details.
dotnet add package UndoService --version 2.1.3-alpha
NuGet\Install-Package UndoService -Version 2.1.3-alpha
<PackageReference Include="UndoService" Version="2.1.3-alpha" />
paket add UndoService --version 2.1.3-alpha
#r "nuget: UndoService, 2.1.3-alpha"
// Install UndoService as a Cake Addin #addin nuget:?package=UndoService&version=2.1.3-alpha&prerelease // Install UndoService as a Cake Tool #tool nuget:?package=UndoService&version=2.1.3-alpha&prerelease
Simple undo/redo service based on the momento pattern. It uses delegates to access state. It can track changes to different parts of the application individually, while using one unified interface for performing undo/redo. This reduces the memory imprint and facilitates modular design. See the unit tests in the source repository for examples of how to use.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.3.2 | 2,004 | 11/17/2020 |
2.3.1 | 484 | 7/22/2020 |
2.3.1-alpha | 347 | 7/21/2020 |
2.3.0-alpha | 350 | 7/21/2020 |
2.2.3-alpha | 324 | 7/15/2020 |
2.2.2-alpha | 350 | 6/22/2020 |
2.2.0-alpha | 353 | 6/3/2020 |
2.1.11 | 487 | 6/2/2020 |
2.1.11-alpha | 350 | 5/28/2020 |
2.1.10-alpha | 368 | 5/28/2020 |
2.1.9-alpha | 320 | 5/28/2020 |
2.1.8-alpha | 366 | 5/28/2020 |
2.1.7-alpha | 370 | 5/27/2020 |
2.1.6-alpha | 318 | 5/26/2020 |
2.1.5-alpha | 302 | 5/26/2020 |
2.1.4-alpha | 328 | 5/26/2020 |
2.1.3-alpha | 357 | 5/25/2020 |
2.1.2-alpha | 370 | 5/25/2020 |
2.0.2 | 490 | 5/21/2020 |
1.1.0 | 503 | 3/27/2020 |
1.0.0 | 513 | 3/16/2020 |
SubUndoService class added. This is now used by AggregateUndoService instead of IUndoService.
IStateTracker interface added.
StateSet event added. This is intended to allow changed elements to be displayed in a UI in cases where they might not be currently visible when Undo/Redo is invoked.
IUndoService.Id removed. This was exposed incorrectly and used interally by AggregateUndoService.
Common validation code extracted into new public class UndoServiceValidator.