summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-09-20 18:54:21 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-09-20 18:54:21 +0000
commitf82598ca2df5beae705823bd5105af859cae2cdb (patch)
treeeb4357bab2a367cf81dc50fd0a86434a88f047a9
parentb29d4affd855d0955865820dabf34182a2458da9 (diff)
1.0.
-rw-r--r--CHANGES38
-rw-r--r--GNUmakefile4
-rw-r--r--Makefile4
-rw-r--r--tools/dist.mk4
4 files changed, 43 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index a11c13e4..58eb0b74 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,39 @@
+CHANGES FROM 0.9 TO 1.0, 20 Sept 2009
+
+* Option to alter the format of the window title set by tmux.
+* Backoff for a while after multiple incorrect password attempts.
+* Quick display of pane numbers (C-b q).
+* Better choose-window, choose-session commands and a new choose-client command.
+* Option to request multiple responses when using command-prompt.
+* Improved environment handling.
+* Combine wrapped lines when pasting.
+* Option to override terminal settings (terminal-overrides).
+* Use the full range of ACS characters for drawing pane separator lines.
+* Customisable mode keys.
+* Status line colour options, with embedded colours in status-left/right, and
+ an option to centre the window list.
+* Much improved layouts, including both horizontal and vertical splitting.
+* Optional visual bell, activity and content indications.
+* Set the utf8 and status-utf8 options when the server is started with -u.
+* display-message command to show a message in the status line, by default some
+ information about the current window.
+* Improved current process detection on NetBSD.
+* unlink-window -k is now the same as kill-window.
+* attach-session now works from inside tmux.
+* A system-wide configuration file, /etc/tmux.conf.
+* A number of new commands in copy mode, including searching.
+* Panes are now specified using the target (-t) notation.
+* -t now accepts fnmatch(3) patterns and looks for prefixes.
+* Translate \r into \n when pasting.
+* Support for binding commands to keys without the prefix key
+* Support for alternate screen (terminfo smcup/rmcup).
+* Maintain data that goes off screen after reducing the window size, so it can
+ be restored when the size is increased again.
+* New if-shell command to test a shell command before running a tmux command.
+* tmux now works as the shell.
+* Man page reorganisation.
+* Many minor additions, much code tidying and several bug fixes.
+
CHANGES FROM 0.8 TO 0.9, 01 July 2009
* Major changes to build infrastructure: cleanup of makefiles and addition
@@ -1322,7 +1358,7 @@ The list of older changes is below.
(including mutt, emacs). No status bar yet and no key remapping or other
customisation.
-$Id: CHANGES,v 1.299 2009-07-01 22:15:16 nicm Exp $
+$Id: CHANGES,v 1.300 2009-09-20 18:54:21 nicm Exp $
LocalWords: showw utf UTF fulvio ciriaco joshe OSC APC gettime abc DEF OA clr
LocalWords: rivo nurges lscm Erdely eol smysession mysession ek dstname RB ms
diff --git a/GNUmakefile b/GNUmakefile
index a5bc8a65..5b47304b 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,10 +1,10 @@
-# $Id: GNUmakefile,v 1.113 2009-08-26 08:58:39 nicm Exp $
+# $Id: GNUmakefile,v 1.114 2009-09-20 18:54:21 nicm Exp $
.PHONY: clean
VERSION= 1.0
-FDEBUG= 1
+#FDEBUG= 1
CC?= gcc
CFLAGS+= -DBUILD="\"$(VERSION)\""
diff --git a/Makefile b/Makefile
index 568a82f4..62ba246d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
-# $Id: Makefile,v 1.148 2009-08-26 08:58:39 nicm Exp $
+# $Id: Makefile,v 1.149 2009-09-20 18:54:21 nicm Exp $
.SUFFIXES: .c .o
.PHONY: clean
VERSION= 1.0
-FDEBUG= 1
+#FDEBUG= 1
CC?= cc
CFLAGS+= -DBUILD="\"$(VERSION)\""
diff --git a/tools/dist.mk b/tools/dist.mk
index 7e8429a5..2c6810fb 100644
--- a/tools/dist.mk
+++ b/tools/dist.mk
@@ -1,6 +1,6 @@
-# $Id: dist.mk,v 1.4 2009-07-01 22:10:06 nicm Exp $
+# $Id: dist.mk,v 1.5 2009-09-20 18:54:21 nicm Exp $
-VERSION= 0.9
+VERSION= 1.0
DISTDIR= tmux-${VERSION}
DISTFILES= *.[ch] Makefile GNUmakefile configure tmux.1 \