diff -Nru byobu-5.14/ChangeLog byobu-5.15/ChangeLog --- byobu-5.14/ChangeLog 2012-02-23 14:02:58.000000000 +0000 +++ byobu-5.15/ChangeLog 2012-02-23 20:35:58.000000000 +0000 @@ -1,4 +1,13 @@ -byobu (5.14) released; urgency=low +byobu (5.15) released; urgency=low + + * usr/bin/byobu, usr/lib/byobu/include/constants: + - fix 256 color support + - default to colors specified in the Ubuntu brand guidelines + + http://design.canonical.com/the-toolkit/ubuntu-brand-guidelines/ + + -- Dustin Kirkland Thu, 23 Feb 2012 08:04:07 -0600 + +byobu (5.14-0ubuntu1) precise; urgency=low * usr/bin/byobu-status, usr/lib/byobu/battery, usr/lib/byobu/cpu_freq, usr/lib/byobu/custom, usr/lib/byobu/disk, usr/lib/byobu/disk_io, @@ -12,7 +21,7 @@ - this fixes byobu status on some slower systems - use the last cached status, if the current one doesn't return - -- Dustin Kirkland Tue, 21 Feb 2012 23:22:38 -0600 + -- Dustin Kirkland Thu, 23 Feb 2012 08:04:04 -0600 byobu (5.13-0ubuntu1) precise; urgency=low diff -Nru byobu-5.14/debian/changelog byobu-5.15/debian/changelog --- byobu-5.14/debian/changelog 2012-02-23 14:03:16.000000000 +0000 +++ byobu-5.15/debian/changelog 2012-02-23 20:36:29.000000000 +0000 @@ -1,3 +1,12 @@ +byobu (5.15-0ubuntu1) precise; urgency=low + + * usr/bin/byobu, usr/lib/byobu/include/constants: + - fix 256 color support + - default to colors specified in the Ubuntu brand guidelines + + http://design.canonical.com/the-toolkit/ubuntu-brand-guidelines/ + + -- Dustin Kirkland Thu, 23 Feb 2012 08:04:07 -0600 + byobu (5.14-0ubuntu1) precise; urgency=low * usr/bin/byobu-status, usr/lib/byobu/battery, usr/lib/byobu/cpu_freq, @@ -12,7 +21,7 @@ - this fixes byobu status on some slower systems - use the last cached status, if the current one doesn't return - -- Dustin Kirkland Tue, 21 Feb 2012 23:22:38 -0600 + -- Dustin Kirkland Thu, 23 Feb 2012 08:04:04 -0600 byobu (5.13-0ubuntu1) precise; urgency=low diff -Nru byobu-5.14/usr/bin/byobu byobu-5.15/usr/bin/byobu --- byobu-5.14/usr/bin/byobu 2012-02-22 05:22:37.000000000 +0000 +++ byobu-5.15/usr/bin/byobu 2012-02-23 19:55:28.000000000 +0000 @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -VERSION=5.14 +VERSION=5.15 PKG="byobu" # All sorts of things go wrong if you don't own your $HOME dir. @@ -95,7 +95,7 @@ tmux) # Use 256 colors if possible if command -v tput >/dev/null; then - if [ "$(tput colors 2>/dev/null || echo 0)" = "256" ]; then + if [ "$(tput colors 2>/dev/null || echo 0)" = "256" ] || [ "$COLORTERM" = "gnome-terminal" ] || [ "$TERM" = "xterm" ]; then [ -z "$SCREEN_TERM" ] && SCREEN_TERM="-2" fi fi diff -Nru byobu-5.14/usr/lib/byobu/include/constants byobu-5.15/usr/lib/byobu/include/constants --- byobu-5.14/usr/lib/byobu/include/constants 2012-02-22 04:19:47.000000000 +0000 +++ byobu-5.15/usr/lib/byobu/include/constants 2012-02-23 20:34:03.000000000 +0000 @@ -99,7 +99,8 @@ command -v sensible-pager >/dev/null 2>&1 && export BYOBU_PAGER="sensible-pager" || export BYOBU_PAGER="less" # Default colors -[ -n "$BYOBU_DARK" ] || export BYOBU_DARK="black" -[ -n "$BYOBU_LIGHT" ] || export BYOBU_LIGHT="white" -[ -n "$BYOBU_ACCENT" ] || export BYOBU_ACCENT="magenta" -[ -n "$BYOBU_HIGHLIGHT" ] || export BYOBU_HIGHLIGHT="red" +export BYOBU_DARK="#AEA79F" # WARM GREY +export BYOBU_LIGHT="#333333" # COOL GREY +export BYOBU_ACCENT="#75507B" # AUBERGINE +export BYOBU_HIGHLIGHT="#DD4814" # UBUNTU ORANGE +