releasing 5.10

This commit is contained in:
Dustin Kirkland 2012-02-14 14:37:48 -06:00
commit f7c3237038
2 changed files with 14 additions and 6 deletions

7
debian/changelog vendored
View file

@ -1,8 +1,9 @@
byobu (5.10) unreleased; urgency=low
byobu (5.10-0ubuntu1) precise; urgency=low
* UNRELEASED
* usr/bin/byobu-ctrl-a: LP: #931345
- fix ctrl-a support for tmux 1.5 and 1.6
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 12 Feb 2012 11:07:46 -0600
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 14 Feb 2012 14:37:47 -0600
byobu (5.9-0ubuntu1) precise; urgency=low

View file

@ -78,7 +78,7 @@ case "$bind_to" in
$BYOBU_BACKEND -X at 0 source "$BYOBU_CONFIG_DIR/profile"
;;
tmux)
$BYOBU_SED -i -e "/^set -g prefix /d" -e "/ send-prefix/d" -e "/^unbind-key -n C-a/d" "$keybindings"
$BYOBU_SED -i -e "/^set -g prefix/d" -e "/ send-prefix/d" -e "/^unbind-key -n C-a/d" "$keybindings"
echo "set -g prefix F12" >> "$keybindings"
echo "unbind-key -n C-a" >> "$keybindings"
$BYOBU_BACKEND source "$BYOBU_PREFIX/share/byobu/profiles/tmuxrc"
@ -96,9 +96,16 @@ case "$bind_to" in
$BYOBU_BACKEND -X at 0 source "$BYOBU_CONFIG_DIR/profile"
;;
tmux)
$BYOBU_SED -i -e "/^set -g prefix /d" -e "/ send-prefix/d" -e "/^unbind-key -n C-a/d" "$keybindings"
$BYOBU_SED -i -e "/^set -g prefix/d" -e "/ send-prefix/d" -e "/^unbind-key -n C-a/d" "$keybindings"
echo "unbind-key -n C-a" >> "$keybindings"
if $BYOBU_BACKEND -V | grep " 1.5"; then
# tmux 1.5 supports a list of prefixes
echo "set -g prefix ^A,F12" >> "$keybindings"
else
# tmux 1.6 and above supports prefix and prefix2
echo "set -g prefix ^A" >> "$keybindings"
echo "set -g prefix2 ^A" >> "$keybindings"
fi
echo "bind a send-prefix" >> "$keybindings"
$BYOBU_BACKEND source "$BYOBU_PREFIX/share/byobu/profiles/tmuxrc"
;;