SadConsole.FNA
6.4.5
See the version list below for details.
dotnet add package SadConsole.FNA --version 6.4.5
NuGet\Install-Package SadConsole.FNA -Version 6.4.5
<PackageReference Include="SadConsole.FNA" Version="6.4.5" />
paket add SadConsole.FNA --version 6.4.5
#r "nuget: SadConsole.FNA, 6.4.5"
// Install SadConsole.FNA as a Cake Addin #addin nuget:?package=SadConsole.FNA&version=6.4.5 // Install SadConsole.FNA as a Cake Tool #tool nuget:?package=SadConsole.FNA&version=6.4.5
An FNA library that emulates old-school console and command prompt style graphics. Use the SadConsole.Starter package for new projects.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has 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 |
---|---|---|
8.0.0 | 1,781 | 2/24/2019 |
7.3.0 | 1,446 | 12/29/2018 |
7.2.0 | 1,255 | 11/20/2018 |
7.1.0 | 1,298 | 10/19/2018 |
7.0.4 | 1,364 | 9/8/2018 |
7.0.3 | 1,315 | 9/8/2018 |
7.0.2 | 1,330 | 8/31/2018 |
7.0.1 | 1,337 | 8/29/2018 |
7.0.0 | 1,302 | 8/29/2018 |
6.5.0 | 1,507 | 6/12/2018 |
6.4.11 | 1,546 | 4/13/2018 |
6.4.10 | 1,407 | 3/18/2018 |
6.4.9 | 1,484 | 3/18/2018 |
6.4.8 | 1,503 | 3/18/2018 |
6.4.7 | 1,504 | 3/16/2018 |
6.4.6 | 1,544 | 2/14/2018 |
6.4.5 | 1,513 | 2/3/2018 |
6.4.3 | 1,374 | 11/14/2017 |
6.4.2 | 1,426 | 9/27/2017 |
6.4.1 | 1,413 | 9/27/2017 |
- Added new Palette and Timer classes.
- Added extension method to ColorGradient that returns a Color[] based on the stops.
- Fixed a bug in InputBox that happened when you clicked twice on the control. Thanks arxae and naknode!
- Fixed effect manager remove methods.
- Fixed mouse processing other consoles after it was found over the top-most
- Created a LayeredSurface.Load single param overload to block accidentally calling BasicSurface.Load
- MouseHandler for a Console has changed. If it assigned, the normal mouse processing logic will no longer run.
- Fixed rendering problem with consoles created after initialization. (thanks kingvitamin103)
## 6.4.5
- Added SadConsole.GameHelpers.Directions class and helpers.
- SurfaceEditor now supports basic shape functions. Easier to draw shapes than previous model. (Line only supported for now, more to come)
- Lines can be auto connected through static SurfaceEditor.ConnectLines method.
- Promoted a bunch of private members for the Window class to protected.
- Window title row can be positioned by the class now. Use the protected titleLocationY variable.
- ListBox.HideBorder instantly redraws instead of waiting for a `IsDirty` flag.