ConsoleD
ConsoleD copied to clipboard
Because colors are awesome.
I use DUB version 1.26.1, DMD64 version 2.097.2 and all I did was `dub init` a new project and adding `consoled` as a dependency. ``` ... "dependencies": { "consoled": "~>1.0.4"...
It would be awesome to have a new release for the latest changes...
may have already been fixed. is this just a case of needing v1.0.5 to be tagged? `~/.dub/packages/consoled-1.0.4/consoled/source/consoled.d(1211,15): Deprecation: module std.array is not accessible here, perhaps add 'static import std.array;'`
``` dmd --version DMD64 D Compiler v2.073.2 Copyright (c) 1999-2016 by Digital Mars written by Walter Bright ``` ``` ../../.dub/packages/consoled-1.0.4/consoled/source/terminal.d(291,14): Deprecation: Implicit string concatenation is deprecated, use "\x0a# Generic VT...
readPassword is returning a string of keys pressed not characters. entering youHooHoo as a password returns YOU►HOO►HOO We might want to use _getch for the password input (https://msdn.microsoft.com/en-us/library/078sfkak.aspx) Unix is...
DMD version is ```DMD64 D Compiler v2.072.0``` Whenever I compile with ConsoleD it prints out several "Implicit String Concatenation Deprecated" messages, which do not affect the build, but are annoying...
At least on linux when used 1.0.4 colors look darker comparing to 1.0.3.
For example I am printing: xxx and then I need print: yy But xxx is 3 symbols, and if I will overwrite 2 I will get: yyx is there any...
I expected the following to output "Hello........World" but it comes out as "Hello.World" (had to swap spaces for . due to markdown formatting) ``` import std.stdio, consoled; alias GreenText =...
Fix for issue #11. This is just a quick and dirty hack; if anybody has a better idea of how to fix it, please speak up or submit a counter-pull....