From: root Date: Tue, 27 Dec 2005 12:23:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=72025feefd420b924e1cd0243b681bafd978680e;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 3da7c348..c86a3ecb 100644 --- a/Changes +++ b/Changes @@ -10,7 +10,7 @@ WISH: meta-tagging of data by regex/master process (my dream project) WISH: OnTheSpot editing, or maybe switch to miiiiiiif WISH: just for fun, do shade and tint with XRender. -6.1 +6.1 Tue Dec 27 13:23:40 CET 2005 - update iso8859-7 table (euro and drachma round-trip et al.). - fix a crash when the selection scrolls out of the scrollback while the user still drags. diff --git a/doc/rxvt.1.html b/doc/rxvt.1.html index c726af63..2368b8d0 100644 --- a/doc/rxvt.1.html +++ b/doc/rxvt.1.html @@ -48,7 +48,7 @@


DESCRIPTION

-

rxvt-unicode, version 6.0, is a colour vt102 terminal +

rxvt-unicode, version 6.1, is a colour vt102 terminal emulator intended as an xterm(1) replacement for users who do not require features such as Tektronix 4014 emulation and toolkit-style configurability. As a result, rxvt-unicode uses much less swap space -- @@ -1435,8 +1435,10 @@ to select a word; Left triple-click to select the entire logical line

Starting a selection while pressing the Meta key (or Meta+Ctrl keys) -(Compile: frills) will create a rectangular selection instead of a normal -one.

+(Compile: frills) will create a rectangular selection instead of a +normal one. In this mode, every selected row becomes its own line in the +selection, and trailing whitespace is visually underlined and removed from +the selection.

Insertion:
diff --git a/doc/rxvt.1.man.in b/doc/rxvt.1.man.in index 43ef7b96..d106960f 100644 --- a/doc/rxvt.1.man.in +++ b/doc/rxvt.1.man.in @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "rxvt 1" -.TH rxvt 1 "2005-12-22" "6.0" "RXVT-UNICODE" +.TH rxvt 1 "2005-12-27" "6.1" "RXVT-UNICODE" .SH "NAME" rxvt\-unicode (ouR XVT, unicode) \- (a VT102 emulator for the X window system) .SH "SYNOPSIS" @@ -1101,8 +1101,10 @@ to select a word; Left triple-click to select the entire logical line \&\fBtripleclickwords\fR. .Sp Starting a selection while pressing the \fBMeta\fR key (or \fBMeta+Ctrl\fR keys) -(Compile: \fIfrills\fR) will create a rectangular selection instead of a normal -one. +(Compile: \fIfrills\fR) will create a rectangular selection instead of a +normal one. In this mode, every selected row becomes its own line in the +selection, and trailing whitespace is visually underlined and removed from +the selection. .IP "\fBInsertion\fR:" 4 .IX Item "Insertion:" Pressing and releasing the Middle mouse button (or \fBShift-Insert\fR) in diff --git a/doc/rxvt.1.txt b/doc/rxvt.1.txt index 9f24267c..57f4ea56 100644 --- a/doc/rxvt.1.txt +++ b/doc/rxvt.1.txt @@ -6,7 +6,7 @@ SYNOPSIS rxvt [options] [-e command [ args ]] DESCRIPTION - rxvt-unicode, version 6.0, is a colour vt102 terminal emulator intended + rxvt-unicode, version 6.1, is a colour vt102 terminal emulator intended as an *xterm*(1) replacement for users who do not require features such as Tektronix 4014 emulation and toolkit-style configurability. As a result, rxvt-unicode uses much less swap space -- a significant @@ -938,7 +938,9 @@ TEXT SELECTION AND INSERTION Starting a selection while pressing the Meta key (or Meta+Ctrl keys) (Compile: *frills*) will create a rectangular selection instead of a - normal one. + normal one. In this mode, every selected row becomes its own line in + the selection, and trailing whitespace is visually underlined and + removed from the selection. Insertion: Pressing and releasing the Middle mouse button (or Shift-Insert) in diff --git a/src/feature.h b/src/feature.h index c2e64f8c..5d95e1dd 100644 --- a/src/feature.h +++ b/src/feature.h @@ -40,7 +40,7 @@ * NOTE: * * Most of these configuration options have not been tested within the new - * rxvt-unicode framework. Changing them might work, might have no effect, + * rxvt-unicode framework. Changing them should work, might have no effect, * destroy your disks or have any other effects. You may freely try (and * report bugs, too!), but don't _expect_ them to work. */ @@ -365,15 +365,9 @@ */ /* #define ESCZ_ANSWER "\033[?1;2C" */ -/* - * Check the current value of the window-time/icon-name and avoid - * re-setting it to the same value -- avoids unnecessary window refreshes - */ -//#define SMART_WINDOW_TITLE // currently disabled, needs to be reimplemented - /* * Allow foreground/background colour to be changed with an - * xterm escape sequence "\E]39;colour^G" -- still experimental + * xterm escape sequence "\E]39;colour^G" */ #define XTERM_COLOR_CHANGE @@ -400,7 +394,7 @@ /* * Default number of lines in the scrollback buffer */ -#define SAVELINES 64 +#define SAVELINES 1000 /* * Provide termcap/terminfo bw support (wrap backwards on cub1) diff --git a/src/main.C b/src/main.C index b105af0f..8e3b184f 100644 --- a/src/main.C +++ b/src/main.C @@ -946,7 +946,6 @@ rxvt_term::set_fonts () void rxvt_term::set_string_property (Atom prop, const char *str, int len) { - // TODO: SMART_WINDOW_TITLE XChangeProperty (display->display, parent[0], prop, XA_STRING, 8, PropModeReplace, (const unsigned char *)str, len >= 0 ? len : strlen (str)); @@ -954,7 +953,6 @@ void rxvt_term::set_string_property (Atom prop, const char *str, int len) void rxvt_term::set_utf8_property (Atom prop, const char *str, int len) { - // TODO: SMART_WINDOW_TITLE wchar_t *ws = rxvt_mbstowcs (str, len); char *s = rxvt_wcstoutf8 (ws); diff --git a/src/version.h b/src/version.h index 843b78ff..4f7f742d 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ // VERSION _must_ be \d.\d+ -#define VERSION "6.0" -#define DATE "2005-12-24" +#define VERSION "6.1" +#define DATE "2005-12-27"