Skip to content

Releases: tbm0115/Consoul

v1.6.6 Added EditObjectView

26 Jul 16:06
a4c59ce
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6.5...v1.6.6

v1.6.5 Fixed TableView

02 Jan 20:35
Compare
Choose a tag to compare

Fixed bug where TableView with empty contents immediately returns value of -1.
Full Changelog: v1.6.4...v1.6.5

v1.6.4 Added ReadPassword

02 Jan 19:22
Compare
Choose a tag to compare

v1.6.3 Logging Exceptions Fix

15 Mar 07:15
Compare
Choose a tag to compare

v1.6.2 Cancellable Read()

03 Feb 20:52
808bbb4
Compare
Choose a tag to compare

What's Changed

  • Implemented CancellationToken on Read() by @tbm0115 in #35

This update allows implementers to call Consoul.Read() and include a CancellationToken to cancel the read operation at anytime. For example:

using(var canceller = new CancellationTokenSource()) {
  canceller.CancelAfter(TimeSpan.FromSeconds(5));
  canceller.Token.Register(() => Consoul.Write("Console.Read() Timed-out!", ConsoleColor.Red));

  // Now wait more than 5 seconds to see the red message in the window
  string userInput = Consoul.Read(canceller.Token);
}
Consoul.Write("Finished!", ConsoleColor.Green);

Full Changelog: v1.6.1...v1.6.2

v1.6.1 Ding and Alert

21 Jan 21:00
Compare
Choose a tag to compare

Added Consoul.Ding and Consoul.Alert methods to play an audible ding in the console window using the BEL character.

Full Changelog: 1.6.0...v1.6.1

v1.6.0 Custom Logger

14 Jan 00:48
Compare
Choose a tag to compare

Error handling around View method invokes

13 Jul 03:41
Compare
Choose a tag to compare

1.5.13 .NET Core and .NET Framework Support

11 Apr 16:14
5c0b4d0
Compare
Choose a tag to compare

Included .NET Core and .NET Framework as target frameworks.