--- byobu-4.13.orig/debian/docs +++ byobu-4.13/debian/docs @@ -0,0 +1 @@ +README --- byobu-4.13.orig/debian/rules +++ byobu-4.13/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + +PKG=byobu +VER=`head -n 1 debian/changelog | sed 's/^.*(//' | sed 's/).*//' | sed 's/-.*//'` + +install-po: update-pot + for po in po/*.po ; do \ + lang=$${po#po/}; lang=$${lang%.po}; \ + mkdir -p debian/tmp/usr/share/locale/$${lang}/LC_MESSAGES/; \ + msgfmt $${po} -o debian/tmp/usr/share/locale/$${lang}/LC_MESSAGES/${PKG}.mo ; \ + done + +update-pot: + rm -f po/${PKG}.pot + xgettext -f po/POTFILES.Shell -o po/${PKG}.pot -L Shell + xgettext -f po/POTFILES.Python -o po/${PKG}.pot -L Python -j + for po in po/*.po ; do \ + msgmerge $${po} po/${PKG}.pot -o $${po} ; \ + done + +prebuild: clean + dh_testdir + cp debian/changelog ChangeLog + aclocal + automake --add-missing + autoconf + ./configure --prefix=/usr + +build: prebuild + dh_testdir + $(MAKE) + +clean: + dh_testdir + dh_clean + [ ! -f Makefile ] || $(MAKE) distclean + rm -f ChangeLog + for po in po/*.po ; do \ + lang=$${po#po/}; lang=$${lang%.po}; \ + rm -f po/locale/$${lang}/LC_MESSAGES/${PKG}.mo ; \ + done + +install: build install-po + dh_testdir + dh_testroot + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + dh_link usr/share/byobu/keybindings/f-keys usr/share/byobu/keybindings/common + dh_link usr/share/byobu/pixmaps/byobu.svg usr/share/icons/hicolor/scalable/apps/byobu.svg + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_install -X.bzr --fail-missing --sourcedir=debian/tmp -i + dh_installdocs -X.bzr -i + dh_installman -i + dh_installchangelogs -i + dh_installdebconf -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary: binary-indep +.PHONY: build clean binary-indep binary install prebuild + +binary-arch: --- byobu-4.13.orig/debian/compat +++ byobu-4.13/debian/compat @@ -0,0 +1 @@ +6 --- byobu-4.13.orig/debian/watch +++ byobu-4.13/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/byobu/+download http://launchpad.net/byobu/.*/byobu_(.+).orig.tar.gz --- byobu-4.13.orig/debian/templates +++ byobu-4.13/debian/templates @@ -0,0 +1,11 @@ +Template: byobu/launch-by-default +Type: boolean +Default: false +_Description: Do you want to launch Byobu at shell login for all users? + Byobu can launch automatically at login (e.g. console, ssh), providing + an attachable/detachable window manager on the command line. + . + If you select this option, Byobu will install a symlink in /etc/profile.d. + This setting is system-wide, for all users logging into the system. + Individual users can disable this by touching + ~/.byobu/disable-autolaunch, or configuring with 'byobu-config'. --- byobu-4.13.orig/debian/postinst +++ byobu-4.13/debian/postinst @@ -0,0 +1,40 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule +db_version 2.0 + +PKG="byobu" + +db_get byobu/launch-by-default || true +if [ "$RET" = true ]; then + ln -sf /usr/bin/$PKG-launch /etc/profile.d/Z98-$PKG.sh +else + rm -f /etc/profile.d/Z98-$PKG.sh +fi + +# Clean up any old-school screen-profiles diversions of /usr/bin/screen +if [ -f /usr/bin/screen ] && [ -f /usr/bin/screen.real ]; then + divertpkg=$(dpkg-divert --listpackage /usr/bin/screen || true) + if [ "$divertpkg" = "screen-profiles" ]; then + rm -f /usr/bin/screen + dpkg-divert --package screen-profiles --rename --remove /usr/bin/screen + fi +fi + +# Remove the short-lived MOTD message +rm -f /etc/update-motd.d/55-window-manager + +# Notify users that they should reload their profile +DIR="/var/run/screen" +if [ -d "$DIR" ]; then + for d in "$DIR"/*; do + [ -d "$d" ] || continue + touch "$d/$PKG.reload-required" + chown --reference "$d" "$d/$PKG.reload-required" || true + chmod 700 "$d/$PKG.reload-required" + done +fi + +#DEBHELPER# + +# vi: syntax=sh ts=4 noexpandtab --- byobu-4.13.orig/debian/changelog +++ byobu-4.13/debian/changelog @@ -0,0 +1,2986 @@ +byobu (4.13-0ubuntu1) oneiric; urgency=low + + [ Scott Moser ] + * usr/lib/byobu/network: + - fix but where /proc/net/dev has so much traffic that integers + run up against colons with no whitespace + + [ Dustin Kirkland ] + * debian/config, debian/postinst, experimental/byobu-aggregate-status, + usr/bin/byobu, usr/bin/byobu-ctrl-a, usr/bin/byobu-disable, + usr/bin/byobu-enable, usr/bin/byobu-export, usr/bin/byobu-janitor, + usr/bin/byobu-launch, usr/bin/byobu-launcher, usr/bin/byobu- + launcher-install, usr/bin/byobu-launcher-uninstall, usr/bin/byobu- + quiet, usr/bin/byobu-reconnect-sockets, usr/bin/byobu-select- + profile, usr/bin/byobu-shell, usr/bin/byobu-silent, usr/bin/byobu- + status, usr/bin/byobu-status-detail, usr/lib/byobu/apport, + usr/lib/byobu/arch, usr/lib/byobu/battery, usr/lib/byobu/cpu_count, + usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp, + usr/lib/byobu/custom, usr/lib/byobu/date, usr/lib/byobu/disk, + usr/lib/byobu/disk_io, usr/lib/byobu/ec2_cost, + usr/lib/byobu/fan_speed, usr/lib/byobu/hostname, + usr/lib/byobu/ip_address, usr/lib/byobu/load_average, + usr/lib/byobu/logo, usr/lib/byobu/mail, usr/lib/byobu/mem_available, + usr/lib/byobu/mem_used, usr/lib/byobu/menu, usr/lib/byobu/network, + usr/lib/byobu/notify_osd, usr/lib/byobu/processes, + usr/lib/byobu/raid, usr/lib/byobu/rcs_cost, + usr/lib/byobu/reboot_required, usr/lib/byobu/release, + usr/lib/byobu/services, usr/lib/byobu/swap, usr/lib/byobu/time, + usr/lib/byobu/time_utc, usr/lib/byobu/trash, + usr/lib/byobu/updates_available, usr/lib/byobu/uptime, + usr/lib/byobu/users, usr/lib/byobu/whoami, + usr/lib/byobu/wifi_quality, usr/sbin/byobu-classroom: + - add vi modelines + * usr/lib/byobu/hostname: + - whitespace handled elsewhere + * usr/bin/byobu-launch: + - fix typo, missing whitespace + + -- Dustin Kirkland Thu, 16 Jun 2011 11:37:56 -0500 + +byobu (4.12-0ubuntu1) oneiric; urgency=low + + * usr/bin/byobu-launch: + - support users who chose to set LC_BYOBU=0, since + LC_* are passed over SSH by default in Debian/Ubuntu + * usr/lib/byobu/network: + - fix network threshold handling, which was not working properly + * usr/share/byobu/keybindings/f-keys, usr/share/man/man1/byobu.1: + - LP: #797442 + - ctrl-F6 kills this split + - update docs to reflect reality + * usr/share/byobu/profiles/tmux: + - added an early draft of a tmux profile + * usr/lib/byobu/hostname, usr/lib/byobu/ip_address: + - in EC2, use metadata for ip and hostname, far more useful + in that environment + * === added directory experimental, experimental/byobu-aggregate- + status: + - working on an experimental status aggregator + + -- Dustin Kirkland Thu, 16 Jun 2011 11:37:53 -0500 + +byobu (4.11-0ubuntu1) oneiric; urgency=low + + [ Dustin Kirkland ] + * debian/postinst: LP: #796422 + - handle ownerships of the reload profile flag more gracefully + + [ Ahmed El-Mahmoudy ] + * usr/share/byobu/keybindings/screen-escape-keys: LP: #796134 + - fix refresh keybinding (missing eval) + + -- Dustin Kirkland Sun, 12 Jun 2011 23:37:20 -0500 + +byobu (4.10-0ubuntu1) oneiric; urgency=low + + * debian/postinst: + - re-enable postinst to succeed on hardy + + -- Dustin Kirkland Sat, 11 Jun 2011 09:42:03 -0400 + +byobu (4.9-0ubuntu1) oneiric; urgency=low + + [ Dustin Kirkland ] + * === added directory usr/sbin, usr/sbin/byobu-classroom, + usr/share/byobu/profiles/classroom: + - added to the byobu repository for source control, but not yet + QA'd for release, so they're not yet installed by the makefiles + or documented; will get to this eventually + * usr/bin/byobu: LP: #791617 + - fix "byobu -r session", zero out NAME if user has a -r + * Close LP: #789647 + * Close LP: #789408 + + [ Emanuele Rocca ] + * usr/bin/byobu-config: LP: #789274 + - fix autodetection of byobu launch + + -- Dustin Kirkland Thu, 02 Jun 2011 15:22:08 -0400 + +byobu (4.8-0ubuntu1) oneiric; urgency=low + + [ Scott Moser and Dustin Kirkland ] + * usr/bin/byobu-select-session: + - add an option to select-session for running a shell without byobu + + [ Dustin Kirkland ] + * usr/bin/byobu-select-session, usr/share/man/man1/byobu-select- + session.1: + - updated to document the .always-select configuration + + -- Dustin Kirkland Wed, 01 Jun 2011 09:24:43 -0500 + +byobu (4.7-0ubuntu1) oneiric; urgency=low + + * usr/lib/byobu/network: + - fix shell comparator bug when number has decimal + * etc/byobu/statusrc: + - revert recent change which enabled disk_io by default + * close bug LP: #789408, which was fixed in the previous release + * usr/lib/byobu/custom: + - ensure that you can run more than one custom script, LP: #789647 + + -- Dustin Kirkland Sat, 28 May 2011 22:22:28 -0500 + +byobu (4.6-0ubuntu1) oneiric; urgency=low + + * usr/bin/byobu-select-session: LP: #789408 + - fix select session, when there is only 1 session to attach to + * usr/share/byobu/keybindings/f-keys: + - use shift-F6 (in both ssh and tty) for detach, but don't logout + - seems that ctrl-F6 doesn't work in tty right now + * usr/bin/byobu-launch: + - merge history + * usr/bin/byobu-launch: + - move the location of the BYOBU_DISABLE test + * debian/rules, usr/bin/byobu, usr/bin/byobu-janitor, + usr/bin/Makefile.am, usr/bin/shell => usr/bin/byobu-shell, + usr/share/byobu/windows/common, usr/share/man/man1/Makefile.am, + usr/share/man/man1/shell.1 => usr/share/man/man1/byobu-shell.1: + - byobu installing "/usr/bin/shell" might be a little egregious from + a namespace perspective; so call it "byobu-shell" and just update + the window title when calling it + + -- Dustin Kirkland Sat, 28 May 2011 12:57:58 -0500 + +byobu (4.5-0ubuntu1) oneiric; urgency=low + + * usr/lib/byobu/custom, usr/share/byobu/keybindings/f-keys: + - fix regression in custom scripts + - get ctrl-F5 working correctly again + * usr/share/byobu/keybindings/f-keys, usr/share/byobu/profiles/common: + - avoid some screen crashes associated with buggy 'layout' saving + feature; only save layouts if user is splitting screens, LP: #788670 + * usr/bin/byobu: + - fix logic error in showing user@host in gnome-terminal tabs + + -- Dustin Kirkland Thu, 26 May 2011 15:14:50 -0500 + +byobu (4.4-0ubuntu1) oneiric; urgency=low + + [ Dustin Kirkland ] + * usr/lib/byobu/uptime: fix string bug in uptime introduced by smoser's + changes + * usr/lib/byobu/disk_io: fix scaling, LP: #787773 + * usr/bin/byobu-disable, usr/bin/byobu-select-session, usr/bin/shell: + - fix some of the messaging + - add a welcome message with the toggle on/off info + - fix the motd display at auto launch, which was broken recently + * usr/lib/byobu/mem_available: + - fix MB display bug + * etc/byobu/statusrc, usr/lib/byobu/disk_io, usr/lib/byobu/network, + usr/share/man/man1/byobu.1: + - add support for a network threshold setting; set to 20kbps by default, + ignore network traffic less than threshold, less busy status + - add support for a disk threshold setting; set to 50kB/s by default, + ignore disk traffic less than threshold, less busy status + * usr/bin/byobu-janitor: + - on initial setup, if it looks like we're running in ec2, enable + ec2_cost monitor + * usr/share/byobu/ec2/Makefile.am, usr/share/byobu/ec2/rates.ap_si, + usr/share/byobu/ec2/rates.ap_to, usr/share/byobu/ec2/rates.eu_ie, + usr/share/byobu/ec2/rates.us_ca, usr/share/byobu/ec2/rates.us_va: + - update AWS prices, add the two new AP zones + * usr/lib/byobu/ec2_cost, usr/share/byobu/ec2/Makefile.am, + usr/share/byobu/ec2/rates.ap_si => usr/share/byobu/ec2/rates.ap- + southeast-1, usr/share/byobu/ec2/rates.ap_to => + usr/share/byobu/ec2/rates.ap-northeast-1, + usr/share/byobu/ec2/rates.eu_ie => usr/share/byobu/ec2/rates.eu- + west-1, usr/share/byobu/ec2/rates.us_ca => usr/share/byobu/ec2/us- + west-1, usr/share/byobu/ec2/rates.us_va => + usr/share/byobu/ec2/rates.us-east-1, usr/bin/byobu-janitor: + - rework ec2_cost entirely, using metaservice; much more accurate + * usr/lib/byobu/ec2_cost, usr/share/byobu/ec2/Makefile.am, + usr/share/byobu/ec2/us-west-1 => usr/share/byobu/ec2/rates.us-west- + 1: fix a couple of bugs + + [ Scott Moser ] + * usr/lib/byobu/.shutil: fix rounding across a decimal point in fpdiv() + * usr/lib/byobu/swap: update to address fix in fpdiv + * usr/lib/byobu/mem_used: use fpdiv to round free memory properly + + -- Dustin Kirkland Wed, 25 May 2011 19:37:14 -0500 + +byobu (4.2-0ubuntu1) oneiric; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-config: remove debug output, LP: #782372 + * usr/lib/byobu/disk_io: fix minor bug in 'command' call + * usr/lib/byobu/.shutil (properties changed: -x to +x): fix perm + * usr/bin/byobu-janitor: fix regression, ensure we can run from + a clean setup + * etc/byobu/statusrc: + - turn on battery, disk_io, users, wifi, as nothing is displayed + if we have none + * usr/lib/byobu/disk: add trailing whitespace + * usr/bin/byobu-silent, usr/bin/Makefile.am: add a total silence + mode for Byobu + * usr/share/man/man1/byobu-quiet.1, usr/share/man/man1/byobu-silent.1: + - add a manpage for byobu-silent.1, and update byobu-silent.1 + * usr/lib/byobu/disk_io: + - support super fast next generation SSD hard drives + + [ Scott Moser ] + * usr/bin/byobu, usr/bin/byobu-reconnect-sockets, + usr/lib/byobu/.shutil: + - source _shutil + - exec screen -v rather than waiting and exiting + - use HOSTNAME if set (it is set in bash), avoiding the fork for 'hostname' + - use 'uncommented_lines' function in _shutil rather than grep + - use 'command -v' (posix sh shell builtin) rather than 'which' + - mention that byobu-janitor should not be called every time + * usr/bin/byobu, usr/bin/byobu-reconnect-sockets, + usr/bin/byobu-status, usr/lib/byobu/.shutil, + usr/lib/byobu/battery, usr/lib/byobu/cpu_freq, + usr/lib/byobu/cpu_temp, usr/lib/byobu/custom, + usr/lib/byobu/date, usr/lib/byobu/disk, + usr/lib/byobu/disk_io, usr/lib/byobu/fan_speed, + usr/lib/byobu/ip_address, usr/lib/byobu/load_average, + usr/lib/byobu/mem_available, usr/lib/byobu/mem_used, + usr/lib/byobu/network, usr/lib/byobu/raid, + usr/lib/byobu/release, usr/lib/byobu/swap, + usr/lib/byobu/updates_available, usr/lib/byobu/uptime, + usr/lib/byobu/wifi_quality: + - lots of performance improvements + - define a few helpers + - use 'read' for obtaining input from file + - use built-in math functions for computation + + -- Dustin Kirkland Mon, 23 May 2011 19:21:31 -0500 + +byobu (4.1-0ubuntu1) oneiric; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-ctrl-a: fix ctrl-a in screen-mode + * usr/share/byobu/keybindings/f-keys: minor comment update + * usr/bin/byobu-status: + - move byobu-status back to sh (dash?), for a 2x performance improvement + - note that we cannot pass arguments to sourced scripts + * usr/bin/byobu-status, usr/lib/byobu/apport, usr/lib/byobu/battery, + usr/lib/byobu/cpu_freq, usr/lib/byobu/cpu_temp, + usr/lib/byobu/custom, usr/lib/byobu/disk_io, usr/lib/byobu/ec2_cost, + usr/lib/byobu/fan_speed, usr/lib/byobu/hostname, + usr/lib/byobu/ip_address, usr/lib/byobu/load_average, + usr/lib/byobu/logo, usr/lib/byobu/mail, usr/lib/byobu/mem_available, + usr/lib/byobu/mem_used, usr/lib/byobu/menu, usr/lib/byobu/network, + usr/lib/byobu/processes, usr/lib/byobu/raid, usr/lib/byobu/rcs_cost, + usr/lib/byobu/reboot_required, usr/lib/byobu/release, + usr/lib/byobu/services, usr/lib/byobu/swap, usr/lib/byobu/time_utc, + usr/lib/byobu/updates_available, usr/lib/byobu/uptime, + usr/lib/byobu/users, usr/lib/byobu/whoami, + usr/lib/byobu/wifi_quality, usr/share/byobu/tests/byobu-time- + notifications: + - with advice from Scott Moser, almost all $(color ...) calls have + been updated to inline calls to the color() function, which does + the printf itself + - this provides some measurable performance improvements + + [ Scott Moser ] + * usr/bin/byobu-status: + - performance improvements, save a few forks + * usr/bin/byobu-reconnect-sockets: + - performance improvements, save a few forks + * usr/bin/byobu-janitor: + - performance improvements, save a few forks + + -- Dustin Kirkland Fri, 13 May 2011 18:57:57 +0200 + +byobu (4.0-0ubuntu1) oneiric; urgency=low + + * usr/bin/byobu-config, usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/doc/byobu/help.txt, usr/bin/Makefile.am, + usr/bin/byobu-ctrl-a: LP: #776743 + - use ctrl-^ as the default escape character + - bind F12 to printing the escape character + - adjust everything accordingly + * usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: LP: #776743 + - the first time a user presses ctrl-a, prompt them with a choice + as to their preference of behavior (emacs vs. screen) + - preserve this choice + * usr/share/byobu/keybindings/f-keys: LP: #776740 + - improve alt-pgup / alt-pgdown + * usr/share/byobu/profiles/common: LP: #776742 + - disable xterm/gnome-terminal's scrollback buffer + - it seems we should be able to do this, at this point since byobu + now has keybindings for alt-pgup and alt-pgdn + - note that this commit does, however, revert the fix for an older bug + * usr/share/byobu/keybindings/f-keys: + - fix regression in rename F8 functionality, use key + * usr/lib/byobu/.notify_osd, usr/share/byobu/keybindings/f-keys, + usr/share/byobu/profiles/common: LP: #776742, #776740 + - set msgwait and msginwait to both 0, to turn down the verbosity of + screen's messaging, and speed up some byobu operations + - improve scrollback (alt-pgup and alt-pgdn) by disabling screen's + status message updates about 'copy mode', etc. + - speed up the printscreen functionality + - when running printscreen, open the result with the user's default + viewer in a new window entitled PRINTSCREEN + * usr/bin/byobu: LP: #777888 + - enable users to disable the title printing at launch (helpful for + those launching byobu detached from cron, e.g.) + * usr/share/byobu/tests/byobu-time-notifications: + - fixup notification testing + * usr/bin/byobu-status: minor performance improvement + * usr/share/doc/byobu/help.txt: rearrange and update documentation + * usr/bin/byobu-ctrl-a, usr/share/byobu/tests/byobu-time- + notifications: update doc message + * usr/bin/byobu-launch: LP: #780430, support a BYOBU_DISABLE environment + variable, that ssh clients could export and globally disable launching + byobu on ssh logins (note that this will require whitelisting that + variable on the ssh client and server) + * usr/share/byobu/profiles/common: fix printscreen screen exchange file + * usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: + - simplify all calls to the screen escape key + * usr/bin/byobu-quiet, usr/bin/byobu-status, usr/bin/Makefile.am, + usr/share/byobu/profiles/common: LP: #780380 + - add a byobu-quiet utility, to silence eyecandy + * usr/share/man/man1/byobu-ctrl-a.1, usr/share/man/man1/byobu-quiet.1, + usr/share/man/man1/Makefile.am: document the new tools + * usr/bin/byobu-config: ensure that escape key changing through byobu-config + continues to work + + -- Dustin Kirkland Tue, 10 May 2011 23:34:53 +0200 + +byobu (3.34-0ubuntu1) oneiric; urgency=low + + [ Baptiste Jonglez ] + * usr/lib/byobu/updates_available: add support for ArchLinux in the + updates-available script, LP: #767546 + + [ Jeffrey William Edwards ] + * usr/lib/byobu/.notify_osd: fix minor regex error, LP: #764813 + + -- Dustin Kirkland Tue, 03 May 2011 12:11:07 -0500 + +byobu (3.33-0ubuntu1) natty; urgency=low + + * usr/bin/byobu-launch: make sure this finishes with a true + * usr/lib/byobu/disk_io: conditionally use readlink -f, LP: #764584 + + -- Dustin Kirkland Tue, 19 Apr 2011 16:34:33 -0400 + +byobu (3.32-0ubuntu1) natty; urgency=low + + * usr/bin/byobu-launch, usr/bin/byobu-launcher: + - fix situation where the profile might exit 0, + and prevent a user from logging in + + -- Dustin Kirkland Sun, 17 Apr 2011 13:30:23 -0500 + +byobu (3.31-0ubuntu1) natty; urgency=low + + * usr/bin/byobu-select-session: LP: #762031 + - fix path to screen binary, use os.execvp() + - drop use of PREFIX here, rely on byobu being in your path + + -- Dustin Kirkland Fri, 15 Apr 2011 13:40:26 -0500 + +byobu (3.30-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/share/applications/byobu.desktop: shorten description + to work better in Unity + * usr/bin/byobu-status-detail: make a couple of minor modifications + noticed while investigating the already-fixed LP: #750887 + * usr/lib/byobu/raid: fix grep that changed recently in Linux's + md driver's printing to /proc/mdstat, LP: #760693 + * usr/share/byobu/profiles/common: preserve splits across detach/reattach, + LP: #760696 + * usr/bin/byobu-launcher: don't disrupt work flow, but rather inform + user about launching byobu in a nested screen session, LP: #747649 + * usr/bin/byobu-launch, usr/bin/byobu-launcher-install: fix handling + of logout behavior, when dpkg-configured globally by the sysadmin, + LP: #741281 + * usr/share/byobu/profiles/common: fix bold color intensity, LP: #727466 + * usr/bin/byobu-janitor, usr/bin/byobu-launch, usr/bin/byobu-launcher- + install, usr/bin/byobu-launcher-uninstall, + usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/man/man1/byobu.1: + - add a more permanent fix for LP: #604931 + - update documentation + * usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: + - fix ctrl-f5 + * debian/source/format, === removed directory debian/source: remove these + until bzr builddeb bug gets fixed + * usr/bin/byobu, usr/share/byobu/profiles/byoburc, + usr/share/byobu/profiles/Makefile.am, + usr/share/byobu/profiles/screenrc: support using ~/.byoburc, instead of + ~/.screenrc, if present; some users seem to want to use byobu and screen + separately, and keep their profiles separate, LP: #731529 + * usr/bin/byobu-janitor: use greadlink on Mac OSX, LP: #740370 + * usr/bin/byobu-select-session: fix broken path to screen, affects users + who build/install byobu locally only, LP: #758177 + + [ Chaskiel Grundman ] + * debian/postinst: correctly fix old-school screen-profiles era diversions + of /usr/bin/screen, LP: #727738 + + -- Dustin Kirkland Thu, 14 Apr 2011 18:11:27 -0500 + +byobu (3.29-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/share/man/man1/byobu.1: document PS1 workaround, LP: #525552 + * usr/share/man/man1/byobu.1: fix minor manpage typo, add SERVICES example + * usr/lib/byobu/wifi_quality, usr/share/man/man1/byobu.1: support overriding + the default wireless interface, LP: #723260 + * usr/share/man/man1/byobu.1: document TERM=vt100 for Mac keyboard users, + LP: #482623 + * usr/bin/byobu-janitor: use readlink, much more graceful + * usr/lib/byobu/time_binary, usr/share/byobu/profiles/common, + usr/share/man/man1/byobu.1: fixup a couple of minor issues with the binary + clock commit + * usr/bin/byobu-status: switch the interpreter from sh to bash; this is + needed to support James' time_binary script, which is bash and cannot be + simply sourced by byobu-status; if significant performance regressions + occur, we will need to back this change out and approach it a different + way + + [ James Hunt ] + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/time_binary, + usr/share/byobu/profiles/common, usr/share/man/man1/byobu.1: + - add support for the super-geeky-but-fun binary clock; requires + UTF8 support in GNU Screen, LP: #705037 + + [ Chow Loong Jin and Dustin Kirkland ] + * usr/lib/byobu/disk_io: canonicalize symlinks so that disk_io works + with raid, lvm, dm volumes, LP: #709224, #711373, #723187 + + -- Dustin Kirkland Sun, 27 Feb 2011 10:29:49 -0600 + +byobu (3.28-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/lib/byobu/wifi_quality: don't show wifi-quality if connectivity == 0 + * usr/lib/byobu/disk_io: don't show disk_io if rate = 0 + * usr/lib/byobu/services: finally fix that nagging, mysterious whitespace + * rename: + - wastebasket -> trash + - uclock -> time_binary + - ugraph -> /usr/bin/byobu-ugraph + - ulevel -> /usr/bin/byobu-ulevel + * usr/share/applications/byobu.desktop: change the "window manager" + verbiage to "command line"; looks a little better on desktop + applications menu where "window manager" sounds quite different + * usr/lib/byobu/date, usr/share/man/man1/byobu.1: fix issues from + Question #144881 + + [ James Hunt ] + * usr/lib/byobu/time_binary: New UTF-8 notification showing time in binary + (requires bash for UTF-8 handling) (LP: #705037). + * usr/bin/byobu-ugraph: New UTF-8 notification utility showing + historical byobu-ugraph data (required bash for UTF-8 handling). + * usr/bin/byobu-ulevel: New UTF-8 notification utility which displays + some 'level' using various unicode characters (requires bash for + UTF-8 handling). Also has an accessibility mode using an option or + environment variable to display all values as percentages in ASCII. + (LP: #705032). + * usr/lib/byobu/trash: New ASCII+UTF-8 notification indicating + contents of trash. + * usr/lib/byobu/wifi_quality: added UTF-8 icon. + + -- Dustin Kirkland Wed, 23 Feb 2011 16:24:26 -0600 + +byobu (3.27-0ubuntu1) natty; urgency=low + + * usr/bin/byobu: -v|--version + * usr/lib/byobu/fan_speed: drop detail section, nothing interesting here + * usr/share/byobu/profiles/common: accommodate for powernap's off- and on- + lining of processors dynamically + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/network, + usr/share/byobu/profiles/common, usr/share/man/man1/byobu.1: + - enable the network monitor by default (it seems I *always* turn this + on, on every single byobu instance) + - only display when traffic is non-zero + - move further to the left, so that entire line doesn't jump around + * usr/share/byobu/profiles/common: move disk_io further left, so line + does jump around so much + + -- Dustin Kirkland Fri, 28 Jan 2011 17:12:23 -0600 + +byobu (3.26-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-reconnect-sockets, usr/lib/byobu/date, + usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: + - add a ctrl-f5 keybinding for reconnecting sockets + * usr/share/byobu/profiles/common: explicitly set deflogin on, + LP: #525552 + + [ swalker ] + * A set of fixes for LP: #700911 + * usr/bin/byobu-status, usr/bin/byobu-status-detail: + - improve support for byobu-status-detail on systems without vim + * usr/lib/byobu/mail: test for mail dir, avoids errors + * usr/lib/byobu/reboot_required: test for file existence, avoids errors + + [ Dustin Kirkland + swalker ] + * usr/lib/byobu/wifi_quality: avoid potential divide by zero error + * usr/lib/byobu/fan_speed: add support for /proc/i8k for some other + systems' fan speeds (e.g. Dell Inspiron), LP: #700204 + + -- Dustin Kirkland Thu, 27 Jan 2011 10:24:07 -0600 + +byobu (3.25-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/disk_io: these look better + + -- Dustin Kirkland Sun, 23 Jan 2011 16:28:43 -0600 + +byobu (3.24-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/cpu_temp, usr/lib/byobu/disk_io, usr/lib/byobu/mail, + usr/lib/byobu/network: very early, initial uft8-in-the-caption-and- + hardstatus support; requires a patched version of screen; use at + your own risk right now; should not affect older screen users + + -- Dustin Kirkland Fri, 21 Jan 2011 12:07:20 -0600 + +byobu (3.23-0ubuntu1) natty; urgency=low + + * README: put byobu dir on the front of the path, if doing a local + install (just wanted to update to a newer version on a system that + already has byobu, but I'm not an admin) + * usr/share/byobu/keybindings/f-keys: when splitting, move the focus + in the new split to the first window (rather than that annoying + blank screen) + + -- Dustin Kirkland Mon, 10 Jan 2011 11:04:34 -0600 + +byobu (3.22-0ubuntu1) natty; urgency=low + + * usr/share/byobu/windows/common: should not be executable + * usr/share/man/man1/byobu.1, usr/share/man/man1/byobu-select- + session.1: escape hyphens + * === added directory debian/source, debian/source/format: + - fix lintian info, add debian/source/format, 3.0 quilt + * usr/bin/byobu, usr/bin/byobu-janitor: move the window title setting + back to /usr/bin/byobu (didn't work well in byobu-janitor) + + -- Dustin Kirkland Thu, 06 Jan 2011 12:34:38 -0600 + +byobu (3.21-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-select-profile: ensure that $DATA exists, LP: #697724 + * usr/bin/byobu, usr/bin/byobu-janitor: move the print for window + title setting into byobu-janitor, which should ensure that it + gets run on F5/refresh operations + * usr/share/byobu/keybindings/f-keys, usr/share/byobu/profiles/common: + move the "fit" statement to the common profile, which is sourced on + profile refresh + * usr/share/byobu/keybindings/f-keys: add keybindings for splits in + tty; sadly ctrl-f2 (vertical split) not working yet + * usr/share/man/man1/byobu.1, usr/share/man/man1/byobu-config.1, + usr/share/man/man1/byobu-export.1, usr/share/man/man1/byobu- + launcher.1, usr/share/man/man1/byobu-launcher-install.1, + usr/share/man/man1/byobu-launcher-uninstall.1, + usr/share/man/man1/byobu-reconnect-sockets.1, + usr/share/man/man1/byobu-select-profile.1, usr/share/man/man1/byobu- + select-session.1, usr/share/man/man1/byobu-status.1, + usr/share/man/man1/byobu-status-detail.1, + usr/share/man/man1/shell.1: add a url link to the GPL + * usr/share/man/man1/byobu.1, usr/share/man/man1/byobu-janitor.1: + - clean up the "SEE ALSO" section of a few manpages + + [ Jan Klepek ] + * usr/share/man/man1/byobu.1, usr/share/man/man1/byobu-status.1, + usr/share/man/man1/byobu-disable.1, usr/share/man/man1/byobu- + enable.1, usr/share/man/man1/byobu-janitor.1, + usr/share/man/man1/byobu-launch.1, usr/share/man/man1/Makefile.am: + - add a few missing manpages + - add notes to the location of the GPL on Fedora + + -- Dustin Kirkland Thu, 06 Jan 2011 11:28:33 -0600 + +byobu (3.20-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/network: drop unnecessary unit=kbps + * usr/bin/byobu: allow for -xS or the like, LP: #684926 + * usr/bin/byobu-select-session, usr/share/man/man1/byobu.1, + usr/share/man/man1/byobu-select-session.1: support "hiding" + sessions, by prepending a "." to the session name, LP: #599334 + * usr/share/man/man1/byobu-launcher.1: update documentation + * usr/bin/byobu-launcher-install, usr/share/man/man1/byobu-launcher- + install.1, usr/share/man/man1/byobu-launcher-uninstall.1, + usr/share/man/man1/Makefile.am: + - add an option for -n|--no-logout to byobu-launcher-install, + document changes in new manpages, LP: #604931 + * usr/lib/byobu/cpu_temp: find the temp monitor, LP: #676080 + * usr/lib/byobu/battery, usr/share/man/man1/byobu.1: allow for + overriding detected BATTERY, LP: #693560 + * usr/lib/byobu/cpu_temp: test that file exists, is readable, and has + size > 0, LP: #696071 + + -- Dustin Kirkland Mon, 03 Jan 2011 11:44:12 -0600 + +byobu (3.19-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/network: ensure that up/down and units are always set + + -- Dustin Kirkland Tue, 28 Dec 2010 00:05:07 -0600 + +byobu (3.18-0ubuntu1) natty; urgency=low + + * usr/bin/byobu: LP: #684926, list byobu default sessions, plus named + screen sessions + + -- Dustin Kirkland Mon, 27 Dec 2010 23:44:00 -0600 + +byobu (3.17-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/cpu_temp: add cpu temp path for modern (x201) thinkpads, + LP: #693568 + * usr/share/byobu/windows/common: must set a target site for the sample + w3m window to work, LP: #689340 + * usr/bin/byobu: list all sessions, LP: #684926 + * usr/share/applications/byobu.desktop: enable the desktop icon by default + + -- Dustin Kirkland Sun, 26 Dec 2010 17:22:18 -0600 + +byobu (3.16-0ubuntu1) natty; urgency=low + + * usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: drop the -k arg to + bindkey, doesn't seem to be working + + -- Dustin Kirkland Wed, 08 Dec 2010 08:57:45 -0600 + +byobu (3.15-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/raid: only match one raid rebuild (the first one) + * debian/rules, usr/share/applications/byobu.desktop: try to get + the icon working in Unity, LP: #683444 + * usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/man/man1/byobu.1: add some keybindings for better handling + of screen splits, LP: #686847 + * usr/lib/byobu/ip_address: look for the ip address on global scope, + helps with labeled and tagged interfaces, LP: #685748 + + -- Dustin Kirkland Tue, 07 Dec 2010 22:19:41 -0600 + +byobu (3.14-0ubuntu1) natty; urgency=low + + * debian/install, etc/update-motd.d/55-window-manager, === removed + directory etc/update-motd.d, debian/postinst: + - dropped motd message; unfortunately annoyed some people, LP: #680657 + - we still need a way to enable people who don't know about byobu + to actually find it + + -- Dustin Kirkland Mon, 29 Nov 2010 14:57:08 -0600 + +byobu (3.13-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * etc/update-motd.d/55-window-manager: print the MOTD appendage up to 3 + times, LP: #680657 + + [ Anders Kaseorg ] + * usr/bin/byobu-launcher-install, usr/lib/byobu/whoami: Use getent instead + of reading /etc/passwd directly , LP: #682296 + + -- Dustin Kirkland Sun, 28 Nov 2010 10:41:09 -0600 + +byobu (3.12-0ubuntu1) natty; urgency=low + + * etc/update-motd.d/55-window-manager: LP: #681616, fix printing of the + motd message + + -- Dustin Kirkland Thu, 25 Nov 2010 18:50:33 -0600 + +byobu (3.11-0ubuntu1) natty; urgency=low + + [ Marcin Juszkiewicz ] + * usr/lib/byobu/cpu_freq: fix cpu frequency detection on ARM, LP: #675442 + + [ Dustin Kirkland ] + * etc/update-motd.d/55-window-manager: fix a spelling error, allow for + easy disabling of the motd message, LP: #680657 + * usr/share/byobu/keybindings/f-keys: resize on each window change, + LP: #680559 + * README: minor edit to the instructions; tested and working for me now + + -- Dustin Kirkland Wed, 24 Nov 2010 13:03:58 -0600 + +byobu (3.10-0ubuntu1) natty; urgency=low + + * usr/lib/byobu/custom: fix typo in for loop, LP: #673728, thanks for + the triage Jorge E. Gómez + * usr/bin/byobu-janitor: make sure this runs to completion, LP: #676605 + * usr/lib/byobu/cpu_freq: scale bogomips by number of processors, if + using bogomips to estimate frequency, LP: #675442 + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/Makefile.am, + usr/lib/byobu/swap, usr/share/byobu/profiles/common, + usr/share/man/man1/byobu.1: add a swap memory usage notification, + LP: #677259 + * usr/lib/byobu/release: fix the ubuntu devel release printing + + -- Dustin Kirkland Thu, 18 Nov 2010 21:44:26 -0600 + +byobu (3.9-0ubuntu1) natty; urgency=low + + * debian/templates, etc/byobu/statusrc, usr/bin/byobu, usr/bin/byobu- + config, usr/bin/byobu-janitor, usr/bin/byobu-launcher, + usr/bin/byobu-launcher-install, usr/bin/byobu-launcher-uninstall, + usr/bin/byobu-select-profile, usr/bin/byobu-status, + usr/lib/byobu/custom, usr/lib/byobu/disk_io, usr/lib/byobu/ec2_cost, + usr/lib/byobu/hostname, usr/lib/byobu/ip_address, + usr/lib/byobu/logo, usr/lib/byobu/mem_available, usr/lib/byobu/menu, + usr/lib/byobu/network, usr/lib/byobu/.notify_osd, + usr/lib/byobu/reboot_required, usr/lib/byobu/services, + usr/lib/byobu/updates_available, usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/byobu/profiles/byoburc, usr/share/byobu/profiles/common, + usr/share/man/man1/byobu.1: clean up the broken xdg changes, + maintain both the xdg dir and a symlink for now; LP: #674217 + * usr/lib/byobu/release: use /etc/issue first, much, much faster, + thanks to the suggestion from Daniel Hahler, LP: #674275 + + -- Dustin Kirkland Fri, 12 Nov 2010 22:45:16 -0600 + +byobu (3.8-0ubuntu1) natty; urgency=low + + * usr/bin/byobu-janitor: fix migration to XDG, LP: #673797, #673727 + + -- Dustin Kirkland Wed, 10 Nov 2010 18:29:01 -0600 + +byobu (3.7-0ubuntu1) natty; urgency=low + + [ Dustin Kirkland ] + * usr/lib/byobu/ec2_cost, usr/share/byobu/ec2/rates.eu_ie, + usr/share/byobu/ec2/rates.us_ca, usr/share/byobu/ec2/rates.us_va: + - add ec2_cost support for t1.micro instances, LP: #669190 + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/Makefile.am, + usr/lib/byobu/notify_osd, usr/share/byobu/profiles/common, + usr/share/man/man1/byobu.1: + - add notify_osd support to byobu, LP: #669189 + - separate the perl into a script of its own + - add per-pid notifier monitors, terminate when screen terminates + - allow for disabling the notify_osd status; must handle in the perl + script + - use BYOBU_PREFIX for local installs + * usr/bin/byobu-config, usr/bin/byobu-janitor, usr/bin/byobu-launcher- + uninstall, usr/share/byobu/keybindings/f-keys: + - use gsed, where available; should help with BSD issues running byobu, + LP: #651993 + * README: add a note about gsed + * usr/share/man/man1/byobu.1: add a synopsis section that mentions options + simply passed through to screen, LP: #669566 + * usr/bin/byobu, usr/bin/byobu-janitor, + usr/share/byobu/profiles/common: change location of $SSH_AUTH_SOCK symlink + from /var/run to $HOME, as we can't be sure that the user's var/run + dir will exist before screen starts, LP: #664059 + * etc/update-motd.d, etc/update-motd.d/55-window-manager, + etc/update-motd.d/Makefile.am, Makefile.am, usr/bin/byobu-disable, + usr/bin/byobu-enable: + - add a helpful update-motd message and a convenient command to enable-and- + launch byobu + * usr/bin/byobu-select-session: enable byobu-select-session to list + custom session names, LP: #630673 + * debian/templates, etc/byobu/statusrc, usr/bin/byobu, usr/bin/byobu- + janitor, usr/bin/byobu-launcher, usr/bin/byobu-launcher-install, + usr/bin/byobu-launcher-uninstall, usr/bin/byobu-select-profile, + usr/bin/byobu-status, usr/lib/byobu/custom, usr/lib/byobu/disk_io, + usr/lib/byobu/ec2_cost, usr/lib/byobu/hostname, + usr/lib/byobu/ip_address, usr/lib/byobu/logo, + usr/lib/byobu/mem_available, usr/lib/byobu/menu, + usr/lib/byobu/network, usr/lib/byobu/.notify_osd, + usr/lib/byobu/reboot_required, usr/lib/byobu/services, + usr/lib/byobu/updates_available, usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/byobu/profiles/byoburc, usr/share/byobu/profiles/common, + usr/share/man/man1/byobu.1: + - xdg user dirs overhaul, LP: #553105 + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/mail, + usr/lib/byobu/Makefile.am, usr/lib/byobu/raid, + usr/share/byobu/profiles/common, usr/share/man/man1/byobu.1: + - add a raid notification, LP: #669191 + * usr/bin/byobu-status, usr/lib/byobu/notify_osd: + - fix all detail printing + * usr/bin/byobu: + - fix listing of sessions, LP: #672023 + * usr/lib/byobu/services: + - drop max instance count from NC service reporting; was inaccurate + + [ Marcus Asshauer ] + * usr/bin/byobu-config: add directory option when creating new window, + LP: #623033 + + -- Dustin Kirkland Mon, 08 Nov 2010 18:24:09 -0600 + +byobu (3.6-0ubuntu1) natty; urgency=low + + [ Ryan Thompson ] + * usr/bin/byobu-launcher: return false, if byobu doesn't launch because + TERM=dumb, LP: #654608 + + [ Dustin Kirkland ] + * usr/bin/byobu: fix SSH_AUTH_SOCK breakage, define $RUN dir, LP: #664059 + * experimental/byobu.php, experimental/README: delete + + -- Dustin Kirkland Thu, 21 Oct 2010 12:09:08 -0500 + +byobu (3.5-0ubuntu1) maverick; urgency=low + + [ Jan Klepek ] + * usr/bin/byobu-status: fix libexec path for Fedora, LP: #630054 + + [ Dustin Kirkland ] + * usr/lib/byobu/rcs_cost, usr/lib/byobu/ec2_cost: testing crontab + creation time is not accurate, seems this happens at image creation + rather than instance instantiation; use /etc/hostname instead; ensure + that minimum hours is 1, not 0; LP: #639855 + * usr/lib/byobu/network: use bps rather than B/s by default for network + traffic, LP: #578377 + * This Maverick release also includes the fix: + - usr/share/applications/byobu.desktop: add gettext domain, LP: #623935 + + -- Dustin Kirkland Wed, 15 Sep 2010 13:30:56 -0600 + +byobu (3.4-0ubuntu1) maverick; urgency=low + + * usr/share/byobu/keybindings/f-keys: make F1 also point to the menu, + along with F9; this might help in some tty environments outside of + gnome-terminal + * bin/byobu-janitor, share/byobu/keybindings/f-keys: use sed -e, for + Mac OS X compatibility, LP: #625387, #623595 + * lib/byobu/ip_address, share/man/man1/byobu.1: + - display both ifconfig and ip output in ip_address detail display + - use ip rather than ifconfig to get the ip address, slight performance + improvement + - support a flag, IPV6=1, in .byobu/status, to allow for showing + IPv6 addresses instead of IPv4 + - thanks to Mark Schouten for the IPv6 idea and + sample code + * usr/share/man/man1/byobu.1: fix typos + * usr/share/applications/byobu.desktop: add gettext domain, LP: #623935 + + -- Dustin Kirkland Wed, 01 Sep 2010 13:11:23 -0600 + +byobu (3.3-0ubuntu1) maverick; urgency=low + + * lib/byobu/network, share/man/man1/byobu.1: clean up binary/decimal + multipliers for network transfer vs. memory/disk capacities, in + accordance with industry standards + * usr/share/man/man1/byobu.1: add a note about non-utf8 locales, + LP: #613769 + + -- Dustin Kirkland Tue, 24 Aug 2010 18:21:09 -0400 + +byobu (3.2-0ubuntu1) maverick; urgency=low + + * usr/share/byobu/keybindings/f-keys: resize the screen as part of the + F5/refresh, LP: #619899 + * usr/bin/byobu-launcher: don't launch if in a dumb terminal, LP: #612886 + * usr/lib/byobu/network, usr/share/man/man1/byobu.1: allow for + configuration of network traffic in [kM]ps, LP: #578377 + * configure.ac: POSIX sed doesn't include -i option, LP: #619328, #622640 + * usr/bin/byobu-janitor: improve dash replacement in status config, + LP: #598488 + * usr/bin/byobu-janitor: fix upgrades where one's window list might have + motd+shell, LP: #589715 + + -- Dustin Kirkland Mon, 23 Aug 2010 17:52:21 -0400 + +byobu (3.1-0ubuntu1) maverick; urgency=low + + * configure.ac: drop autoconf version dependency to 2.61, so that we + can build on Hardy + + -- Dustin Kirkland Tue, 03 Aug 2010 15:19:16 -0400 + +byobu (3.0-0ubuntu1) maverick; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu: allow users to specify their own -S, LP: #610134 + * Makefile.am, configure.ac, etc/byobu/Makefile.am, usr/bin/Makefile.am, + usr/bin/byobu, usr/bin/byobu-config, usr/bin/byobu-janitor, + usr/bin/byobu-launcher, usr/bin/byobu-select-profile, + usr/bin/byobu-select-session, usr/bin/byobu-status, + usr/lib/byobu/Makefile.am, usr/lib/byobu/ec2_cost, + usr/share/applications/Makefile.am, usr/share/byobu/ec2/Makefile.am, + usr/share/byobu/keybindings/Makefile.am, + usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys, + usr/share/byobu/pixmaps/Makefile.am, + usr/share/byobu/profiles/Makefile.am, + usr/share/byobu/tests/Makefile.am, + usr/share/byobu/tests/byobu-time-notifications, + usr/share/byobu/windows/Makefile.am, usr/share/doc/byobu/Makefile.am, + usr/share/man/man1/Makefile.am: + - Positively massive changeset, enabling users of Unix/Linux distros + for which Byobu is not packaged (as well as non-root users of any + Unix/Linux distro) to $(./configure && make && make install) byobu! + LP: #609851, #608995, #503554 + - I think this is a significant enough milestone to bump version to 3.0 + * install, manpages, rules: update package build/install procedures to + use configure && make && make install + * debian/control: + - depend on automake + - autoconf for new build + - bump standards + - use breaks instead of conflicts + * AUTHORS, README: update email address and install instructions + * debian/rules, usr/bin/byobu-export, usr/share/man/man1/byobu-export.1: + - deprecate the byobu-export utility + * usr/share/man/man1/byobu.1: fix lintian warning about hyphen + * usr/share/applications/byobu.desktop: fix lintian warning about encoding + key + * debian/source/format: added + * configure.ac: fixup BYOBU_PREFIX in the configure, LP: #611157 + * rpm/byobu.spec: deprecated; byobu is now in Fedora proper; please use + that package if you require RPMs + * configure.ac, usr/bin/byobu: bump to version 3.0 + + -- Dustin Kirkland Mon, 02 Aug 2010 22:30:46 -0400 + +byobu (2.82-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu-select-session: + - save a few forks, use regexes for screen -ls processing + - fix select-session code, LP: #602750 + - handle ctrl-c bail-out of select-session, LP: #602753 + + -- Dustin Kirkland Wed, 07 Jul 2010 11:35:55 -0400 + +byobu (2.81-0ubuntu1) maverick; urgency=low + + * Save some forks: + - usr/bin/byobu-status + - usr/lib/byobu/custom + - usr/lib/ec2_cost, usr/lib/rcs_cost + - usr/lib/byobu/ip_address + - usr/lib/byobu/release + - usr/lib/services + - usr/lib/updates_available + - usr/bin/byobu-status-detail + - usr/bin/byobu-reconnect-sockets + - usr/bin/byobu-launch, usr/bin/byobu-launcher-install, + usr/bin/byobu-launcher-uninstall + - usr/bin/byobu-launcher + - usr/bin/byobu + - usr/bin/byobu-export + - usr/bin/byobu-janitor + * usr/bin/byobu-status: save a conditional + * usr/bin/byobu-config, usr/share/doc/byobu/help.txt: improve help + text, per feedback from Turnkey Linux users + * debian/release,sh, debian/release-build.sh: drop, no longer needed, + now in lp:~kirkland/+junk/bin + * usr/bin/byobu-janitor: clean up launch gardening code; fix color + detection and correction + * byobu, byobu-select-session: name new byobu sessions, only select byobu + sessions, LP: #599334 + * uploading to Maverick, LP: #599876 + + -- Dustin Kirkland Fri, 02 Jul 2010 10:02:10 -0500 + +byobu (2.80-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu-launcher: handle nasty recursion, if ssh'ing to localhost, + and byobu-launches-by-default, LP: #595137 + + -- Dustin Kirkland Wed, 16 Jun 2010 12:46:22 -0500 + +byobu (2.79-0ubuntu1) maverick; urgency=low + + * debian/rules: symlink motd+shell to shell, LP: #589715 + + -- Dustin Kirkland Fri, 04 Jun 2010 16:04:55 -0500 + +byobu (2.78-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu-status, usr/lib/byobu/menu, + usr/share/byobu/keybindings/f-keys, + usr/share/byobu/keybindings/screen-escape-keys: show a visual queue + when toggling on/off the f-key keybindings; Menu: vs. Menu:<^a-@>, + LP: #589016 + * usr/bin/byobu-select-session: revert recent change, which defaulted to + -UDR (which detached and logged out other connections on reattach); + feedback was negative on this one, numerous questions in IRC, LP: #589027 + * usr/bin/byobu-select-session: allow for default selection of session 1 + * usr/bin/byobu-config: prevent the user from changing the escape sequence + to / or \, both of which cause problems, LP: #581533 + * debian/manpages, rpm/byobu.spec, usr/bin/byobu, usr/bin/shell, + usr/share/byobu/windows/common, usr/share/man/man1/shell.1: fix shelltitle + breakage by dropping the "-t shell" title hardcoding, and move/rename + motd+shell to just shell, LP: #368925 + + -- Dustin Kirkland Thu, 03 Jun 2010 01:58:15 -0500 + +byobu (2.77-0ubuntu1) maverick; urgency=low + + * debian/control: drop update-notifier-common and lsb-release from + Recommends to Suggests (their status scripts are smart enough to + operate without them), LP: #588340 + + -- Dustin Kirkland Tue, 01 Jun 2010 10:53:49 -0500 + +byobu (2.76-0ubuntu1) maverick; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-select-session: default to -UDR, the "author's favorite" + according to the screen(1) manpage; slightly more secure as it logs out + other sessions; special handling is needed if the user wants to share + sessions, LP: #578373; also, droping the -x should fix some resize + problems, LP: #553085 + + [ Jon Bernard ] + * ec2_cost, rcs_cost: calculate cost from the start of the + instance, rather than the uptime + + -- Dustin Kirkland Fri, 21 May 2010 09:37:10 -0500 + +byobu (2.75-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu: ensure that .screenrc gets sourced if byobu is run + with arguments, LP: #580760 + * ec2_cost, ip_address, network, rcs_cost: fix bug when calling ifconfig + without setting lang to english, LP: #578792 + * byobu-launcher-uninstall: create the directory, in case this script is + executed before byobu actually runs, LP: #580384 + * usr/bin/byobu-launcher: allow user to add custom screen arguments to + byobu-launcher (useful in .profile for adding an option like -UDR), + LP: #578373 + + -- Dustin Kirkland Sat, 15 May 2010 16:50:41 -0400 + +byobu (2.74-0ubuntu1) maverick; urgency=low + + * usr/lib/byobu/disk_io: fix regex to support RAID devices, LP: #572855 + * debian/postinst: make debconf question failsafe, LP: #569041 + * usr/bin/byobu, usr/share/byobu/profiles/byoburc: add support for + different window sets, LP: #517796 + * usr/bin/byobu-select-session: use screen -ls, less overhead + * usr/share/man/man1/byobu.1: document the different window sets + + -- Dustin Kirkland Wed, 05 May 2010 16:07:24 +0200 + +byobu (2.73-0ubuntu1) maverick; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-reconnect-sockets: look for gpg sessions quietly + * usr/bin/byobu-launcher: ensure that if user does not want a nested + session, they still get a local shell + + [ Jon Bernard ] + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/rcs_cost, + usr/share/byobu/profiles/common, usr/share/man/man1/byobu.1: + - Rackspace cost estimation (based on the ec2 one) + + -- Dustin Kirkland Wed, 28 Apr 2010 23:11:08 -0500 + +byobu (2.72-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu: support nethack screen mode, LP: #568751 + * usr/share/man/man1/byobu.1: document a sample custom script using + custom colors, LP: #568967 + * usr/bin/byobu: LANG=C before grepping for text + * usr/bin/byobu: handle unset term in tput 256 color check + * bin/byobu-config, lib/byobu/disk_io, share/byobu/profiles/common, + share/man/man1/byobu.1: added a disk throughput notification + * usr/bin/byobu-janitor: add hyphenation to the regex to allow for + disk_io + * usr/lib/byobu/disk_io: improve MONITORED_DISK overriding + * usr/lib/byobu/disk: minor simplification + + -- Dustin Kirkland Mon, 26 Apr 2010 19:25:37 -0500 + +byobu (2.71-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu-launch, usr/bin/byobu-launcher-install, + usr/bin/byobu-janitor: exit 0 after launching byobu; this is superior + to previously reverted implementations where we exec'd byobu, since + we'll only exit 0 if the byobu/screen session exits cleanly; this will + keep the user from having to do the double-exit when detaching, + LP: #568306 + + -- Dustin Kirkland Thu, 22 Apr 2010 12:31:12 -0500 + +byobu (2.70-0ubuntu1) maverick; urgency=low + + * usr/bin/byobu-launcher: fix regression in last upload + + -- Dustin Kirkland Wed, 21 Apr 2010 23:08:06 -0500 + +byobu (2.69-0ubuntu1) lucid; urgency=low + + * usr/bin/byobu-launcher: prompt on nested screen connection, LP: #565398 + * debian/po/POTFILES.in, debian/po/de.po, debian/po/en_GB.po, + debian/po/es.po, debian/po/pt.po, debian/po/ru.po, + debian/po/templates.pot, po/bg.po, po/cs.po, po/de.po, po/es.po, + po/fr.po, po/hu.po, po/is.po, po/it.po, po/la.po, po/lt.po, po/nl.po, + po/pt.po, po/pt_BR.po, po/ru.po, po/sv.po, po/tr.po, po/uk.po: + - translations merged, LP: #567309 + * bin/byobu-janitor, share/byobu/keybindings/f-keys, + share/byobu/profiles/common, share/man/man1/byobu.1: add a keybinding, + ctrl-a ~ to write the current window's buffer to a file, LP: #565399 + * debian/control, debian/screen-profiles.postinst, debian/preinst, + debian/prerm, debian/rules, usr/bin/byobu-janitor: + - remove more remnants of screen-profiles + * debian/rules: drop color symlinks, no longer necessary, should be + cleaned up by byobu-janitor now + + -- Dustin Kirkland Wed, 21 Apr 2010 15:07:06 -0500 + +byobu (2.68-0ubuntu1) lucid; urgency=low + + * usr/lib/byobu/logo: update the default Ubuntu logo to match the + 10.04 brand refresh, white U on a purple background + + -- Dustin Kirkland Thu, 15 Apr 2010 12:12:31 -0500 + +byobu (2.67-0ubuntu1) lucid; urgency=low + + * Close LP: #528967, which was also fixed by the last upload + * usr/bin/byobu-select-session: fix create-a-new-session on + select-session dialog, LP: #550808 + + -- Dustin Kirkland Wed, 31 Mar 2010 15:27:24 -0500 + +byobu (2.66-0ubuntu1) lucid; urgency=low + + * usr/bin/byobu, usr/bin/byobu-janitor: ensure that the SSH_AUTH_SOCK + link is not circular, LP: #549091 + + -- Dustin Kirkland Tue, 30 Mar 2010 00:56:11 -0500 + +byobu (2.65-0ubuntu1) lucid; urgency=low + + * etc/byobu/statusrc, usr/bin/byobu-config, usr/lib/byobu/time_utc, + usr/share/byobu/profiles/common, usr/share/man/man1/byobu.1: + - daylight savings really sucks for those few weeks now when the + US is completely different from the rest of the world; having + a UTC time byobu status is really useful, LP: #540038 + + -- Dustin Kirkland Tue, 16 Mar 2010 23:27:20 -0500 + +byobu (2.64-0ubuntu1) lucid; urgency=low + + * debian/postinst: fix bug introduced by last upload, $d contains + $DIR + + -- Dustin Kirkland Wed, 10 Mar 2010 19:06:34 -0600 + +byobu (2.63-0ubuntu1) lucid; urgency=low + + [ Dustin Kirkland ] + * etc/byobu/socketdir, usr/bin/byobu-config, usr/bin/byobu-janitor, + usr/bin/byobu-select-profile: increase portability to other distros, + create socketdir conffile and SOCKETDIR variable for users who don't + use /var/run/screen as the socket directory, LP: #535378 + * usr/bin/byobu-config: change a sample reference from "bash" to "shell" + again for portability, LP: #535407 + * bin/byobu-export, bin/byobu-reconnect-sockets, bin/byobu-status, + lib/byobu/cpu_temp: avoid programmatic use of ls in for loops, + LP: #452405 + + [ Torsten Spindler ] + * debian/postinst: handle situation where /var/run/screen does not + exist, LP: #535648 + + -- Dustin Kirkland Wed, 10 Mar 2010 18:48:47 -0600 + +byobu (2.62-0ubuntu1) lucid; urgency=low + + * usr/share/byobu/keybindings/common: added symlink, LP: #535166 + * debian/rules: drop get-orig-source target + + -- Dustin Kirkland Tue, 09 Mar 2010 14:52:59 -0600 + +byobu (2.61-0ubuntu1) lucid; urgency=low + + [ Sebastian Markow ] + * usr/share/byobu/pixmaps/byobu_multi.svg: added second icon + + [ Dustin Kirkland ] + * usr/share/byobu/profiles/common: remove underline; does not play + nicely with reverse on tty's, LP: #532666 + + -- Dustin Kirkland Fri, 05 Mar 2010 08:42:42 -0600 + +byobu (2.60-0ubuntu1) lucid; urgency=low + + [ Dustin Kirkland ] + * usr/bin/byobu-export, usr/lib/byobu/ec2_cost, + usr/share/byobu/ec2/rates.eu_ie, usr/share/byobu/ec2/rates.us_ca, + usr/share/byobu/ec2/rates.us_va: LP: #531497 + - update ec2 pricing model, allow for local overrides of prices + via a sourced symlink or bespoke file in $HOME/.byobu/ec2_rates + * usr/bin/byobu: more completely support attaching to an existing ssh + agent on first launch of byobu, LP: #528967 + * usr/share/man/man1/byobu.1: add manpage note about Mac OSX terminal + setting, LP: #506576 + * debian/control: drop the screen-profiles-extras transitional package + + [ Meethune Bhowmick ] + * rpm/byobu.spec: specfile updated/modernized for current layout, LP: #526233 + + -- Dustin Kirkland Wed, 03 Mar 2010 12:55:52 -0600 + +byobu (2.59-0ubuntu1) lucid; urgency=low + + * usr/bin/byobu-config: fix logic auto-launch detection logic, LP: #528545 + + -- Dustin Kirkland Fri, 26 Feb 2010 10:42:55 -0600 + +byobu (2.58-0ubuntu1) lucid; urgency=low + + * usr/share/byobu/pixmaps/byobu.svg: cleaned up icon + * byobu-export, byobu-janitor, byobu-select-profile, byobu-status: + make MONOCHROME more discoverable + + -- Dustin Kirkland Tue, 16 Feb 2010 23:16:27 -0600 + +byobu (2.57-0ubuntu1) lucid; urgency=low + + * debian/postinst, usr/bin/byobu-config, usr/bin/byobu-launcher, + usr/bin/byobu-launcher-uninstall: install the profile.d script + at Z98-* to ensure that it's sourced last-ish; clean up and check + for the new location; check if shell is interactive before exec'ing + in the launcher + * byobu-config: correct logic in determining if byobu is set to auto + launch + * debian/postinst, usr/bin/byobu-launch, usr/bin/byobu-launcher, + usr/bin/byobu-launcher-install: ensure that all login methods work + (tty, ssh, gdm), and that each detach behaves properly (c-a-d, c-a-DD) + * usr/bin/byobu-janitor, usr/bin/byobu-launcher-install: ensure that we + don't end up with two byobu-launch commands in both the global profile + and local one + + -- Dustin Kirkland Tue, 09 Feb 2010 13:55:21 -0600 + +byobu (2.56-0ubuntu1) lucid; urgency=low + + * debian/control: drop byobu-extras empty package + * usr/bin/byobu-launcher: fix recent regression, do exec byobu by default, + but allow for not exec'ing if ~/.byobu/disable-exec exists, LP: #519018 + * usr/lib/byobu/network: improve regex of the interface matching, which + was broken for device names >6 chars, LP: #509278 + + -- Dustin Kirkland Tue, 09 Feb 2010 00:07:20 -0600 + +byobu (2.55-0ubuntu1) lucid; urgency=low + + * debian/postinst: make sure that byobu-launcher, if selected by default, + gets installed late in the /etc/profile.d list + * usr/bin/byobu-launcher: do not exec, as this precludes detaching from a + session, and being in a non-byobu shell + + -- Dustin Kirkland Sat, 06 Feb 2010 22:10:32 -0600 + +byobu (2.54-0ubuntu1) lucid; urgency=low + + * usr/bin/byobu-launcher: profile.d is sourced, not executed + + -- Dustin Kirkland Fri, 05 Feb 2010 09:16:38 -0800 + +byobu (2.53-0ubuntu1) lucid; urgency=low + + * debian/control: suggest po-debconf + + -- Dustin Kirkland Fri, 05 Feb 2010 01:17:11 -0800 + +byobu (2.52-0ubuntu1) lucid; urgency=low + + * debian/rules, usr/bin/byobu, usr/bin/byobu-launcher: + - deprecate the launcher script as a separate script; do this + in /usr/bin/byobu + * debian/config, debian/postinst, debian/prerm, debian/rules, + debian/templates, usr/bin/byobu, usr/bin/byobu-launcher, + usr/bin/byobu-launcher-install, usr/bin/byobu-launcher-uninstall: + - support a preseedable debconf question that allows + an administrator to launch byobu by default on all logins on a + system (default = false), allow for per-user overriding + * debian/control, debian/po/POTFILES.in, debian/po/templates.pot, + debian/templates, usr/bin/byobu-config: + - make the new debconf question translatable + * usr/bin/byobu-export: + - install profile symlink properly, LP: #507461 + + -- Dustin Kirkland Fri, 05 Feb 2010 01:02:43 -0800 + +byobu (2.51-0ubuntu1) lucid; urgency=low + + * usr/lib/byobu/services: fix eucalyptus-nc service handling, was + broken when running no vm's + + -- Dustin Kirkland Wed, 03 Feb 2010 10:56:02 -0800 + +byobu (2.50-0ubuntu1) lucid; urgency=low + + * debian/rules: fix lintian warning about PWD + * usr/bin/byobu-export: silence cd - + * usr/share/applications/byobu.desktop: hide menu item by default, + LP: #513586 + + -- Dustin Kirkland Wed, 27 Jan 2010 23:09:19 -0600 + +byobu (2.49-0ubuntu1) lucid; urgency=low + + * Re-release, cleaning up the tarball a bit, removing the debian/ + directory + * ChangeLog: replace symlink with URLs to pertinent changelog information + * debian/rules: fix get-orig-source target, such that .bzr and debian + directories are not shipped as part of the upstream release tarball + * debian/release-build.sh: perform some rudimentary checks for recurring + issues with release tarballs + + -- Dustin Kirkland Mon, 18 Jan 2010 11:10:47 +1300 + +byobu (2.48-0ubuntu1) lucid; urgency=low + + [ launchpad.net/~rct86 ] + * usr/bin/byobu-launcher: use screen -wipe, instead of screen -ls, to + clean up destroyed sessions, LP: #508609 + + [ launchpad.net/~dperson ] + * usr/bin/byobu-export: correct paths to their new locations, LP: #507461 + + -- Dustin Kirkland Mon, 18 Jan 2010 09:54:03 +1300 + +byobu (2.47-0ubuntu1) lucid; urgency=low + + [ Dustin Kirkland ] + * usr/lib/byobu/network: fix network script regresssion, LP: #506315 + * usr/lib/byobu/wifi_quality: silence error + * byobu.desktop, byobu.svg: install these again, but hide the menu item + by default, per pitti's fallback suggestion to LP: #498322 + * Make byobu more portable, much help from Derek Carter, LP: #503554 + - debian/rules, debian/manpages, usr/share/man/man1/*: move the manpages + to make byobu more portable + - debian/install, bin/*, usr/lib/byobu/*: move the status scripts + - debian/install, usr/share/byobu/*: move the share files + - debian/install, usr/bin/*: move the binary scripts + - debian/install, usr/share/doc/byobu/*: move the docs + - debian/install, etc/*: move the config file + - debian/install, debian/rules, po/*: move the translations + - usr/share/applications/byobu.desktop, usr/share/byobu/pixmaps/byobu.svg: + moved + - usr/share/byobu/tests/byobu-time-notifications: relocate, rename, and + install the notification timing tests, add a copyright header + - AUTHORS, ChangeLog, NEWS: added + * bin/byobu-launcher, bin/byobu-select-session, + share/man/man1/byobu-select-session.1: add a dynamic prompt if + automatically launching byobu on a server where multiple sessions + exist, LP: #368963 + * byobu-export, byobu-janitor, byobu-status: default to white text on + black backgrounds + + [ Jason Cohen ] + * usr/bin/byobu: check if our terminfo supports 256 colors, LP: #409353 + + -- Dustin Kirkland Tue, 12 Jan 2010 12:13:48 -0600 + +byobu (2.46-0ubuntu1) lucid; urgency=low + + * byobu-janitor: seed the default color choices more effciently, also + fixes some strange crashes on first run; default the colors to white + on black + * byobu-config, doc/help.txt: insert version number in byobu help menu, + LP: #502119 + * bin/network: match interface a bit better for bridges, LP: #498722 + * bin/logo, bin/release: when looking at /etc/issue, grab the first + line that starts with a real letter rather than control character, + LP: #432751 + * byobu: deprecate code that prevented nested byobu sessions; this is + is actually quite useful, although you should choose different + escape sequences for each nested host, LP: #403988 + * bin/battery, bin/custom, bin/fan_speed, bin/temp, bin/temp_f: don't + use ls programatically in for-loops, LP: #452405 + * bin/cpu_temp, bin/temp_f, bin/temp_c, byobu-config, byobu.1, + profiles/common, rpm/byobu.spec, statusrc: merge temp_f and temp_c + into a single cpu_temp script + * profiles/common: adjust the formatting-only, and run-only-at-startup + status scripts to run every 9,999,999 seconds (~115 days), minor + performance improvement once a day, easier to identify such jobs; + adjust cpu_count and mem_available to run more frequently, as + cpu-hotplug and memory-ballooning are becoming more feasible, + particularly in VMs + + -- Dustin Kirkland Mon, 11 Jan 2010 22:54:07 -0600 + +byobu (2.45-0ubuntu1) lucid; urgency=low + + * bin/services: look for /usr/bin/kvm in the eucalyptus-nc service + handling + * byobu-status: can't source /bin/true + * re-upload, as bin/services was missing from the previous tarball + + -- Dustin Kirkland Thu, 07 Jan 2010 21:52:49 -0600 + +byobu (2.44-0ubuntu1) lucid; urgency=low + + * byobu-config, byobu.1, profiles/common, rpm/byobu.spec, statusrc, + bin/services: add a service status item to monitor running services + + -- Dustin Kirkland Thu, 07 Jan 2010 18:43:10 -0600 + +byobu (2.43-0ubuntu1) lucid; urgency=low + + * byobu.1: improve putty bug documentation + * profiles/common: monitor windows, showing "@" next to the window name, + but don't print an "Activity" message + * byobu-select-profile, byobu-config: improve color selection with more + informative color names and support screen default background/foreground + colors, LP: #500669 + * bin/logo, profiles/common: must undo each color change on logo printing + like all other status items, fix hardstatus line for "default color" + * profiles/common: fix active window highlight, make it reverse+underline + for all color combinations + + -- Dustin Kirkland Tue, 29 Dec 2009 20:31:42 -0600 + +byobu (2.42-0ubuntu1) lucid; urgency=low + + * bin/disk: use bolding similar to the rest of the status notifications + * debian/install: drop desktop file installation, LP: #498322 + + -- Dustin Kirkland Wed, 23 Dec 2009 14:01:32 -0600 + +byobu (2.41-0ubuntu1) lucid; urgency=low + + [ Dustin Kirkland ] + * byobu: + - check number of args for "1", and "-v", LP: #494465 + - make more zsh friendly, don't use -c + + [ Jon Bernard ] + * bin/disk: fix missing %, LP: #497136 + + -- Dustin Kirkland Tue, 15 Dec 2009 20:24:39 -0600 + +byobu (2.40-0ubuntu1) lucid; urgency=low + + * bin/updates_available, statusrc: move the color coding out to the config + file + * byobu-config, byobu.1, po/*, profiles/common, + profiles_generator/profile.skel, rpm/byobu.spec, statusrc: + - add an apport hook, LP: #485380 + * bin/apport: improve the formatting of the detailed output to + suggest installing apport if necessary + * debian/control: suggest apport + * bin/apport, bin/battery, bin/cpu_freq, bin/disk, bin/ec2_cost, + bin/fan_speed, bin/hostname, bin/ip_address, bin/load_average, + bin/logo, bin/mail, bin/mem_available, bin/mem_used, bin/menu, + bin/network, bin/processes, bin/reboot_required, bin/release, + bin/temp_c, bin/temp_f, bin/updates_available, bin/uptime, bin/users, + bin/whoami, bin/wifi_quality statusrc: define a set of color variables, + such that it's easier to make these theme-able + * windows/common: suggest w3m rather than elinks + * byobu-status, profiles/common, profiles_generator/profile.skel, + statusrc: obviate the need for separate profiles per color; read the + profile colors from a config file, and use a special "color" status + item to dynamically render it + * bin/menu: add a space to the -r test, LP: #490894 + * profiles_generator/profile.skel: use the reverse color for the current + window highlighting; works better with odd color combinations, maximizes + contrast + * byobu-status: separate COLOR into FOREGROUND and BACKGROUND; more + flexibility + * byobu-config, byobu-select-profile: rework to independently select + background color and foreground color, rather than profile; improve text + * debian/install, debian/rules, profiles/common, + profiles_generator/generate, profiles_generator/profile.skel, + rpm/byobu.spec: get rid of the generated profiles; now, everything is + handled by FOREGROUND and BACKGROUND colors, dynamically + * byobu-janitor: clean up old ~/.byobu/profile symlinks; guess the user's + colors and set them in ~/.byobu/colors; ensure that profile gets linked + to the common one + * byobu-select-profile, byobu-select-profile.1: deprecate the --set + option, only support --background and --foreground now; update the + documentation + * debian/profile: establish symlinks for the color profiles to ensure + smooth upgrades; all point to the common profile now + * byobu-config, statusrc: enable whoami, hostname, ip_address by default; + it seems I almost *always* turn these on, seem useful; re-disable if + there are noisy complaints + * byobu-janitor, statusrc: seed the ~/.byobu/status file with the + default values, making it easier for users to customize themselves + * bin/custom, byobu-config, byobu.1, profiles/common, rpm/byobu.spec, + statusrc: add support for a custom status script indicator + * byobu-config, byobu-select-profile: make color selection more readable; + support ctrl- escape sequence + * bin/custom, byobu-status: support --detail in custom scripts + * byobu-export, byobu-config: + - comprehensively rewritten, basically put all of byobu's installed + files in ~/.byobu, and use some clever sed scripts to fixup paths + - drop the color selection, no longer necessary + * byobu-reconnect-sockets, byobu-reconnect-sockets.1, debian/install, + debian/rules: create a sourcable shell script that updates the gpg-agent + and dbus socket environment variables, LP: #486511 + * README: update link to exported tarball + * debian/install, rpm/byobu.spec, byobu-launcher-install, + byobu-launcher-uninstall, byobu-janitor: put the launcher install and + uninstall utilities in /usr/bin + * bin/*: drop sourcing of /etc/byobu/statusrc, as this is done in + byobu-status now + * bin/apport, bin/battery, bin/cpu_freq, bin/custom, bin/disk, + bin/ec2_cost, bin/fan_speed, bin/hostname, bin/ip_address, + bin/load_average, bin/logo, bin/mail, bin/mem_available, bin/mem_used, + bin/menu, bin/network, bin/processes, bin/reboot_required, + bin/release, bin/temp_c, bin/temp_f, bin/updates_available, + bin/uptime, bin/users, bin/whoami, bin/wifi_quality, byobu-status, + statusrc: + - define and use a color function for all status indicators, gives + infinite flexibility + - replace "undo" with "-" + * byobu-status: allow for no color decorations, helps with older versions + of screen, LP: #432165 + + -- Dustin Kirkland Sun, 13 Dec 2009 19:16:04 -0800 + +byobu (2.39-0ubuntu1) lucid; urgency=low + + [ Dustin Kirkland ] + * debian/install, desktop/byobu.desktop, desktop/byobu.svg: add a + desktop icon for Byobu, LP: #449200 + * bin/menu: improve logic for the menu button, to explicitly look for + screen-escape-keys (^a-@), or none (byobu-config), else (F9), LP: #450421 + * debian/prerm: the for loop might not actually do anything, so make + sure we do "something", like run "true", LP: #441788 + * byobu-config: make byobu more python 2.5 friendly, by dropping the + 'finally' clauses + * bin/menu: add some logic in support of byobu-export'd configurations + * byobu-export: add byobu-config to the export tarball + * debian/release-build.sh, debian/release.sh: update for karmic->lucid + + [ Derek Carter ] + * rpm/byobu.spec: updated for Fedora 11 + + -- Dustin Kirkland Tue, 10 Nov 2009 10:18:00 -0600 + +byobu (2.38-0ubuntu1) karmic; urgency=low + + * bin/menu: dynamically change the menu message between + Menu: and Menu:^a-@, based on the users chosen keybinding set, + LP: #446248 + * po/*: import translations just before karmic release + + -- Dustin Kirkland Fri, 02 Oct 2009 11:35:53 -0500 + +byobu (2.37-0ubuntu1) karmic; urgency=low + + * bin/updates_available: fix yum output when listing updates + available, LP: #440659 + * byobu-config: fix crash, due to undefined variable, LP: #428418 + + -- Dustin Kirkland Fri, 02 Oct 2009 11:31:57 -0500 + +byobu (2.36-0ubuntu1) karmic; urgency=low + + * bin/fan_speed: improve the logic for find the fan_speed system monitor + LP: #439524 + * byobu-launcher, byobu-janitor: sometimes the ssh socket link can become + a symlink to itself, causing byobu to fail to start due to too many + levels of symlinks; remove the link first, before creating it; + LP: #440221 + + -- Dustin Kirkland Thu, 01 Oct 2009 21:43:41 -0500 + +byobu (2.35-0ubuntu1) karmic; urgency=low + + * bin/updates_available: fix updates available, broken when updates + cache file does not exist, LP: #434736 + + -- Dustin Kirkland Tue, 22 Sep 2009 09:30:21 -0700 + +byobu (2.34-0ubuntu1) karmic; urgency=low + + * bin/users: use wc -l, since pgrep -c doesn't work in some + distros (busybox, Arch), LP: #434047 + * byobu.1: fix manpage, mem_used was listed twice, mail was in the wrong + place, LP: #434052 + * byobu-export.1, byobu-launcher.1, byobu-select-profile.1: minor manpage + fixes, updating the names of the utilities to use "byobu" rather than + "screen" + + -- Dustin Kirkland Mon, 21 Sep 2009 11:27:09 -0700 + +byobu (2.33-0ubuntu1) karmic; urgency=low + + * cpu_count, disk, logo, network, reboot_required, release, temp_c, + temp_f, updates_available, wifi: make byobu status scripts friendlier + for busybox environments (tested on the Palm Pre), LP: #430096 + * bin/updates_available: print the current cache even if we're + updating the cache, handle it more efficiently + * po/byoub-*.po: rename to just *.po, fix translations location, LP: #430095 + * debian/postinst, debian/preinst: move symlink of screen-profiles-status -> + byobu-status from the postinst to the preinst + * byobu-janitor, byobu-launcher, profiles/common: establish and update an + SSH_AUTH_SOCK link, on screen launch and reconnect, LP: #424522 + + -- Dustin Kirkland Thu, 17 Sep 2009 11:07:03 -0500 + +byobu (2.32-0ubuntu1) karmic; urgency=low + + * bin/updates_available: also monitor /var/lib/apt/lists for changes, + as this is touched on 'apt-get update', LP: #427855 + + -- Dustin Kirkland Fri, 11 Sep 2009 07:59:50 -0500 + +byobu (2.31-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * bin/updates-available, profiles/common: + - reworked to be far more efficient, and accurate, LP: #427373 + - look at the timestamp on /var/lib/apt, and only update cache + if /var/lib/apt has been touched since the cache + - in particular, these changes fix a bug when the user does an + apt-get install or upgrade, and changes to the update status + are not update for up to an hour later; with these fixes, it's + nearly immediate + - and now that updates_available is trivial (in most cases), we + can run it more frequently + + [ Mathias Gug ] + * Check that byobu-launcher exists before calling it (chroots use the same + .profile as the main system but may not have byobu installed). + + -- Dustin Kirkland Mon, 31 Aug 2009 19:30:20 -0500 + +byobu (2.30-0ubuntu1) karmic; urgency=low + + * byobu-launcher: LP: #422155 + - it seems that checking $STY is not totally sufficient for + determining if we're already in a screen session; additionally + check that TERM != screen-bce + - set window title before we attach to an existing session, LP: #422158 + * byobu: LP: #422155 + - test TERM against screen-bce here too + - checking that $SHELL is executable covers -n too + + -- Dustin Kirkland Fri, 28 Aug 2009 11:14:40 -0500 + +byobu (2.29-0ubuntu1) karmic; urgency=low + + * bin/disk: fix disk units for <10GB disks + + -- Dustin Kirkland Mon, 24 Aug 2009 22:58:20 -0500 + +byobu (2.28-0ubuntu1) karmic; urgency=low + + [ Daniel Hahler ] + * Fix bashism in byobu script (LP: #418273) + + -- Dustin Kirkland Mon, 24 Aug 2009 15:18:03 -0500 + +byobu (2.27-0ubuntu1) karmic; urgency=low + + [ Derek Carter ] + * byobu-config, rpm/byobu.spec: fixed to build on Fedora 11; merged + with minor modifications (install keybindings/common as a symlink to + f-keys) + + [ Dustin Kirkland ] + * byobu-config: use Derek's *awesome* "screen -X" hack to reload profiles + automatically, and drop the "reload" prompt + + -- Dustin Kirkland Mon, 17 Aug 2009 16:08:53 -0500 + +byobu (2.26-0ubuntu1) karmic; urgency=low + + * bin/temp_c, bin/temp_f: fix temperature listing, LP: #411108 + * bin/disk, bin/logo, bin/network, bin/release, bin/temp_c, bin/temp_f, + byobu-janitor: move config files to sourced config file, use + janitor item to clean up + * byobu-status: source, rather than exec the target status script, + such that the script inherits the source status config variables; + source statusrc (which contains overrides) + * bin/disk: fix up reading of MONITORED_DISK + * byobu.1: update documentation for new .byobu/statusrc file + * bin/ip_address: allow interface override + * bin/ip_address, bin/mem_used, bin/temp_c, bin/temp_f, + bin/wifi_quality: performance improvements, reduce the number of + forked shells by multiple sed-calls on one line by using a single + sed call with multiple -e arguments (thanks for the suggestion smoser) + * debian/control: bumping standards version + * po/byobu-bg.po, po/byobu-de.po, po/byobu-en_GB.po, po/byobu-es.po, + po/byobu-fr.po, po/byobu-hu.po, po/byobu-id.po, po/byobu-it.po, + po/byobu-ja.po, po/byobu-la.po, po/byobu-nl.po, po/byobu-ru.po, + po/byobu-sv.po, po/es.po, po/fr.po, po/ru.po: translations import + from launchpad + + -- Dustin Kirkland Mon, 17 Aug 2009 14:30:27 -0500 + +byobu (2.25-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * hostname, ip_address, mem_available: make sure statusrc exists + before sourcing it, LP: #407478 + * temp_f, temp_c: use degree character + * release, logo: default the logo and release to Byobu, if undetermined + * profiles/common: ip_address is really cheap, changes more frequently + than previously considered, check this every ~2 minutes + * profiles/common: enable 256 color support, LP: #409353 + * debian/control: bump standards version + + [ Scott Moser ] + * debian/source_byobu.py: invoke ls command allowing for shell expansion, + LP: #408936 + * byobu-janitor: do not fail on optional sed replacement, LP: #408945 + + -- Dustin Kirkland Wed, 05 Aug 2009 16:28:15 +0100 + +byobu (2.24-0ubuntu1) karmic; urgency=low + + [ Chow Loong Jin and Dustin Kirkland ] + * byobu, byobu-launcher, byobu-select-profile: check $STY rather than + $TERM, to determine if we're already inside of a screen session, per + screen's manpage; wrap $STY in double quotes; use -n rather than -z; + LP: #403988, LP: #403809 + + [ Dustin Kirkland ] + * debian/rules: fix update-pot section of rules file; previous code + was only actually gathering messages from the last file input + (byobu-config); this joins the code properly + * bin/wifi_quality: actually evaluate the wifi quality, fixes broken + quality percentage + + -- Dustin Kirkland Wed, 29 Jul 2009 23:52:25 -0500 + +byobu (2.23-0ubuntu1) karmic; urgency=low + + [ Kees Cook ] + * byobu, byobu-launcher: + - set the window title to "$USER@HOST - byobu" + - do this in byobu, rather than byobu-launcher so that all byobu + sessions, and not just auto-launched sessions get this + - note that we're dropping $PWD since this does not actually work + and replacing this with " - byobu" + - for $PWD to work, we'd need screen to support two separate + hardstatus lines, as we can either put it at the bottom of byobu, + or in the window title, and hardstatus is the only tool available + to us for tracking $PWD + - drop the bash -i hack in byobu-launcher; this speeds up logins + + -- Dustin Kirkland Wed, 22 Jul 2009 21:26:42 -0500 + +byobu (2.22-0ubuntu1) karmic; urgency=low + + * byobu-launcher: must explicitly set PROMPT_COMMAND in byobu_launcher; + this used to be in /etc/skel/.bashrc, but has since been dropped + (see Debian Bug #420656); thus, we need to set it ourself if we + want gnome-terminal to be updated with the remote host/username + + -- Dustin Kirkland Wed, 22 Jul 2009 19:34:51 -0500 + +byobu (2.21-0ubuntu1) karmic; urgency=low + + * byobu-launcher: drop "Launching byobu", since this ends up in the + bash history, LP: #400275 + * bin/disk: unbold the first letter of the disk size units, match + format of the mem status reporting + + -- Dustin Kirkland Mon, 20 Jul 2009 15:27:06 -0500 + +byobu (2.20-0ubuntu1) karmic; urgency=low + + * byobu: make this script set -e, such that it will fail if byobu-janitor + exits non-zero + * byobu-janitor: check that ~/.byobu is writable; print an error message + and exit non-zero if not; handles odd situation where user launches + byobu from a sudo/root shell, and root owns their ~/.byobu dir, but then + they launch as non-root sometime later, LP: #394147 + * profiles/common: add a backtick helper hack to print %-1 + * profiles_generator/profile.skel: improve handline of window overflow + on the caption line; use a ... elipsis at the beginning or end of line + to show that there are more windows or information available than + immediately shown, LP: #369828 + * debian/source_byobu.py: add apport hooks for byobu + + -- Dustin Kirkland Sun, 12 Jul 2009 13:29:15 -0500 + +byobu (2.19-0ubuntu1) karmic; urgency=low + + * byobu-launcher: print 'Launching Byobu...' banner for slower terminals, + and drop the printing of 'exit'; much nicer user experience + * bin/cpu_freq, bin/disk, bin/mem_available, bin/mem_used: use bold + font for these, to help with dark colored tty's + * bin/temp_c, bin/temp_f: fix display of yellow on dark tty's + * bin/*: use bold for measurements, and non-bold for units; this really + makes byobu's status items 'pop'! + * bin/fan_speed, byobu-config, byobu.1, profiles/common, + profiles_generator/profile.skel, rpm/byobu.spec, statusrc: added cpu + fan speed status + * bin/users, byobu.1: don't display '0#' if no users logged in; waste of + space, match behavior of updates_available + * bin/processes, byobu.1: use white text on yellow background, more + readable on tty's + + -- Dustin Kirkland Mon, 06 Jul 2009 15:50:50 -0500 + +byobu (2.18-0ubuntu1) karmic; urgency=low + + * debian/screen-profiles.postinst: try to remove the dpkg-divert, but + if it fails, let the installation proceed, since we've copied + screen.real back into place now, (much hate shall descend upon + dpkg-divert!!!), LP: #393204 + * byobu-launcher-uninstall, byobu-janitor: byobu-launcher is no longer + fully qualified, update the remove to account for this; clean out + old screen-launcher entries as a janitor item LP: #392978 + * keybindings/f-keys, keybindings/screen-escape-keys: call the + byobu-config window 'config', rather than 'help' + + -- Dustin Kirkland Tue, 30 Jun 2009 16:08:47 -0700 + +byobu (2.17-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * debian/postinst: can't assume a group named for the user, LP: #391722 + * debian/postinst, debian/screen-profiles.postinst: ensure that + /usr/bin/screen doesn't disappear, which causes the dpkg-divert + removal to fail; LP: #390808 + * bin/mem_available: read mem_available from /proc, should be more + efficient + * byobu-launcher-uninstall: uninstall old screen-launcher entries too, + LP: #391913 + * byobu: detect and emit an error message if the user tries to run + byobu from within a screen session + * byobu: add a -v version argument + * byobu.1, byobu-config.1: move the putty bug note to the byobu manpage + next to the keybinding documentation + * debian/byobu-extras.install, debian/control, debian/install, + debian/release.sh, debian/rules, generate, rpm/byobu.spec: eliminate + the byobu-extras package; this was originally created because we + used to force select-screen-profile on first run, and the number of + profiles was overwhelming; we're no longer doing this, and this + separate package is more trouble than its worth + + [ Ciemon Dunville ] + * byobu.1: update description, add note about units of measure + + -- Dustin Kirkland Fri, 26 Jun 2009 17:34:30 -0500 + +byobu (2.16-0ubuntu1) karmic; urgency=low + + * byobu-config, doc/help.txt: update the verbage of some text + * byobu-config, byobu-janitor, byobu-select-profile, debian/install, + debian/rules, po/POTFILES.sh, rpm/byobu.spec: rename select-screen-profile + to byobu-select-profile; fits our namespace better + * byobu-config, byobu-launcher, byobu-launcher-install, + byobu-launcher-uninstall, debian/install, debian/rules, + rpm/byobu.spec: rename to byobu-launcher* + + Fixes for: LP: #391105, #390405, #391039 + * debian/control: add screen-profiles and screen-profiles-extras + transitional packages + * debian/postinst, debian/prerm, debian/rules: fix screen-profiles -> + byobu upgrades; drop byobu's attempt to remove the dpkg-divert on + /usr/bin/screen, as this fails; establish links in the postinst, + remove in the prerm + * debian/screen-profiles.postinst: remove the diversion on *installation* + of this transitional package + + -- Dustin Kirkland Tue, 23 Jun 2009 14:47:10 -0500 + +byobu (2.15-0ubuntu1) karmic; urgency=low + + * profiles/common: defutf8 on seems like a sane default, at this point, + LP: #301447 + * debian/control: trying to fix upgrade issues, add + provides/replaces/conflicts screen-profiles (<< 2.0), LP: #390808 + NOTE: we can't provide a dummy screen-profiles package, as we + must have screen-profiles uninstalled first, to remove the + dpkg-diversion of /usr/bin/screen + * byobu: force the janitor to run on startup to create the environment + * byobu-status: fix --detail, detect script dir + + -- Dustin Kirkland Tue, 23 Jun 2009 01:00:09 -0500 + +byobu (2.14-0ubuntu1) karmic; urgency=low + + * debian/postinst: remove set -x debugging + * debian/control: create dummy screen-profiles and screen-profiles-extras + packages, to handle seamless upgrades from screen-profiles -> byobu + + -- Dustin Kirkland Mon, 22 Jun 2009 11:28:14 -0500 + +byobu (2.13-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * bin/updates_available: direct which out to devnull + * screen-launcher-install: no need to check for executability of + screen-launcher + * byobu-config: improve the verbage of some of the menus, per + review with the Canonical Design Team + * statusrc, byobu-status, byobu-export, debian/install: source default + status states, rather than the big case statement, performance + improvement for all status, also reduces the number of places to + touch when a new status script is added + * byobu-status: move all of the cleanup hacks to byobu-janitor; create + a find_script() function that allows for scripts in both /usr/lib and + $HOME/.byobu + * byobu, byobu-janitor, debian/install, profiles/common, + profiles/profile.skel: remove janitorial logic scattered across + several scripts and put it in a single place; call this script before + launching byobu, and then only once a day or when the user refreshes + their profile + * bin/reboot_required, byobu-janitor, byobu-status, byobu.1, + debian/postinst: display an next to the reboot symbol, if a byobu + reload is required; flag this in the postinst, after upgrading byobu + * byobu-config: add note about ctrl-a-R to reload profile, flag the + reload-required file when making changes + * byobu-janitor: add fix for the collapsed disk* and network* status + items + * byobu-config, windows/common: add some examples in the common windows + file, all disabled by default; in byobu-config, if the user's windows + file is empty, show the examples in the default window management + panel + * bin/ec2_cost, bin/ip_address, bin/network: get default interface from + /proc/net/route, much more efficient + * bin/network: read bytes sent/received straight from /proc; more + efficient + + [ Ciemon Dunville ] + * byobu.1: reflect the keybinding toggle change to Ctrl-a-! + + -- Dustin Kirkland Sun, 21 Jun 2009 12:44:19 -0500 + +byobu (2.12-0ubuntu1) karmic; urgency=low + + [ Massive changeset for LP: #386546 ] + * bin/cpu_count, bin/cpu_freq, bin/disk_available, bin/disk_used, + bin/ec2_cost, bin/ip_address, bin/load_average, bin/mem_available, + bin/mem_used, bin/network_down, bin/network_up, bin/reboot_required, + bin/temp_c, bin/temp_f, bin/updates_available, bin/wifi_quality, + byobu-config, byobu-export, byobu-status, byobu.1, debian/control, + doc/help.txt, profiles/common, rpm/byobu.spec: massive changeset, moving + all status scripts from *-* to *_*; this allows us to source the + ~/.byobu/status file, rather than grepping through it for configuration + information, yielding significant performance improvements + * profiles/common: massive rework of status frequencies; use prime numbers + to minimize collisions; increase/decrease a few, based on statistical + testing of required runtimes + * bin/wifi_quality: significant performance improvements, remove unneeded + route call, cache iwconfig output so that it's only called once + * bin/processes: improve performance by listing /proc (doubles the speed) + * bin/network, profiles/common, profiles/profile.skel, byobu-config, + byobu-status, byobu.1, rpm/byobu.spec: merge network_down and + network_up to a single status script; too much duplication of code, + causes performance problems + * bin/disk_available, bin/disk_used, bin/hostname, bin/ip_address, + bin/mem_available, byobu-status: drop grepping of status config file, + source it instead, should improve performance + * bin/reboot-required: don't exit 1 when a reboot is not required + * bin/cpu-freq: drop "cat" and just use awk, don't printf twice, + performance improvements + * bin/updates_available: drop "cat", and just use grep, performance + improvement + * bin/load_average: drop "cat", and just use awk, performance + improvement + * bin/network: pull network bytes directly from /proc/net/dev, performance + improvement + * bin/users: use pgrep -c, performance improvement + * bin/time, bin/date, bin/reboot-required: use case statement, performance + improvement + * bin/battery: ensure that only one present battery is displayed in the + status area + * bin/disk, bin/disk_used, profiles/common, profiles/profile.skel: + collapse disk usage down to a single status script for performance, + support disk partitions as well as mountpoints in ~/.byobu/disk, + LP: #388053 + + * byobu-config: have ESC be a hotkey for 'cancel', LP: #373473 + + * byobu-config, debian/rules, keybindings/common.disable, + keybindings/f-keys, keybindings/screen-escape-keys: massive fix for + byobu keybindings; use ctrl-a-! to toggle on/off byobu's f-keys; + also support a new keyset, screen-escape-keys which profiles ctrl-a + keybindings for common byobu functions, LP: #380944 + + * bin/mail, byobu-status, byobu.1, profiles/common, + profiles/profile.skel, rpm/byobu.spec: add a mail status notification, + LP: #387936 + + * byobu-config: fix keybinding disabling for non-standard escape sequences, + LP: #389129 + + -- Dustin Kirkland Fri, 19 Jun 2009 00:35:39 -0500 + +byobu (2.11-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * debian/install, keybindings/common.disable: add support for + enabling/disabling the byobu keybindings, with ctrl-a-( and + ctrl-a-), LP: #386363 + * screen-launcher-install, screen-launcher-uninstall: use + .hushlogin to prevent double-printing of motd + * bin/network-*, byobu.1: allow monitored network interface overrides in + ~/.byobu/network-interface, update manpage accordingly, LP: #386364 + * byobu-export, select-screen-profile: fix bashisms + on the read command, Debian Bug (closes: #530989) + * byobu: use -c for motd+shell, LP: #387201 + + [ Ciemon Dunville ] + * byobu.1: Simply added a SEE ALSO to byobu.1; added section on the + keybindings + + -- Dustin Kirkland Mon, 15 Jun 2009 22:43:23 -0500 + +byobu (2.10-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * byobu: don't create an extra shell, if the user has some default + windows specified + * bin/updates-available, byobu, byobu-export, byobu-status, + screen-launcher-install: remove hardcoded /usr/bin paths; some users + install without root privileges and want to run from a location other + than /usr/bin, LP: #385762 + * README: mention the statically exported byobu tarball, LP: #385762 + + [ Ciemon Dunville ] + * byobu.1, byobu-config.1: manpages refactored, to move the status + descriptions to the main byobu manpage + + -- Dustin Kirkland Thu, 11 Jun 2009 23:29:10 -0500 + +byobu (2.9-0ubuntu1) karmic; urgency=low + + * screen-launcher: slightly cleaner bash exit (still could use some + improvement) + * select-screen-profile: update to say "byobu" rather than screen, + LP: #382643 + * bin/wifi-quality, bin/network-up, bin/network-down: must use /sbin + in iwconfig and ifconfig paths + * bin/cpu-count: performance improvement, use getconf + * bin/cpu-freq: performance improvement, simplify pipes + * bin/disk-*: use the POSIX output format + * bin/ec2-cost: performance improvement, cache ifconfig output + * bin/logo: use a case-statement instead of nasty if/then/else stack + * profiles/NONE: don't source ~/.screenrc, causes a nasty recursion, + LP: #382642 + + -- Dustin Kirkland Mon, 08 Jun 2009 17:46:24 -0500 + +byobu (2.8-0ubuntu1) karmic; urgency=low + + * profiles/byoburc, profiles/profile.skel: move the .screenrc sourcing + to the byoburc file + + -- Dustin Kirkland Mon, 01 Jun 2009 23:15:58 -0500 + +byobu (2.7-0ubuntu1) karmic; urgency=low + + * debian/postinst: clean up old screen -> byobu symlink before undoing + the dpkg-divert, LP: #382462 + + -- Dustin Kirkland Mon, 01 Jun 2009 13:46:40 -0500 + +byobu (2.6-0ubuntu1) karmic; urgency=low + + * byobu, debian/postrm, debian/preinst, debian/rules, screen-launcher: + remove the dpkg diversion on /usr/bin/screen as this has proven + to be controversial; users will need to call "byobu" to launch + a byobu-style screen session; LP: #330322 + * bin/network-*: set rate=0 when rate is negative (ie, on startup) + * bin/temp-*: better support for temperature zones, LP: #380885 + * byobu: If the user is running byobu with some arguments, but has + not selected their profile yet, don't bother them with profile + selection at this time, LP: #330322 + * screen-launcher-install: handle non-interactive shells correctly, + LP: #380761 + * keybindings/common: add keybindings, @=config, R=reload, LP: #380944 + * po/ru.po: added russian translation, thanks Slava, LP: #380977 + + -- Dustin Kirkland Mon, 01 Jun 2009 09:11:22 -0500 + +byobu (2.5-0ubuntu1) karmic; urgency=low + + * bin/temp-c, bin/temp-f, byobu-config, byobu-config.1, byobu-status, + profiles/common, profiles/profile.skel, rpm/byobu.spec: added a + cpu temperature indicator + * byobu-export: echo the version to file, in an exported byobu tarball + + -- Dustin Kirkland Fri, 22 May 2009 18:51:49 +0200 + +byobu (2.4-0ubuntu1) karmic; urgency=low + + [ Dustin Kirkland ] + * byobu: support Debian/Ubuntu's diversion of screen to screen.real, + as well as RH, which does not divert the real screen binary + * debian/release.sh: handle version incrementing in the rpm specfile + * bin/disk-used: fix situations where df output wraps to the next + line + * bin/logo: check that lsb_release is available before using it + * bin/release: try to grab both distro and version from /etc/issue + if that's what we're forced to use + * bin/updates-available: improve counting of yum updates available + * bin/ip-address,whoami,release,hostname: use +b rather than =b, + colors look bad on the light* profiles + * bin/ip-address: hostname -i doesn't always work, use ifconfig + instead, LP: #376080 + * bin/network-down,network-up,updates-available: use /var/run/screen + for status cache files, to keep from waking up the disk + * bin/battery: color the entire battery the same way, only use 3 tones, + Green/Yellow/Red (6 was too confusing), always use black text on + capital G/Y/R background + * byobu-export: tar files with owner/group as root/root, LP: #371025 + * byobu, debian/install, motd+shell, profiles/byoburc: launch screen + with a simple config file that includes the chosen profile plus + the chosen windows; but on refresh, only reload the chosen profile; + revert previous hack that did this by creating a temporary config + file and broke on hardy, LP: #375309 + * screen-launcher: don't use the -x argument if launching a new screen, + as this fails to launch default windows, LP: #375768 + * debian/control: suggest vim, for better handling of status details + + [ David Duffey ] + * rpm/byobu.spec: initial specfile for RH packaging + + -- Dustin Kirkland Sat, 16 May 2009 21:06:53 +0100 + +byobu (2.3-0ubuntu1) karmic; urgency=low + + * byobu-status-detail: foldcolumn=2, print bars on the left side + that should make the folding output easier to read + * byobu-status: print some navigation hints at the top of the detailed + status output + + -- Dustin Kirkland Mon, 11 May 2009 10:49:30 -0500 + +byobu (2.2-0ubuntu1) karmic; urgency=low + + * bin/cpu-count: print cpu model names for --detail + * byobu-status: print the short description (matching the status + in the lower bar) first, then the description in parens in the + first line of the indented/folded text + + -- Dustin Kirkland Thu, 07 May 2009 15:56:34 -0500 + +byobu (2.1-0ubuntu1) karmic; urgency=low + + * byobu-export: touch an empty .byobu/profile, silence error message + * byobu-status, debian/rules: migrate existing screen-profiles config + dir smoothly by linking the old screen-profiles-status script to the + new byobu-status, and add a migrate function to that script + * bin/disk-available, bin/disk-used, byobu-config, byobu-config.1, + byobu-status, profiles/common, profiles/profile.skel: add a new + pair of status notifications for disk space available and used; + default to / directory, allow user override in config dir + + Tranform byobu-status --detail to use vim's folding feature + * byobu-status: output text compatible with vim's folding feature + * byobu-status-detail: use vim's folding status feature to allow + for collapsing/expanding each status item; fall back on + sensible-pager if +folding is not available; and fall back on less + if sensible-pager is not available + * bin/cpu-count: nothing to print on --detail + * bin/date: add --short which actually prints the current date + * bin/ec2-cost: handle on/off configuration like *all* other status + scripts, no need for FORCE + * bin/ip-address: --detail shows all inet addr's in ifconfig + * bin/logo: --detail should be empty + * bin/network-down, bin/network-up: trim trailing whitespace + * bin/reboot-required: add a --short option, which prints Yes or No + * bin/time: add --short which actually prints the current time + rather than the screen escape sequence + * bin/updates-available: add a --short option, which only displays the + number of updates available; show more info on --detail about upgrades + * bin/users: grep out the grep statement in the ps + * bin/whoami: print /etc/passwd info on --detail + + -- Dustin Kirkland Thu, 07 May 2009 00:54:43 -0500 + +byobu (2.0-0ubuntu1) karmic; urgency=low + + Renaming project screen-profiles to byobu + * bin/users: make the --detail output match the status output + * bin/ec2-cost, bin/hostname, bin/ip-address, bin/logo, + bin/mem-available, bin/network-down, bin/network-up, + bin/updates-available, debian/postrm, debian/preinst, + debian/release.sh, debian/rules, screen, screen-launcher-install, + screen-profiles, screen-profiles-export, screen-profiles-status, + select-screen-profile: abstract the package name (currently, + screen-profiles) to a variable + + -- Dustin Kirkland Tue, 05 May 2009 23:04:06 -0500 + +screen-profiles (1.54-0ubuntu1) karmic; urgency=low + + * bin/ip-address: don't color the whitespace + * bin/cpu-count: don't echo blank line in detailed status + * bin/updates-available: print "None" in detailed status, if no updates + are available + * screen-profiles-status: ensure that all detail scripts get a chance + to run + * debian/copyright: there have *never* been icons in screen-profiles; + remove the CC2.5 license statement, as this was erroneously copied over + from another package for the initial packaging + * screen-profiles-status: color code and format the detailed status output + * screen-profiles-status-detail: use less -R to render ansi escaped + color formatting correctly; seed the search pattern with the header + for each section + + -- Dustin Kirkland Sat, 02 May 2009 14:29:06 -0500 + +screen-profiles (1.53-0ubuntu1) karmic; urgency=low + + * screen: some users gripe about the default launched window being + called "motd+shell", LP: #369397 + * motd+shell, screen: clean up temp file + * bin/users, screen-profiles.1: when counting users, count remote ssh + sessions + * bin/ec2-cost: update location of ec2_version file + * debian/install, screen-profiles-export, screen-profiles-status, + screen-profiles-status.1: move status gathering scripts from /var/lib + to /usr/lib, LP: #369368 + + -- Dustin Kirkland Wed, 29 Apr 2009 18:57:27 -0500 + +screen-profiles (1.52-0ubuntu1) karmic; urgency=low + + * bin/updates-available: drop leading "Inst" in detailed report + * bin/logo: add logo for altlinux + * screen: drop the -t title, causes hangs if user defines shelltitle, + LP: #368925 + * profiles/profile.skel: swap the position of ip-address and menu + * screen-profiles.1: document all notifications, LP: #369040 + * profiles/common, screen: create a temp file to use on screen launch, + consisting of the profile plus the windows, but don't source default + windows otherwise as this breaks F5-refresh, LP: #368786 + * screen-profiles: ensure that all registered keybindings get updated + if the user changes their escape sequence, LP: #368937 + * screen-launcher-install, screen-launcher-uninstall: support + screen-by-default installation for zsh users, LP: #368960 + + -- Dustin Kirkland Wed, 29 Apr 2009 02:28:48 -0500 + +screen-profiles (1.51-0ubuntu1) karmic; urgency=low + + * bin/cpu-freq: only print cpu-freq if available + * bin/hostname: hostname -s fails sometimes, it seems + * screen: respect $SCREENRC environment variable, LP: #367250 + * bin/ip-address: add an ip-address status script + + Detailed status + * bin/*: add special actions if --detail is specified; basically, + print all relevant information on stdout without formatting + * screen-profiles-status: add support for --detail, loop through + all status scripts with --detail specified + * screen-profiles-status-detail: wrapper using sensible-pager + * screen-profiles-status-detail.1: documentation added + + -- Dustin Kirkland Mon, 27 Apr 2009 21:55:38 -0500 + +screen-profiles (1.50-0ubuntu1) jaunty; urgency=low + + * keybindings/common, screen-profiles, select-screen-profile: add a + carriage return to the F5-refresh keybinding + * keybindings/common, doc/help.txt: change F8 from advanced help to + window re-titling (over time, this is far more useful than adv help) + * profiles/plain: renamed to NONE to more clearly convey the fact that + if you choose this profile, you are not, in fact, using a supplied + screen-profile; correct broken symlinks in the 'screen' script + * select-screen-profile: set the default, recommended, simple profile + to 'light' + + -- Dustin Kirkland Thu, 23 Apr 2009 16:59:59 -0500 + +screen-profiles (1.49-0ubuntu1) jaunty; urgency=low + + * motd+shell: should use exec to run shell, LP: #365115 + + -- Dustin Kirkland Wed, 22 Apr 2009 21:50:00 -0500 + +screen-profiles (1.48-0ubuntu1) jaunty; urgency=low + + Drop the distro name in generated profiles + * debian/install: fix installation of profiles + * debian/rules: don't create the ubuntu profile symlink + * debian/screen-profiles-extras.install: no longer need to install + the distro-specific profiles + * profiles/generate: generate profiles which do not have ubuntu- + prepended + * select-screen-profile: remove the ubuntu specific profile handling + * screen: fix broken symlinks to ubuntu-* profiles + * screen-profiles: drop special ubuntu handling + * screen-profiles-export: drop ubuntu prepending + + * screen: default to the light profile, if unspecified; this should be + acceptable now that the F9:Menu prompt is always shown, and from there, + any user can easily change their profile; just touch the windows config + file since F5 reloads reopens all windows; launch with motd+shell if + no args to screen are specified + * keybindings/common: don't force users to name a window on F2 window + creation + * debian/postrm: remove the || true on the diversion removal, per Debian + ITP; I suppose we want to know if the diversion removal failed + * screen-profiles, screen-profiles-status: default uptime status to 'on', + generally useful, and pretty compact + * bin/mem-available: fix subtle bug where whitespace is printed if in a + totally default (no status file) configuration + * screen-profiles-status.1, debian/rules: manpage added + * screen-profiles-export: randomly generate tarball name, if unspecified + + -- Dustin Kirkland Tue, 21 Apr 2009 16:45:35 -0500 + +screen-profiles (1.47-0ubuntu1) jaunty; urgency=low + + * screen-profiles-status: stop grepping after one match, subtle perf + improvement + * bin/logo: lsb_release is really expensive, try /etc/issue first, + and fall back to lsb_release if that fails + * bin/date, bin/time: last release installed 644 for some reason? + + -- Dustin Kirkland Sat, 18 Apr 2009 16:10:35 -0500 + +screen-profiles (1.46-0ubuntu1) jaunty; urgency=low + + * bin/date, bin/time, screen-profiles-status, screen-profiles-export, + screen-profiles: allow for configuring on/off the date and time + status, LP: #359050 + * bin/logo: added logos for foresight and xandros + * bin/battery: use the more intense yellow for lower battery percentage + + -- Dustin Kirkland Fri, 17 Apr 2009 10:26:40 -0500 + +screen-profiles (1.45-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * bin/cpu-freq: fix for powerpc LP: #352286, fix for arm LP: #362157, + always report in GHz, round to nearest hundred + * bin/uptime: don't print seconds, since we don't update often enough + * bin/*: route and ifconfig are in /sbin, fully qualify + * Performance improvements, LP: #360759 + - screen-profiles-status: use home bin scripts, if available first, + then fallback to system-wide, allows for local overrides; comment + out nice and ionice calls; this *really* slows down startup + - bin/release: eliminate one expensive lsb_release call + - bin/updates-available: background updates checking processes, + let them write to cache, and let the next cache check pick up the + changes + * debian/control: add a versioned dependency on python-newt, as + screen-profiles appears to crash on gutsy systems (but is okay on + hardy systems), LP: #346603 + + [ Jon Bernard ] + * debian/control: fix typo in screen-profiles-extras description + + [ Steven Danna ] + * bin/battery: hide percentage when battery is in charged state + + -- Dustin Kirkland Thu, 16 Apr 2009 13:40:00 -0500 + +screen-profiles (1.44-0ubuntu1) jaunty; urgency=low + + * bin/updates-available: print one ! for updates, two !! for security + updates available (should have a unit for each item) + * profiles/profile.skel: updates-available and reboot-required should + be over with the rest of the status + + -- Dustin Kirkland Wed, 08 Apr 2009 14:43:23 -0700 + +screen-profiles (1.43-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + New status notifiers, LP: #357911 + * bin/logo: allow users to define their own logo + * bin/processes: display a count of the running processes + * bin/network-down, bin/network-up: added network transmit status + * bin/wifi-quality: show wireless signal quality + * bin/*, profiles/profile.skel: make all status scripts handle their + own colors and trailing whitespace; this should help alleviate the + 16-color-change limitation on un-patched screens; it also simplifies + the hardstatus string significantly, LP: #357917 + * profiles/profile.skel: move reboot-required and updates-available to + the early part of the status string, since these require action + * screen-profiles-status: new, central script for all status actions; + allows us to centralize some things, like enable/disable checking + and process nice-ness, LP: #357923 + + [ Raphaël Pinson and Dustin Kirkland ] + * bin/battery, bin/users, bin/uptime, profiles/common, screen-profiles: + added new status items for battery state, number of users, and system + uptime, LP: #357911 + + -- Dustin Kirkland Wed, 08 Apr 2009 11:49:15 -0700 + +screen-profiles (1.42-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * bin/cpu-freq: fix cpu freq for powerpc hardware, LP: #352286; + use 2 decimals for GHz (bring this down to 1 decimal when cpus hit 10GHz) + * debian/postinst, debian/prerm, screen: remove some maintainer hacks + that should be cleaned up before Jaunty GA, LP: #352291 + * po/*: screen-profiles-export translation template + * profiles/common: added 'altscreen on', which cleans the screen for + programs that support this, such as vi and emacs, LP: #349677 + * bin/logo, profiles/common, profiles/generate: dynamically print logo + LP: #352632 + * screen-profiles-export, screen-profiles-export.1: drop distro selection, + no longer needed + * added logo for Arch linux + + [ Adi Roiban ] + * debian/install, debian/rules, po/POTFILES.python, po/POTFILES.sh, + po/es.po, po/fr.po, po/screen-profiles.pot: LP: #347521, i18n support + in the screen-profiles build and install + + + -- Dustin Kirkland Tue, 31 Mar 2009 17:31:10 -0500 + +screen-profiles (1.41-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * profiles/logos/gentoo: added a gentoo logo + * profiles/logos/mandriva: added a mandriva logo + * profiles/generate-profiles: reorganize cleaning and echo's + * debian/rules: generate profiles as part of the build, rather than + get-orig-source + * bin/release: determine release from /etc/issue if lsb-release not found; + don't use fully qualified path for lsb_release as it seems this has moved + around (see Dapper); for Ubuntu use -d, but use -r -i for other os's + * licenses updated to GPLv3 (dropped "or later" clause) + * screen-profiles-export: new script, for exporting a profile to systems + where screen-profiles are not installed + * screen-profiles-export.1: manpage for new script + * debian/install: install screen-profiles-export + * profiles/generate-profiles renamed to profiles/generate + + [ James Wilcox ] + * bin/updates-available: support SUSE's zypper + + -- Dustin Kirkland Sat, 28 Mar 2009 13:31:39 -0500 + +screen-profiles (1.40-0ubuntu1) jaunty; urgency=low + + * bin/updates-available: cache /var/run/updates-available locally, to + persist across reboots, LP: #344993 + * profiles/logos/suse: added a simple SuSE green on white logo + + -- Dustin Kirkland Wed, 18 Mar 2009 14:17:30 -0500 + +screen-profiles (1.39-0ubuntu1) jaunty; urgency=low + + * debian/screen-profiles-extras.install: new package, providing the + additional, color profiles, LP: #342244 + * debian/control: suggest screen-profiles-extra, and create the package + * screen: recommend the screen-profiles-extras package, if the user's + chosen profile isn't readable + * select-screen-profile: silence stderr on ls + + -- Dustin Kirkland Fri, 13 Mar 2009 12:53:09 -0500 + +screen-profiles (1.38-0ubuntu1) jaunty; urgency=low + + * screen-profiles: add support for toggling on/off each status item + * bin/arch: new status notifier, default is 'off' + * bin/*: speed these up by dropping the 'basename' shell call + * profiles/common: change the refresh on status items that don't change + to once-a-day; add arch + + -- Dustin Kirkland Fri, 13 Mar 2009 00:18:59 -0500 + +screen-profiles (1.37-0ubuntu1) jaunty; urgency=low + + * bin/menu: make internationalizable menu prompt + * debian/rules: get-po from menu + * bin/*: test if enabled/disabled before executing, LP: #341557 + + -- Dustin Kirkland Thu, 12 Mar 2009 02:33:59 -0500 + +screen-profiles (1.36-0ubuntu1) jaunty; urgency=low + + * profiles/profile.skel: Menu: white text on dark background + * profiles/logos/debian: red on white for the Debian logo + * bin/release: improve printing of release information + + -- Dustin Kirkland Tue, 10 Mar 2009 16:44:54 -0500 + +screen-profiles (1.35-0ubuntu1) jaunty; urgency=low + + [ Adrien Cunin ] + * Fixed Vcs-Bzr url + * Don't install README as changelog, it's already installed as doc + * Fixed bin/whoami's header which had bin/hostname's one + * Minor fix in the french translation + + [ Dustin Kirkland ] + * bin/ec2-cost: fix &2>1 typo, LP: #339774 + + -- Dustin Kirkland Sun, 08 Mar 2009 23:41:23 -0500 + +screen-profiles (1.34-0ubuntu1) jaunty; urgency=low + + Fixes for LP: #339186 + * screen-profiles: remove welcome screen toggle support; collapsed into a + tooltip on the status line + * windows/common: remove screen-profiles default window; now launched from + tooltip + * profiles/profile.skel: add Menu:F9 tool tip to far right of window bar + + -- Dustin Kirkland Sat, 07 Mar 2009 08:51:16 -0600 + +screen-profiles (1.33-0ubuntu1) jaunty; urgency=low + + * screen-launcher: add little bash hack to ensure that PROMPT_COMMAND gets + displayed and gnome-title is updated, LP: #338722 + * debian/control: build-depend on gettext-base, in case the builder needs to + run get-po + * bin/ec2-cost: trivial interface detection fix, nice the apt checks + * bin/hostname: improve performance + + -- Dustin Kirkland Sat, 07 Mar 2009 01:11:20 -0600 + +screen-profiles (1.32-0ubuntu1) jaunty; urgency=low + + * bin/ec2-cost: since route -n is being used, must grep for 0.0.0.0, + LP: #336955 + * debian/postinst, debian/prerm: add/remove symlink for bin scripts to + /var/lib/screen-profiles (should be removed before Jaunty GA) + * profiles/common, debian/install: install helper scripts into + /var/lib/screen-profiles rather than /usr/share/screen-profiles/bin, + LP: #336961 + + -- Dustin Kirkland Mon, 02 Mar 2009 17:46:42 -0600 + +screen-profiles (1.31-0ubuntu1) jaunty; urgency=low + + * keybindings/common, profiles/common, profiles/plain, + profiles/profile.skel: replace ~ with $HOME, LP: #336208 + + -- Dustin Kirkland Sun, 01 Mar 2009 10:26:13 -0600 + +screen-profiles (1.30-ubuntu1) jaunty; urgency=low + + * screen-profiles: note profile refresh key, LP: #335922; use single + button instead of 2 buttons when there's only really + one path, LP: #335923; standardize all buttons to the same words + * screen: revert "clear" changes + * select-screen-profile: align profile options properly, LP: #335943; + order profile options better, LP: #335944; match "F5" text to that in + screen-profiles + * doc/help.txt: improve help text + * po/*: text updated + + -- Dustin Kirkland Sat, 28 Feb 2009 12:19:04 -0600 + +screen-profiles (1.29-0ubuntu1) jaunty; urgency=low + + * bin/ec2-cost: add --force, and --detail mode for stand-alone runs; test for + existence of /etc/ec2-version for Amazon instance (LP: #335274), allow + local use to turn ec2-cost on + * bin/updates-available, keybindings/common, profiles/common, screen, + screen-profiles, select-screen-profile, select-screen-profile.1: updated + to collapse ~/.screenrc-* into ~/.screen-profiles/*, LP: #335275 + * screen: added a hack to move ~/.screenrc-* into ~/.screen-profiles/*; + this hack should be removed after Jaunty GA (only affects upgrading + Alpha users), clear after screen exit (cleans up misleading status bar) + * screen-launcher: drop santizer code; no longer necessary; handled by the + screen wrapper, and screen patched to ignore missing sourced files. + * bin/ec2-cost: speed up route with -n + * screen-profiles.1: Add a note about PuTTY's odd key mapping for F1-F4, + LP: #317550 + * keybindings/common, doc/help.txt: Change F5 from kill window to hot-reload + profile (killing a window is easy enough, with 'exit' command) + * profiles/*: provide other colored profiles + + -- Dustin Kirkland Fri, 27 Feb 2009 16:20:41 -0600 + +screen-profiles (1.28-0ubuntu1) jaunty; urgency=low + + * bin/ec2-cost: update the hostname regex to work with the latest Ubuntu + ec2 beta, LP: #335274 + + -- Dustin Kirkland Thu, 26 Feb 2009 22:50:12 -0600 + +screen-profiles (1.27-0ubuntu1) jaunty; urgency=low + + * Fix for LP: #333189: + - keybindings/common: add profile reload shortcut, "ctrl-a ~" + - screen-profiles: updated messages to point to ^a ~ + - po/*: updated for the new messages + * Fix for LP: #333180 + - screen-profiles: add toggle for auto launch of welcome + - po/*: updated for the new messages + * Fix for LP: #332890 + - bin/updates-available: prefer /var/run/updates-available over + ~/.screenrc-updates-available, if touched more recently + + -- Dustin Kirkland Mon, 23 Feb 2009 14:59:26 -0600 + +screen-profiles (1.26-0ubuntu1) jaunty; urgency=low + + Fixes for LP: #331648 + * bin/whoami: report user logged in + * bin/hostname: report hostname + * profiles/common, debian/install: add whoami, hostname + * profiles/profile.skel: append user@host to the far right of window bar + + -- Dustin Kirkland Thu, 19 Feb 2009 10:55:04 -0600 + +screen-profiles (1.25-0ubuntu1) jaunty; urgency=low + + * screen: don't prompt with select-screen-profile, if ~/.screenrc exists + and ~/.screenrc-profile does not, LP: #330322 + + -- Dustin Kirkland Mon, 16 Feb 2009 20:41:24 -0600 + +screen-profiles (1.24-0ubuntu1) jaunty; urgency=low + + * screen-profiles: remove the scroll bar on the help page, LP: #330276 + + -- Dustin Kirkland Mon, 16 Feb 2009 16:34:32 -0600 + +screen-profiles (1.23-0ubuntu1) jaunty; urgency=low + + * profiles/common, profiles/plain: remove double-sourcing of /etc/screenrc, + LP: #328365 + + -- Dustin Kirkland Wed, 11 Feb 2009 23:26:46 -0600 + +screen-profiles (1.22-0ubuntu1) jaunty; urgency=low + + * profiles/plain: rather than symlinking to /etc/screenrc, source it, and + then source ~/.screenrc to ensure that the user's local customizations + are loaded, LP: #328312 + * debian/install: install plain profile + * debian/rules: drop the symlink to /etc/screenrc + + -- Dustin Kirkland Wed, 11 Feb 2009 22:22:03 -0600 + +screen-profiles (1.21-0ubuntu1) jaunty; urgency=low + + * motd+shell, motd+shell.1: trivial script to print the motd then launch + a shell; manpage accordingly, fixes for LP: #328066 + * windows/common: use motd+shell for shell window, drop motd window + * debian/install: install motd+shell + * debian/rules: install motd+shell.1 manpage + * doc/help.txt, screen-profiles: try hard to get the help text to fit + on a tty console screen + + -- Dustin Kirkland Wed, 11 Feb 2009 08:58:24 -0600 + +screen-profiles (1.20-0ubuntu1) jaunty; urgency=low + + * profiles/logos/*: remove unneeded trailing formatting + * screen-launcher-install: no longer need the pruning code, since we just + call screen-launcher-uninstall + * bin/*: added gpl/copyright header + * bin/ec2-cost, profiles/common, debian/install: initial script for + estimating ec2 cost + * bin/updates-available: write out local cache of updates available; add ! + only if there are security updates + * debian/rules: drop po4a rule, no longer valid + * screen-profiles-helper renamed to screen-profiles; updated all references + LP: #315886 + * select-screen-profile, screen-profiles: update translation handling + and inline documentation + * bin/reboot-required: simplified + * bin/cpu-freq: simplified, made more efficient + * bin/cpu-count: simplified + * bin/ec2-cost: exit immediately if not running in EC2 + * profiles/common: run cpu-freq, mem-used, and reboot-required every 2 + seconds (as these are cheap and dynamic) + * profiles/skel: add ec2-cost to status bar + + -- Dustin Kirkland Mon, 09 Feb 2009 15:07:29 -0600 + +screen-profiles (1.19-0ubuntu1) jaunty; urgency=low + + * screen: wrapper script should add a -c arg, and specify your chosen + profile, and ensure that .screenrc at least exists, prevent recursion + from happening to upgrading users by pruning source of ~/.screenrc-profile + from ~/.screenrc, LP: #323756 + * screen-launcher-install: test executability of screen-launcher; install to + .profile unconditionally, and only .bash_profile and .bash_login if they + exist; sanitize the environment; LP: #319691, LP: #321869 + * screen-launcher-uninstall: test writability of file to prune; prune from + .profile, .bash_profile, and .bash_login + * screen-profiles-helper: update auto-launch-on-login detection accordingly + * windows/common: start counting at 1, add a window for watching /etc/motd + * profiles/profile.skel, profiles/*: source the user's local ~/.screenrc + as a last step (allowing for overrides) + * select-screen-profile: don't mess with the user's ~/.screenrc file here; + only set up the ~/.screenrc-profile symlink + + -- Dustin Kirkland Tue, 03 Feb 2009 10:24:28 +0100 + +screen-profiles (1.18-0ubuntu1) jaunty; urgency=low + + * debian/install: install all non-ubuntu profiles into + /usr/share/screen-profiles/profiles/misc; install the ubuntu-light + profile as "ubuntu-light" + * debian/rules: call the generate-profiles script as part of the + get-orig-source target; dh_link the ubuntu-light profile to ubuntu (to + maintain legacy compatibility to existing ~/.screenrc-profile's) + * profiles/debian,fedora,redhat,ubuntu: removed since these are auto + generated now + * profiles/debian-dark,debian-light,fedora-dark,fedora-light,redhat-dark, + redhat-light,ubuntu-dark,ubuntu-light: new, autogenerated profiles + * profiles/generate-profiles: shell script that will generate profiles + using a skel file and a set of custom "logos" + * profiles/logos/*: extracted the unique logo component of each profile + and dropped in here + * profiles/profile.skel: skeleton profile functionality, to be sed-upon + by the generate-profiles script + * select-screen-profile: some hackery to work around the fact that we now + have a 'misc' directory in the profile listing, as well as a possibly + duplicated ubuntu and ubuntu-light profiles + * select-screen-profile & screen: move the environment sanitation code + to the screen script, such that it is executed each time screen is run, + rather than on screen profile selection only + * screen-profiles-helper: add support for keybinding selection, LP: #321735 + * debian/install, keybindings/none: install an empty set of keybindings for + the "none" selection + * profiles/common: strip out the automatic loading of the common + keybindings now that each user sets this in their local + * profiles/generate-profiles, profiles/profile.skel: drop the grep of the + caption, put it the skeleton + * select-screen-profile: remove (), LP: #322833 + + -- Dustin Kirkland Sat, 31 Jan 2009 19:40:51 +0100 + +screen-profiles (1.17-0ubuntu1) jaunty; urgency=low + + * screen: wrapper script for calling select-screen-profile on a per-user, + first-run basis + * preinst, postrm: maintainer scripts to dpkg-divert screen to screen.real + + -- Dustin Kirkland Tue, 27 Jan 2009 15:47:46 -0500 + +screen-profiles (1.16-0ubuntu1) jaunty; urgency=low + + * select-screen-profile: limit erroneous attempts to 5; make the "plain" + profile default; remove the "recommended" pointer + * screen-profiles-helper: drop the "recommended" pointer + * doc/help.txt: make the help text more readable + + -- Dustin Kirkland Tue, 27 Jan 2009 14:42:27 -0500 + +screen-profiles (1.15-0ubuntu1) jaunty; urgency=low + + * profiles/ubuntu: Ubuntu pseudo-logo looks better on dark black + * select-screen-profile: append -light to default Ubuntu profile + * debian/rules, debian/install: automatically generate and install an + ubuntu-dark themed profile, thanks to Tyler Willingham for the + inspiration + + -- Dustin Kirkland Mon, 26 Jan 2009 15:22:44 -0600 + +screen-profiles (1.14-0ubuntu1) jaunty; urgency=low + + * bin/mem-used: fix calculation to account for buffers and cache + + -- Dustin Kirkland Thu, 22 Jan 2009 23:03:39 -0600 + +screen-profiles (1.13-0ubuntu1) jaunty; urgency=low + + * bin/updates-available: fix bug when no updates are available + * bin/mem-used, profiles/common, profiles/ubuntu: add memory usage + information + * doc/help.txt: updated help page + * keybindings/common: F12 -> lockscreen + * debian/control, bin/*: remove dependencing on bc by using awk + * profiles/common: print the \o/ logo on a slightly darker background to + make it easier to see; print the mem-used after the mem-avail and a comma + + -- Dustin Kirkland Wed, 21 Jan 2009 23:58:56 -0600 + +screen-profiles (1.12-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * profiles/common, select-screen-profile: add support for sourcing + individual user's ~/.screenrc-keybindings file + * screen-launcher: sanitize user environment by touching sourced files, + in case they don't exist + * Updated several scripts license header to point to the GPLv3, which + is the license this package uses (not GPLv2) + + [ Dustin Kirkland and Nicolas Barcet] + * screen-profiles-helper: add HOME, SHARE, DOC global variables and use + them where possible; add functionality to change the escape key + sequence; dynamically populate current escape sequence in the help.txt + display, LP: #317675 + + -- Dustin Kirkland Wed, 21 Jan 2009 01:39:31 -0600 + +screen-profiles (1.11-0ubuntu1) jaunty; urgency=low + + * profiles/ubuntu: change cpu/memory colors to match those of the gnome + panel system monitor colors for cpu/memory + + -- Dustin Kirkland Tue, 20 Jan 2009 15:43:31 -0600 + +screen-profiles (1.10-0ubuntu1) jaunty; urgency=low + + * debian/control: debhelper 6; add explanation to the description as to why + the Suggests are useful; add Enhances note + * debian/rules: use -i in the binary-indep section, remove unneeded dh_clean + arguments + * profiles/ubuntu: remove the |-separators + * bin/updates-available: allow for faster startup by skipping the apt-check + on initial run + + -- Dustin Kirkland Mon, 19 Jan 2009 22:45:25 -0600 + +screen-profiles (1.9-0ubuntu1) jaunty; urgency=low + + [Nicolas Barcet] + * use gettext in screen-profiles-helper (LP: #317245) + + [ Dustin Kirkland ] + * keybindings/common: fix leading whitespace on new window creation + LP: #317558 + * keybindings/common, doc/help.txt: change the default escape sequence + back to ctrl-a + * profiles/common, bin/updates-available: the updates-available script now + caches its value, expiring that value every 60 minutes; so subsequent + checks are much cheaper; we can allow the screen status script to run + more frequently now, since most will be cache checks; we'll really benefit + from this in Jaunty + * debian/control: remove buildeps on gettext, po4a, which are only called + in the prebuild; depend on ${misc:Depends} with debhelper >= 5 + * debian/rules: use dh_testdir in get-orig-source, dh_clean to clean up + build; run as 'debian/rules get-orig-source'; removing dh_installdirs as + its not needed; add dh_md5sums + * debian/dirs: not needed, removing + * debian/copyright: updated to use canonical.com address, attribute + Canonical copyright, and mention Nick as co-author + * select-screen-profile.1: fixed typo + * bin/*, *: use -e for shell scripts + * bin/updates-available: cache updates available count in the user's + homedir, rather than world-writable /var/tmp (race conditions exist) + * screen-launcher.1, screen-profiles-helper.1: new manpages + + -- Dustin Kirkland Fri, 16 Jan 2009 16:45:05 -0600 + +screen-profiles (1.8-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * screen-profiles-helper: fix crash on startup, when + ~/.screen-profiles-helper does not exist + + -- Dustin Kirkland Mon, 12 Jan 2009 09:11:15 -0600 + +screen-profiles (1.7-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * screen-install, screen-remove: renamed to screen-launcher-install, + screen-launcher-uninstall + + [ Nicolas Barcet ] + * Add toggles to fix bugs LP: #315884 and LP: #315885 for help screen and + install of screen by defaults + + -- Dustin Kirkland Mon, 12 Jan 2009 00:53:20 -0600 + +screen-profiles (1.6-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * debian/install: no need to install the debian profile in ubuntu + * debian/rules: clean up comments + * profiles/ubuntu: zero-fill the hour component of the timestamp + * bin/updates-available: add some rudimentary caching mechanism for updates, + will make screen launch *much* faster on <= Ubuntu 8.10 + * screen-install, screen-remove: renamed to screen-launcher-install, + screen-launcher-uninstall + + -- Dustin Kirkland Mon, 12 Jan 2009 00:47:19 -0600 + +screen-profiles (1.5-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * bin/mem-available: added a memory count script + * bin/load-average: added a load average script + * debian/install, profiles/common, profiles/ubuntu.screenrc: + updated with mem and load status scripts + * profiles/common: fix scrollback, LP: #309393 + * profiles/*.screenrc: renamed to drop the ".screenrc" bit as this was + unnecessary; this will break early users, they will need to re-run + select-screen-profile to fix + * screen-launcher, screen-install, debian/install: install screen-launcher + to /usr/bin, drop the symlinking to ~/.screen-launcher, just install by + adding /usr/bin/screen-launcher to ~/.bashrc; install screen-launcher + to both bashrc and bash_profile + + [Nicolas Barcet] + * Allow selecting which windows are opened by default in + screen-profiles-helper + * Allow help message not to be displayed when starting + + -- Dustin Kirkland Fri, 09 Jan 2009 17:45:03 -0600 + +screen-profiles (1.4-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * profiles/*: Fix tab mangling, LP: #309882; print cpu count in black; + remove darker background color of the Ubuntu logo, name, and clock + * keybindings/common: use F7 for scrollback mode + * doc/help.txt: updated F7 documentation + + -- Dustin Kirkland Wed, 07 Jan 2009 17:44:18 -0600 + +screen-profiles (1.3-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * doc/help.txt: Updated to reflect new F-key mappings + * keybindings/common: Map F6 to detach session + * select-screen-profile: Test link against arg + * bin/cpu-count: remove whitespace + * bin/release: get rid of "(development branch)" string + + -- Dustin Kirkland Wed, 07 Jan 2009 15:43:35 -0600 + +screen-profiles (1.2-0ubuntu1) jaunty; urgency=low + + [ Jamie Strandboge ] + * update help.txt + + [ Dustin Kirkland ] + * bin/updates-available: add missing print statements + * keybindings/common: rework the common keybindings to use the F-keys + to ensure that they work in both gnome-terminal and the tty console + + [Nicolas Valcárcel] + * Spanish translations + + [ Nicolas Barcet ] + * First try at screen-profile-helper + * Allow select-screen-profile to not run interactively + * screen-profile-helper allows to create new windows + * screen-profile-helper allows to select profiles + * screen-profile-helper allows to install screen by default + * Now uses python-newt instead of python-dialog + * Add framework for useful windows creation + + -- Dustin Kirkland Tue, 06 Jan 2009 19:44:44 -0600 + +screen-profiles (1.1-0ubuntu1) jaunty; urgency=low + + [ Nicolas Barcet ] + * Key binding framework basis + * Added some sensible key bindings + * First pot and translation to french + + [ Dustin Kirkland ] + * created keybindings directory, moved keybindings there + * removed po4a directory, in favor of Nick's po directory + * changed 'less' to /usr/bin/sensible-pager, depend on debianutils + + -- Dustin Kirkland Wed, 17 Dec 2008 23:46:45 -0600 + +screen-profiles (1.0-0ubuntu1) jaunty; urgency=low + + [ Dustin Kirkland ] + * Initial upload (LP: #308789) + - ubuntu, debian, redhat, fedora profiles + - select-screen-profile utility + - add dependency on gettext-base (LP: #308509), add translation framework + - define 10,000 lines of scrollback + - ctrl-a c opens new window and prompts for name + - don't display ominous red 0! when no updates available (LP: #308215) + + [ Nicolas Barcet ] + * Allow local modification of .screenrc (LP: #308216) + * Add some nice defaults to ubuntu.screenrc + + -- Dustin Kirkland Tue, 16 Dec 2008 17:42:52 -0600 --- byobu-4.13.orig/debian/copyright +++ byobu-4.13/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Dustin Kirkland +Sun, 14 Dec 2008 13:11:37 -0600 + +It was downloaded from: http://launchpad.net/byobu + +Upstream Authors: + Dustin Kirkland + Dustin Kirkland + Nick Barcet + +Copyright: + Copyright (C) 2008-2009 Canonical Ltd. + Copyright (C) 2009 Dustin Kirkland + + All rights reserved. + +License: + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation version 3 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + On Debian systems, the complete text of the GNU General Public + License, version 3, can be found in /usr/share/common-licenses/GPL-3. + +The Ubuntu packaging: + Copyright (C) 2008-2009 Canonical Ltd. + Copyright (C) 2009 Dustin Kirkland + released under the GPL-3. --- byobu-4.13.orig/debian/control +++ byobu-4.13/debian/control @@ -0,0 +1,25 @@ +Source: byobu +Section: misc +Priority: optional +Maintainer: Dustin Kirkland +Standards-Version: 3.9.1 +Build-Depends: debhelper (>= 6), gettext-base, automake, autoconf +Homepage: http://launchpad.net/byobu +Vcs-Bzr: http://bazaar.launchpad.net/~kirkland/byobu/trunk + +Package: byobu +Architecture: all +Depends: ${misc:Depends}, debconf (>= 0.5) | debconf-2.0, screen, gettext-base, python, python-newt (>= 0.52.2-11) +Suggests: apport, vim, w3m, po-debconf, update-notifier-common, lsb-release +Provides: screen-profiles, screen-profiles-extras, byobu-extras +Replaces: screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0), byobu-extras (<< 2.17) +Breaks: screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0), byobu-extras (<< 2.17) +Enhances: screen +Description: a set of useful profiles and a profile-switcher for GNU screen + byobu includes a set of profiles for the GNU screen window manager. + These profiles are quite useful on server machines which are not running + a graphical desktop. The 'screen' command provides a number of advanced + features are not necessarily exposed in the default profile. These profiles + provide features such as status bars, clocks, notifiers (reboot required, + updates available), etc. The profile-switcher allows users to quickly switch + their .screenrc to any of the available profiles. --- byobu-4.13.orig/debian/source_byobu.py +++ byobu-4.13/debian/source_byobu.py @@ -0,0 +1,13 @@ +'''apport package hook for byobu + +(c) 2009 Canonical Ltd. +Author: Dustin Kirkland +''' + +from apport.hookutils import * +from os import path + +def add_info(report): + attach_related_packages(report, ['byobu*', 'screen*']) + report['Binaries'] = command_output(['sh', '-c', 'ls -alF /usr/bin/screen* /usr/bin/byobu*']) + attach_file_if_exists(report, path.expanduser('~/.screenrc'), 'ScreenRC') --- byobu-4.13.orig/debian/install +++ byobu-4.13/debian/install @@ -0,0 +1,5 @@ +/usr +../../etc/byobu/socketdir etc/byobu/ +../../etc/byobu/statusrc etc/byobu/ +../../debian/source_byobu.py usr/share/apport/package-hooks +../../debian/lintian/byobu usr/share/lintian/overrides --- byobu-4.13.orig/debian/config +++ byobu-4.13/debian/config @@ -0,0 +1,11 @@ +#! /bin/sh -e + +. /usr/share/debconf/confmodule +db_version 2.0 + +db_input medium byobu/launch-by-default || true +db_go + +exit 0 + +# vi: syntax=sh ts=4 noexpandtab --- byobu-4.13.orig/debian/po/en_GB.po +++ byobu-4.13/debian/po/en_GB.po @@ -0,0 +1,48 @@ +# English (United Kingdom) translation for byobu +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the byobu package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: byobu\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-02-05 00:55-0800\n" +"PO-Revision-Date: 2010-02-09 10:59+0000\n" +"Last-Translator: Nick Trew \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-02-10 04:44+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to launch Byobu at shell login for all users?" +msgstr "Do you want to launch Byobu at shell login for all users?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." +msgstr "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." +msgstr "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." --- byobu-4.13.orig/debian/po/pt.po +++ byobu-4.13/debian/po/pt.po @@ -0,0 +1,42 @@ +# Portuguese translation for byobu +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the byobu package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: byobu\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-02-05 00:55-0800\n" +"PO-Revision-Date: 2010-04-05 13:18+0000\n" +"Last-Translator: Tiago Silva \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-04-06 04:02+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to launch Byobu at shell login for all users?" +msgstr "Deseja lançar Byobu na entrada em shell para todos os utilizadores?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." +msgstr "" --- byobu-4.13.orig/debian/po/es.po +++ byobu-4.13/debian/po/es.po @@ -0,0 +1,51 @@ +# Spanish translation for byobu +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the byobu package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: byobu\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-02-05 00:55-0800\n" +"PO-Revision-Date: 2010-03-27 18:26+0000\n" +"Last-Translator: DiegoJ \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-03-28 03:47+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to launch Byobu at shell login for all users?" +msgstr "" +"¿Quiere lanzar Byobu cuando cualquier usuario inicie sesión por terminal?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." +msgstr "" +"Byobu puede lanzarse automáticamente al iniciar sesión (por ejemplo, " +"consola, ssh), proporcionando un gestor de ventanas acoplable/desacoplable " +"en la línea de órdenes." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." +msgstr "" +"Si selecciona esta opción, Byobu instalará un enlace simbólico en " +"/etc/profile.d. Esta opción es global al sistema, para todos los usuarios " +"que se registren en el sistema. Los usuarios individuales pueden " +"deshabilitar esta opción tocando ~/.byobu/disable-autolaunch o accediendo a " +"la configuración con «byobu-config»." --- byobu-4.13.orig/debian/po/de.po +++ byobu-4.13/debian/po/de.po @@ -0,0 +1,50 @@ +# German translation for byobu +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the byobu package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: byobu\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-02-05 00:55-0800\n" +"PO-Revision-Date: 2010-02-27 23:46+0000\n" +"Last-Translator: hintze \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-03-01 05:02+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to launch Byobu at shell login for all users?" +msgstr "" +"Soll Byobu bei allen Benutzern beim Anmelden in der Shell gestartet werden?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." +msgstr "" +"Byobu kann beim Anmelden automatisch gestartet werden (z.B. Konsole, SSH), " +"um einen anfügbaren/ablösbaren Fenstermanager in der Kommandozeile zu bieten." + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." +msgstr "" +"Wird diese Option gewählt, wird Byobu einen Symlink in /etc/profile.d " +"erstellen. Diese Einstellung ist Systemweit und gilt für jeden Benutzer, der " +"sich an dieses System anmeldet. Die einzelnen Benutzer können dies " +"abschalten, indem sie die Datei ~/.byobu/disable-autolaunch anlegen oder " +"Byobu mit 'byobu-config' konfigurieren." --- byobu-4.13.orig/debian/po/ru.po +++ byobu-4.13/debian/po/ru.po @@ -0,0 +1,46 @@ +# Russian translation for byobu +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the byobu package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: byobu\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-02-05 00:55-0800\n" +"PO-Revision-Date: 2010-03-19 15:49+0000\n" +"Last-Translator: Vadim Rutkovsky \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-03-20 04:48+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to launch Byobu at shell login for all users?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Byobu can launch automatically at login (e.g. console, ssh), providing an " +"attachable/detachable window manager on the command line." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"If you select this option, Byobu will install a symlink in /etc/profile.d. " +"This setting is system-wide, for all users logging into the system. " +"Individual users can disable this by touching ~/.byobu/disable-autolaunch, " +"or configuring with 'byobu-config'." +msgstr "" +"При выборе этой опции, Byobu добавит ссылку в каталог /etc/profile.d. Эта " +"настройка влияет на всех пользователей, которые войдут в систему. Отдельные " +"пользователи могут быть отключены, создав файл ~/.byobu/disable-autolaunch " +"или в конфигурации с помощью команды 'byobu-config'." --- byobu-4.13.orig/debian/lintian/byobu +++ byobu-4.13/debian/lintian/byobu @@ -0,0 +1,2 @@ +byobu: binary-without-manpage +# The manpages are, of course, part of the original screen package.