diff --git a/DESCRIPTION b/DESCRIPTION index 9d31226..827ffdc 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: colorout -Version: 1.1-0 -Date: 2014-12-17 +Version: 1.1-1 +Date: 2015-06-12 Title: Colorize R output on terminal emulators Author: Jakson Aquino and Dominique-Laurent Couturier Maintainer: Jakson Alves de Aquino diff --git a/NEWS b/NEWS index 04ace2b..84302c1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +Version 1.1-1 (2015-06-12) + + - Minor bug fixes. + + - New options: colorout.noninteractive and colorout.notatty. + Version 1.1-0 (2014-12-17) - Don't check if inside emacs; check if isatty(stdout()) is TRUE. diff --git a/man/setOutputColors256.Rd b/man/setOutputColors256.Rd index be2cb65..b418bd2 100644 --- a/man/setOutputColors256.Rd +++ b/man/setOutputColors256.Rd @@ -86,6 +86,8 @@ setOutputColors256(normal = c(0, 0, 18), number = c(0, 0, 90), string = c(0, 0, 22), const = c(0, 0, 94), stderror = 52) # Color schemes for black background: -setOutputColors256(normal = 202, number = 214, negnum = 209, date = 184, - string = 172, const = 179, zero.limit = 0.1) +setOutputColors256(normal = 39, negnum = 183, zero = 114, number = 51, + date = 43, string = 79, const = 75, zero.limit = 0.1) +setOutputColors256(normal = 202, number = 214, zero = 220, negnum = 209, + date = 184, string = 172, const = 179, zero.limit = 0.01) }