Alan Hemmings

Results 30 issues of Alan Hemmings

Implement MoveBufferArea in Unix to enable using more cross platform support. Currently .NET console (of all things) is not properly implemented in `.NET Standard 2.1`. If you look here :...

feature request
version 9

SignalR/server send events React "Konsole" The idea is to be able to drop in a text console "widget" into a webpage, e.g. a React control, or even in a static...

blue skies

Instead of locking a window to a set size, allow HighspeedWriter to call Render recursively on all child windows (consoles), so that the screen will be re-rendered using the new...

feature request
version 8

Scroll Up is used internally but exposed as a public method on IConsole. As new functionality is being added to Konsole, allowing for ViewPorts and scrolling in all directions, this...

feature request
version 8

// bug - Window.Open with Single line thickness opens with double! public static void Run(IConsole con) { var w1 = Window.Open(1, 1, 40, 28, "TestData : Filenames", LineThickNess.Single, ConsoleColor.White, ConsoleColor.DarkBlue);...

minor bug
version 7

Any window must be able to start monitoring keystrokes, and keep track of active child windows that any keyboard commands are then passed to. e.g. ``` var scores = window.OpenBox("scores",...

feature request
version 8

List view to allow you to render a list of entities in window X. Form view to allow you to specify that a selected item on a list, is rendered...

feature request
version 8

I want to be able to capture input safely at a region on the screen or at the current cursor position, and be able to specify the data type to...

feature request
version 8

currently if you call Clear(); the colors reset to White on Black, and you lose your current colors.

bug

bug when changing from double line to single and merging (error) ```csharp var c = new Window(60,20); var draw = new Draw(c, LineThickNess.Double); draw.Box(2, 2, 42, 8, "my test box",...

minor bug