ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvt.7.pod
Revision 1.249 - (view) (download) (annotate) - [select for diffs]
Sun May 9 05:53:10 2021 UTC (3 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_25, rxvt-unicode-rel-9_26
Changes since 1.248: +29 -0 lines
Diff to previous 1.248
Add support for systemd socket activation

Revision 1.248 - (view) (download) (annotate) - [select for diffs]
Fri May 7 19:03:11 2021 UTC (3 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.247: +95 -38 lines
Diff to previous 1.247
Implement xterm SGR mouse mode

Revision 1.247 - (view) (download) (annotate) - [select for diffs]
Sat Aug 8 23:39:25 2020 UTC (3 years, 10 months ago) by root
Branch: MAIN
Changes since 1.246: +1 -1 lines
Diff to previous 1.246
*** empty log message ***

Revision 1.246 - (view) (download) (annotate) - [select for diffs]
Tue Sep 17 19:13:37 2019 UTC (4 years, 9 months ago) by root
Branch: MAIN
Changes since 1.245: +16 -5 lines
Diff to previous 1.245
*** empty log message ***

Revision 1.245 - (view) (download) (annotate) - [select for diffs]
Thu Jul 14 05:33:26 2016 UTC (7 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.244: +0 -23 lines
Diff to previous 1.244
Move old bg image frontend to background extension.

Revision 1.244 - (view) (download) (annotate) - [select for diffs]
Wed Jun 22 07:31:49 2016 UTC (8 years ago) by root
Branch: MAIN
Changes since 1.243: +1 -1 lines
Diff to previous 1.243
*** empty log message ***

Revision 1.243 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 12:03:55 2016 UTC (8 years ago) by sf-exg
Branch: MAIN
Changes since 1.242: +2 -0 lines
Diff to previous 1.242
24-bit direct color support (patch by Fengguang Wu)

Support directly setting RGB fg/bg colors via ISO-8613-3 24-bit
ANSI color escapes:

  ESC[38;2;<r>;<g>;<b>m Select RGB foreground color
  ESC[48;2;<r>;<g>;<b>m Select RGB background color

The killer applications for me are vim in tmux. It'll not only modernize
their look and feeling, but also bring more eye friendly color schemes.
Very helpful for long time programmers.

To avoid memory overheads and keep the patch non-intrusive, it takes the
approach to adapt the nearest color in an hidden 6x6x4 (88-color mode)
or 7x7x5 (256-color mode) color cube to the new 24-bit RGB color.

The pros/cons are:

+) least memory footprint (close to 0)
   comparing to konsole, gnome-terminal etc. real 24-bit arrays

+) exact colors and excellent user feelings
   comparing to xterm, mlterm, etc. approximating to 256 palette

+) usable in both the existing 88/256-color modes

   Most vim GUI color schemes show up the same as gvim in rxvt-unicode's
   88-color mode, not to mention the 256-color mode. Typical applications
   only use one or two dozens of colors at the same time.

-) may not be able to show 2+ close 24-bit colors

   RGB colors close to each other will likely fall into the same slot in
   the 6x6x4 or 7x7x5 color cube. If necessary, it could be improved
   effectively by implementing some collision avoidance logic, trying to
   find empty/eldest slot in the +1/-1 r/g/b indices (ie. 3-8 neighbors).

The CPU overheads of map_rgb24_color() look ignorable: I feel no
perceptible slow down when doing vim operations in 24-bit color mode.

A micro benchmark running a test script from [1]:

% time (for i in {1..100}; do 24-bit-color.sh; done)

vanilla rxvt-unicode
====================
  2.42s user 1.88s system 31% cpu 13.555 total
  2.59s user 1.74s system 31% cpu 13.615 total
  2.46s user 1.85s system 31% cpu 13.631 total

THIS PATCH (adapt hidden color cube to 24-bit)
==============================================
  2.33s user 1.97s system 31% cpu 13.598 total
  2.46s user 1.89s system 31% cpu 13.613 total
  2.51s user 1.82s system 31% cpu 13.556 total

https://github.com/spudowiar/rxvt-unicode (real 24-bit array)
=============================================================
  2.61s user 1.75s system 31% cpu 13.721 total
  2.48s user 1.82s system 31% cpu 13.566 total
  2.60s user 1.76s system 31% cpu 13.631 total

USE_256_COLORS is defined in all the above rxvt-unicode builds.

References:

[1] True Colour (16 million colours) support in various terminal
    applications and terminals
    https://gist.github.com/XVilka/8346728

[2] https://en.wikipedia.org/wiki/ANSI_escape_code#Colors

Revision 1.242 - (view) (download) (annotate) - [select for diffs]
Sat May 14 08:31:26 2016 UTC (8 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.241: +3 -2 lines
Diff to previous 1.241
Implement xterm focus reporting mode.

Patch by Daniel Hahler.

Revision 1.241 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 16:27:34 2015 UTC (9 years, 4 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_22
Changes since 1.240: +1 -1 lines
Diff to previous 1.240
Fedora Core is now Fedora.

Revision 1.240 - (view) (download) (annotate) - [select for diffs]
Fri Jan 16 09:00:47 2015 UTC (9 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.239: +5 -2 lines
Diff to previous 1.239
Doc fix.

Revision 1.239 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 14:40:24 2014 UTC (9 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_21
Changes since 1.238: +19 -0 lines
Diff to previous 1.238
cvvis faq

Revision 1.238 - (view) (download) (annotate) - [select for diffs]
Fri Dec 5 03:37:18 2014 UTC (9 years, 6 months ago) by root
Branch: MAIN
Changes since 1.237: +7 -7 lines
Diff to previous 1.237
*** empty log message ***

Revision 1.237 - (view) (download) (annotate) - [select for diffs]
Wed Nov 26 09:08:42 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.236: +6 -10 lines
Diff to previous 1.236
Update FAQ.

Revision 1.236 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 23:30:54 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.235: +4 -21 lines
Diff to previous 1.235
Update FAQ.

Revision 1.235 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 16:01:02 2014 UTC (9 years, 7 months ago) by root
Branch: MAIN
Changes since 1.234: +29 -20 lines
Diff to previous 1.234
*** empty log message ***

Revision 1.234 - (view) (download) (annotate) - [select for diffs]
Mon Nov 24 21:46:04 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.233: +9 -0 lines
Diff to previous 1.233
Add DEC private mode 12.

Revision 1.233 - (view) (download) (annotate) - [select for diffs]
Thu Aug 21 15:58:29 2014 UTC (9 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.232: +2 -0 lines
Diff to previous 1.232
Add DECSCUSR xterm extension to set the cursor to a vertical bar.

Revision 1.232 - (view) (download) (annotate) - [select for diffs]
Mon Aug 4 11:15:57 2014 UTC (9 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.231: +10 -10 lines
Diff to previous 1.231
Doc fixes.

Revision 1.231 - (view) (download) (annotate) - [select for diffs]
Sun Aug 3 15:43:00 2014 UTC (9 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.230: +17 -17 lines
Diff to previous 1.230
Doc fixes.

Revision 1.230 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 10:08:48 2014 UTC (10 years ago) by sf-exg
Branch: MAIN
Changes since 1.229: +1 -1 lines
Diff to previous 1.229
Fix typo.

Revision 1.229 - (view) (download) (annotate) - [select for diffs]
Wed Feb 5 01:39:38 2014 UTC (10 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_20
Changes since 1.228: +2 -2 lines
Diff to previous 1.228
*** empty log message ***

Revision 1.228 - (view) (download) (annotate) - [select for diffs]
Thu May 30 18:49:16 2013 UTC (11 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_19
Changes since 1.227: +0 -2 lines
Diff to previous 1.227
fix some pod errors

Revision 1.227 - (view) (download) (annotate) - [select for diffs]
Mon May 6 05:37:11 2013 UTC (11 years, 1 month ago) by root
Branch: MAIN
Changes since 1.226: +27 -27 lines
Diff to previous 1.226
*** empty log message ***

Revision 1.226 - (view) (download) (annotate) - [select for diffs]
Sun Apr 14 10:56:32 2013 UTC (11 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.225: +23 -23 lines
Diff to previous 1.225
Doc fix.

Revision 1.225 - (view) (download) (annotate) - [select for diffs]
Tue Mar 26 14:16:46 2013 UTC (11 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.224: +15 -1 lines
Diff to previous 1.224
Add support for the set cursor style (DECSCUSR) control function.

Revision 1.224 - (view) (download) (annotate) - [select for diffs]
Mon Nov 5 13:18:17 2012 UTC (11 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_16, rxvt-unicode-rel-9_17, rxvt-unicode-rel-9_18
Changes since 1.223: +2 -3 lines
Diff to previous 1.223
Doc fix.

Revision 1.223 - (view) (download) (annotate) - [select for diffs]
Tue Jul 31 21:12:18 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.222: +5 -5 lines
Diff to previous 1.222
echo -n => printf

Revision 1.222 - (view) (download) (annotate) - [select for diffs]
Tue Jun 19 18:22:26 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.221: +0 -4 lines
Diff to previous 1.221
oops

Revision 1.221 - (view) (download) (annotate) - [select for diffs]
Tue Jun 19 18:17:56 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.220: +4 -0 lines
Diff to previous 1.220
*** empty log message ***

Revision 1.220 - (view) (download) (annotate) - [select for diffs]
Thu Jun 7 16:04:31 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.219: +1 -0 lines
Diff to previous 1.219
visual selection

Revision 1.219 - (view) (download) (annotate) - [select for diffs]
Sat Feb 4 21:47:06 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.218: +3 -19 lines
Diff to previous 1.218
Remove deprecated libAfterImage image backend.

Revision 1.218 - (view) (download) (annotate) - [select for diffs]
Thu Jan 5 03:01:45 2012 UTC (12 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_15
Changes since 1.217: +4 -1 lines
Diff to previous 1.217
dah

Revision 1.217 - (view) (download) (annotate) - [select for diffs]
Wed Dec 14 12:28:26 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_14
Changes since 1.216: +1 -1 lines
Diff to previous 1.216
Doc fix.

Revision 1.216 - (view) (download) (annotate) - [select for diffs]
Sun Nov 13 16:03:31 2011 UTC (12 years, 7 months ago) by mikachu
Branch: MAIN
Changes since 1.215: +5 -0 lines
Diff to previous 1.215
Apply startup notification patch from Michael Stapelberg

Revision 1.215 - (view) (download) (annotate) - [select for diffs]
Sun Jul 31 09:12:01 2011 UTC (12 years, 11 months ago) by root
Branch: MAIN
Changes since 1.214: +2 -2 lines
Diff to previous 1.214
*** empty log message ***

Revision 1.214 - (view) (download) (annotate) - [select for diffs]
Sat Apr 30 20:18:51 2011 UTC (13 years, 2 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_11, rel-9_12
Changes since 1.213: +8 -20 lines
Diff to previous 1.213
Fix example of keysym mappings.

Revision 1.213 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 10:51:06 2011 UTC (13 years, 2 months ago) by root
Branch: MAIN
Changes since 1.212: +6 -5 lines
Diff to previous 1.212
*** empty log message ***

Revision 1.212 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 09:59:55 2011 UTC (13 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.211: +3 -3 lines
Diff to previous 1.211
Fix typos.

Revision 1.211 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 09:36:38 2011 UTC (13 years, 2 months ago) by root
Branch: MAIN
Changes since 1.210: +4 -2 lines
Diff to previous 1.210
*** empty log message ***

Revision 1.210 - (view) (download) (annotate) - [select for diffs]
Wed Jan 5 17:00:49 2011 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.209: +3 -3 lines
Diff to previous 1.209
Doc fix.

Revision 1.209 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 10:01:53 2011 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.208: +1 -1 lines
Diff to previous 1.208
Enable gdk-pixbuf support by default.

Revision 1.208 - (view) (download) (annotate) - [select for diffs]
Sat Dec 18 12:20:18 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.207: +3 -3 lines
Diff to previous 1.207
Doc fixes.

Revision 1.207 - (view) (download) (annotate) - [select for diffs]
Mon Dec 13 16:47:27 2010 UTC (13 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-9_10
Changes since 1.206: +4 -4 lines
Diff to previous 1.206
prepare release, fix faq package download url, re-make docs with 5.10 perl

Revision 1.206 - (view) (download) (annotate) - [select for diffs]
Sat Dec 11 22:59:02 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.205: +1 -1 lines
Diff to previous 1.205
Fix typo.

Revision 1.205 - (view) (download) (annotate) - [select for diffs]
Thu Dec 9 10:03:56 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.204: +1 -1 lines
Diff to previous 1.204
Doc fixes.

Revision 1.204 - (view) (download) (annotate) - [select for diffs]
Thu Nov 25 02:49:37 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.203: +1 -1 lines
Diff to previous 1.203
*** empty log message ***

Revision 1.203 - (view) (download) (annotate) - [select for diffs]
Tue Nov 23 23:02:09 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.202: +3 -2 lines
Diff to previous 1.202
*** empty log message ***

Revision 1.202 - (view) (download) (annotate) - [select for diffs]
Tue Nov 23 22:58:08 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.201: +54 -1 lines
Diff to previous 1.201
*** empty log message ***

Revision 1.201 - (view) (download) (annotate) - [select for diffs]
Tue Nov 23 18:52:13 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.200: +3 -0 lines
Diff to previous 1.200
Doc fixes.

Revision 1.200 - (view) (download) (annotate) - [select for diffs]
Thu Nov 18 17:28:12 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.199: +7 -52 lines
Diff to previous 1.199
Cleanup OSC 20; remove support for multiple commands and for commands
that set scale and position relative to current value.

Revision 1.199 - (view) (download) (annotate) - [select for diffs]
Thu Nov 4 12:13:20 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_09
Changes since 1.198: +4 -1 lines
Diff to previous 1.198
Doc fixes.

Revision 1.198 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 10:46:57 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.197: +4 -3 lines
Diff to previous 1.197
Update Changes and docs.

Revision 1.197 - (view) (download) (annotate) - [select for diffs]
Wed Oct 13 23:36:00 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.196: +0 -4 lines
Diff to previous 1.196
Update Changes and docs.

Revision 1.196 - (view) (download) (annotate) - [select for diffs]
Fri Sep 3 10:16:12 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.195: +8 -2 lines
Diff to previous 1.195
Add gdk-pixbuf docs.

Revision 1.195 - (view) (download) (annotate) - [select for diffs]
Fri Sep 3 09:57:30 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.194: +4 -3 lines
Diff to previous 1.194
Clarify afterimage features.

Revision 1.194 - (view) (download) (annotate) - [select for diffs]
Thu Sep 2 14:39:24 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.193: +1 -1 lines
Diff to previous 1.193
Fix typo.

Revision 1.193 - (view) (download) (annotate) - [select for diffs]
Sun Aug 22 09:37:00 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.192: +1 -1 lines
Diff to previous 1.192
Doc fix.

Revision 1.192 - (view) (download) (annotate) - [select for diffs]
Thu Aug 19 18:00:54 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.191: +4 -21 lines
Diff to previous 1.191
Update backspace key docs to match reality.

Revision 1.191 - (view) (download) (annotate) - [select for diffs]
Wed Aug 18 22:48:08 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.190: +1 -1 lines
Diff to previous 1.190
Fix typos.

Revision 1.190 - (view) (download) (annotate) - [select for diffs]
Sun May 23 07:37:25 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.189: +1 -1 lines
Diff to previous 1.189
Fix typos.

Revision 1.189 - (view) (download) (annotate) - [select for diffs]
Sun May 23 00:48:53 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
Changes since 1.188: +27 -16 lines
Diff to previous 1.188
256c enable docs, fix speling to colour everywhere

Revision 1.188 - (view) (download) (annotate) - [select for diffs]
Sat Apr 24 20:14:27 2010 UTC (14 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.187: +1 -1 lines
Diff to previous 1.187
Fix typo.

Revision 1.187 - (view) (download) (annotate) - [select for diffs]
Mon Apr 19 11:02:34 2010 UTC (14 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.186: +1 -1 lines
Diff to previous 1.186
Doc fix.

Revision 1.186 - (view) (download) (annotate) - [select for diffs]
Sun Apr 18 11:11:28 2010 UTC (14 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.185: +2 -1 lines
Diff to previous 1.185
Add OSC 19 to change highlightTextColor.

Revision 1.185 - (view) (download) (annotate) - [select for diffs]
Sun Apr 18 11:06:46 2010 UTC (14 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.184: +0 -2 lines
Diff to previous 1.184
Remove deprecated OSC 18 / 19.

Revision 1.184 - (view) (download) (annotate) - [select for diffs]
Fri Apr 2 15:14:59 2010 UTC (14 years, 3 months ago) by root
Branch: MAIN
Changes since 1.183: +2 -2 lines
Diff to previous 1.183
*** empty log message ***

Revision 1.183 - (view) (download) (annotate) - [select for diffs]
Thu Apr 1 08:10:22 2010 UTC (14 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.182: +4 -6 lines
Diff to previous 1.182
Hook 256-color support in configure.

Revision 1.182 - (view) (download) (annotate) - [select for diffs]
Sun Mar 28 20:58:25 2010 UTC (14 years, 3 months ago) by root
Branch: MAIN
Changes since 1.181: +1 -1 lines
Diff to previous 1.181
*** empty log message ***

Revision 1.181 - (view) (download) (annotate) - [select for diffs]
Tue Jan 26 07:46:58 2010 UTC (14 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.180: +3 -3 lines
Diff to previous 1.180
Fix typos.

Revision 1.180 - (view) (download) (annotate) - [select for diffs]
Sat Jan 23 14:17:52 2010 UTC (14 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.179: +2 -2 lines
Diff to previous 1.179
Fix typos.

Revision 1.179 - (view) (download) (annotate) - [select for diffs]
Sat Dec 26 10:24:04 2009 UTC (14 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-9_07
Changes since 1.178: +7 -2 lines
Diff to previous 1.178
*** empty log message ***

Revision 1.178 - (view) (download) (annotate) - [select for diffs]
Sun Dec 6 01:34:27 2009 UTC (14 years, 6 months ago) by root
Branch: MAIN
Changes since 1.177: +4 -0 lines
Diff to previous 1.177
*** empty log message ***

Revision 1.177 - (view) (download) (annotate) - [select for diffs]
Sat May 30 08:53:48 2009 UTC (15 years, 1 month ago) by root
Branch: MAIN
Changes since 1.176: +1 -1 lines
Diff to previous 1.176
*** empty log message ***

Revision 1.176 - (view) (download) (annotate) - [select for diffs]
Sat Apr 4 13:58:55 2009 UTC (15 years, 2 months ago) by root
Branch: MAIN
Changes since 1.175: +10 -3 lines
Diff to previous 1.175
ugh, nano

Revision 1.175 - (view) (download) (annotate) - [select for diffs]
Mon Feb 2 22:38:40 2009 UTC (15 years, 4 months ago) by root
Branch: MAIN
Changes since 1.174: +6 -0 lines
Diff to previous 1.174
*** empty log message ***

Revision 1.174 - (view) (download) (annotate) - [select for diffs]
Thu Dec 4 00:23:55 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.173: +1 -1 lines
Diff to previous 1.173
*** empty log message ***

Revision 1.173 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 15:44:03 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-9_06
Changes since 1.172: +1 -0 lines
Diff to previous 1.172
*** empty log message ***

Revision 1.172 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 22:36:44 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
Changes since 1.171: +12 -0 lines
Diff to previous 1.171
*** empty log message ***

Revision 1.171 - (view) (download) (annotate) - [select for diffs]
Sun Jun 15 10:15:39 2008 UTC (16 years ago) by root
Branch: MAIN
CVS Tags: rel-9_05
Changes since 1.170: +2 -0 lines
Diff to previous 1.170
*** empty log message ***

Revision 1.170 - (view) (download) (annotate) - [select for diffs]
Mon May 19 14:00:02 2008 UTC (16 years, 1 month ago) by root
Branch: MAIN
Changes since 1.169: +1 -1 lines
Diff to previous 1.169
µikachu does fixing

Revision 1.169 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 16:18:38 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.168: +2 -22 lines
Diff to previous 1.168
Do not hardcode the termcap entry, rather point to the provided one.

Revision 1.168 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 16:16:35 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.167: +8 -9 lines
Diff to previous 1.167
Remove references to .txt files.

Revision 1.167 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 16:16:09 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.166: +1 -1 lines
Diff to previous 1.166
Fix typo.

Revision 1.166 - (view) (download) (annotate) - [select for diffs]
Sat Feb 2 14:59:48 2008 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.165: +3 -1 lines
Diff to previous 1.165
*** empty log message ***

Revision 1.165 - (view) (download) (annotate) - [select for diffs]
Sun Jan 27 22:48:32 2008 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-9_02
Changes since 1.164: +0 -6 lines
Diff to previous 1.164
Always compile in plain style scrollbar.

Revision 1.164 - (view) (download) (annotate) - [select for diffs]
Sun Jan 20 14:12:39 2008 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-9_0, rel-9_01
Changes since 1.163: +9 -0 lines
Diff to previous 1.163
implement bracketed paste mode (xterm private mode 2004).

Revision 1.163 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 16:19:47 2008 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.162: +1 -1 lines
Diff to previous 1.162
Document that OSC 55 is disabled.

Revision 1.162 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 15:00:49 2008 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.161: +4 -4 lines
Diff to previous 1.161
Deprecate OSC 39/49.

Revision 1.161 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 12:13:32 2008 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.160: +1 -1 lines
Diff to previous 1.160
Fix typos.

Revision 1.160 - (view) (download) (annotate) - [select for diffs]
Mon Dec 31 13:20:25 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.159: +2 -2 lines
Diff to previous 1.159
Fix typos.

Revision 1.159 - (view) (download) (annotate) - [select for diffs]
Fri Dec 21 13:19:07 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_9
Changes since 1.158: +1 -1 lines
Diff to previous 1.158
*** empty log message ***

Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 19:58:08 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_8
Changes since 1.157: +4 -1 lines
Diff to previous 1.157
*** empty log message ***

Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Mon Dec 10 19:08:01 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.156: +0 -5 lines
Diff to previous 1.156
ttygid option is no more.

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Mon Dec 10 19:06:55 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.155: +4 -0 lines
Diff to previous 1.155
Document text-blink option.

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Sun Dec 9 12:15:39 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.154: +1 -1 lines
Diff to previous 1.154
Fix typo.

Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Sun Nov 25 09:35:57 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-8_7
Changes since 1.153: +1 -0 lines
Diff to previous 1.153
*** empty log message ***

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 16:36:43 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.152: +3 -4 lines
Diff to previous 1.152
tunnelblick

Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 16:35:25 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.151: +2 -2 lines
Diff to previous 1.151
Correct name of configure option for blink.

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 18:40:10 2007 UTC (16 years, 7 months ago) by sasha
Branch: MAIN
CVS Tags: rel-8_5a, rel-8_6
Changes since 1.150: +2 -2 lines
Diff to previous 1.150
added new geometry op of :root to implement automove-background functionality internally , since absolute pixmap placement no longer supported

Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 09:40:51 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.149: +7 -7 lines
Diff to previous 1.149
Remove trailing whitespace.

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Mon Oct 29 13:40:41 2007 UTC (16 years, 8 months ago) by sasha
Branch: MAIN
Changes since 1.148: +3 -4 lines
Diff to previous 1.148
amended docs for -sh parameter to have range between 0..200

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Wed Oct 24 10:39:56 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_4
Changes since 1.147: +18 -0 lines
Diff to previous 1.147
Implement 1002/1003 mouse tracking modes.

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Thu Sep 20 15:56:41 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.146: +14 -15 lines
Diff to previous 1.146
updated docs to reflect changes in support for transparency and background images

Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Mon Sep 10 13:05:51 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.145: +3 -3 lines
Diff to previous 1.145
*** empty log message ***

Revision 1.145 - (view) (download) (annotate) - [select for diffs]
Sun Sep 9 08:38:40 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.144: +7 -1 lines
Diff to previous 1.144
*** empty log message ***

Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 23:32:14 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.143: +0 -4 lines
Diff to previous 1.143
Remove --enable-tinting and make --enable-transparency enable also the tinting
code.

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Thu Aug 2 00:09:54 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.142: +0 -16 lines
Diff to previous 1.142
Nuke --enable-xpm-background.

Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Wed Aug 1 17:50:34 2007 UTC (16 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-8_3
Changes since 1.141: +12 -11 lines
Diff to previous 1.141
stuffs, also added the 256 color patch in doc/

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Thu Jul 26 16:19:43 2007 UTC (16 years, 11 months ago) by sasha
Branch: MAIN
Changes since 1.140: +1 -1 lines
Diff to previous 1.140
typo fix

Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Thu Jul 12 22:33:16 2007 UTC (16 years, 11 months ago) by sasha
Branch: MAIN
Changes since 1.139: +18 -0 lines
Diff to previous 1.139
Fixed libAfterImage support when multiple displays are used. Added documentation for --enable-afterimage configure flag

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Tue Jun 26 00:32:37 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.138: +13 -13 lines
Diff to previous 1.138
*** empty log message ***

Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Mon Jun 25 15:03:34 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.137: +1 -1 lines
Diff to previous 1.137
Fading does not depend on transparency.

Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Mon Jun 25 14:53:11 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.136: +3 -3 lines
Diff to previous 1.136
Fix smart-resize doc.

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Mon Jun 25 14:41:19 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.135: +5 -0 lines
Diff to previous 1.135
Document --enable-selectionscrolling.

Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Sun Jun 24 23:30:17 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.134: +0 -4 lines
Diff to previous 1.134
*** empty log message ***

Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Sun Jun 24 23:13:21 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.133: +0 -15 lines
Diff to previous 1.133
*** empty log message ***

Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Sun Jun 24 22:31:06 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.132: +1 -1 lines
Diff to previous 1.132
*** empty log message ***

Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Sun Jun 24 22:13:08 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.131: +2 -2 lines
Diff to previous 1.131
use pod2xhtml and our stylesheet

Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Tue Jun 12 11:37:49 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.130: +1 -1 lines
Diff to previous 1.130
*** empty log message ***

Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Sat Jun 2 06:43:02 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.129: +7 -4 lines
Diff to previous 1.129
yes, perl is not that evil especially when disabled

Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Wed May 16 10:05:30 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.128: +1 -1 lines
Diff to previous 1.128
*** empty log message ***

Revision 1.128 - (view) (download) (annotate) - [select for diffs]
Wed May 2 23:27:09 2007 UTC (17 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.127: +1 -0 lines
Diff to previous 1.127
*** empty log message ***

Revision 1.127 - (view) (download) (annotate) - [select for diffs]
Mon Apr 30 20:06:23 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.126: +1 -1 lines
Diff to previous 1.126
*** empty log message ***

Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Sat Feb 17 20:44:03 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.125: +3 -4 lines
Diff to previous 1.125
*** empty log message ***

Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Fri Feb 16 21:49:23 2007 UTC (17 years, 4 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_2
Changes since 1.124: +3 -3 lines
Diff to previous 1.124
*** empty log message ***

Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Fri Dec 29 05:49:33 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.123: +5 -4 lines
Diff to previous 1.123
gentoo-improvement (could be better)

Revision 1.123 - (view) (download) (annotate) - [select for diffs]
Sat Dec 16 03:48:49 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.122: +1 -1 lines
Diff to previous 1.122
*** empty log message ***

Revision 1.122 - (view) (download) (annotate) - [select for diffs]
Sat Aug 26 06:37:10 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-8_0, rel-8_1
Changes since 1.121: +5 -2 lines
Diff to previous 1.121
*** empty log message ***

Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Sun Aug 20 02:47:26 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.120: +1 -1 lines
Diff to previous 1.120
*** empty log message ***

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Mon Aug 7 15:59:44 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-7_9
Changes since 1.119: +19 -19 lines
Diff to previous 1.119
*** empty log message ***

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 19:43:21 2006 UTC (17 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-7_8
Changes since 1.118: +6 -6 lines
Diff to previous 1.118
*** empty log message ***

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 18:56:10 2006 UTC (17 years, 11 months ago) by root
Branch: MAIN
Changes since 1.117: +2 -1 lines
Diff to previous 1.117
*** empty log message ***

Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Tue Mar 14 18:29:06 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.116: +28 -28 lines
Diff to previous 1.116
*** empty log message ***

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Wed Feb 22 10:42:49 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.115: +5 -5 lines
Diff to previous 1.115
*** empty log message ***

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Tue Feb 21 01:01:33 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_7
Changes since 1.114: +2 -1 lines
Diff to previous 1.114
*** empty log message ***

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Tue Feb 21 00:59:59 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.113: +153 -0 lines
Diff to previous 1.113
*** empty log message ***

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Thu Feb 2 18:04:45 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-7_6
Changes since 1.112: +1 -1 lines
Diff to previous 1.112
*** empty log message ***

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Thu Feb 2 15:22:19 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.111: +34 -3 lines
Diff to previous 1.111
*** empty log message ***

Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Thu Feb 2 00:31:47 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.110: +17 -0 lines
Diff to previous 1.110
*** empty log message ***

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:10:44 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.109: +39 -43 lines
Diff to previous 1.109
*** empty log message ***

Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:06:26 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.108: +5 -2 lines
Diff to previous 1.108
*** empty log message ***

Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:04:56 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.107: +0 -4 lines
Diff to previous 1.107
*** empty log message ***

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:04:14 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.106: +3 -2 lines
Diff to previous 1.106
*** empty log message ***

Revision 1.106 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:01:36 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.105: +1 -1 lines
Diff to previous 1.105
*** empty log message ***

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 21:00:26 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.104: +7 -7 lines
Diff to previous 1.104
*** empty log message ***

Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 20:58:12 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.103: +1 -1 lines
Diff to previous 1.103
*** empty log message ***

Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 20:57:29 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.102: +13 -13 lines
Diff to previous 1.102
*** empty log message ***

Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 20:50:48 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.101: +663 -644 lines
Diff to previous 1.101
*** empty log message ***

Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 01:02:19 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-7_5
Changes since 1.100: +7 -15 lines
Diff to previous 1.100
*** empty log message ***

Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 01:00:49 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.99: +15 -1 lines
Diff to previous 1.99
*** empty log message ***

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 00:57:35 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.98: +58 -62 lines
Diff to previous 1.98
*** empty log message ***

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 00:56:07 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.97: +3 -3 lines
Diff to previous 1.97
*** empty log message ***

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 00:53:49 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.96: +17 -0 lines
Diff to previous 1.96
*** empty log message ***

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 00:25:16 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.95: +18 -9 lines
Diff to previous 1.95
*** empty log message ***

Revision 1.95 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 22:49:30 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.94: +57 -0 lines
Diff to previous 1.94
*** empty log message ***

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 20:12:37 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.93: +10 -4 lines
Diff to previous 1.93
*** empty log message ***

Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 19:46:13 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.92: +5 -0 lines
Diff to previous 1.92
*** empty log message ***

Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Sat Jan 28 20:33:30 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.91: +14 -6 lines
Diff to previous 1.91
*** empty log message ***

Revision 1.91 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 21:03:03 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-7_3, rel-7_3a, rel-7_4
Changes since 1.90: +1 -0 lines
Diff to previous 1.90
*** empty log message ***

Revision 1.90 - (view) (download) (annotate) - [select for diffs]
Mon Jan 23 01:46:55 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.89: +8 -6 lines
Diff to previous 1.89
*** empty log message ***

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 21:00:39 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-7_1, rel-7_2
Changes since 1.88: +9 -8 lines
Diff to previous 1.88
*** empty log message ***

Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 17:49:46 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.87: +1 -1 lines
Diff to previous 1.87
*** empty log message ***

Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 16:22:41 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.86: +14 -16 lines
Diff to previous 1.86
*** empty log message ***

Revision 1.86 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 17:24:29 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.85: +0 -5 lines
Diff to previous 1.85
*** empty log message ***

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 15:12:48 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.84: +2 -2 lines
Diff to previous 1.84
*** empty log message ***

Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 15:07:27 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.83: +1 -1 lines
Diff to previous 1.83
*** empty log message ***

Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 14:48:39 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.82: +0 -482 lines
Diff to previous 1.82
*** empty log message ***

Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 09:28:45 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.81: +0 -8 lines
Diff to previous 1.81
*** empty log message ***

Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Fri Jan 13 12:40:46 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.80: +2 -2 lines
Diff to previous 1.80
*** empty log message ***

Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 23:16:31 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.79: +7 -4 lines
Diff to previous 1.79
*** empty log message ***

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 23:11:23 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.78: +15 -0 lines
Diff to previous 1.78
*** empty log message ***

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 05:37:34 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.77: +22 -0 lines
Diff to previous 1.77
*** empty log message ***

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 23:08:54 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.76: +0 -10 lines
Diff to previous 1.76
*** empty log message ***

Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 19:55:34 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.75: +7 -7 lines
Diff to previous 1.75
*** empty log message ***

Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 05:29:40 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.74: +4 -2 lines
Diff to previous 1.74
*** empty log message ***

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 07:24:43 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.73: +1 -1 lines
Diff to previous 1.73
*** empty log message ***

Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 01:54:43 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.72: +39 -0 lines
Diff to previous 1.72
*** empty log message ***

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Sat Jan 7 04:19:43 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.71: +6 -5 lines
Diff to previous 1.71
*** empty log message ***

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 21:50:12 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.70: +3 -1 lines
Diff to previous 1.70
*** empty log message ***

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 20:43:37 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.69: +11 -7 lines
Diff to previous 1.69
*** empty log message ***

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 00:10:29 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.68: +1 -0 lines
Diff to previous 1.68
*** empty log message ***

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 21:41:51 2006 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.67: +3 -3 lines
Diff to previous 1.67
*** empty log message ***

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 19:36:07 2006 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.66: +6 -0 lines
Diff to previous 1.66
*** empty log message ***

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 19:35:56 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-6_2
Changes since 1.65: +1 -1 lines
Diff to previous 1.65
*** empty log message ***

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 17:16:17 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.64: +9 -0 lines
Diff to previous 1.64
*** empty log message ***

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Sat Dec 24 12:55:17 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-6_0, rel-6_1
Changes since 1.63: +88 -1 lines
Diff to previous 1.63
*** empty log message ***

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 16:44:10 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.62: +1 -1 lines
Diff to previous 1.62
*** empty log message ***

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Tue Nov 8 17:35:28 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-5_9
Changes since 1.61: +3 -3 lines
Diff to previous 1.61
*** empty log message ***

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 20:04:59 2005 UTC (18 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-5_8
Changes since 1.60: +62 -59 lines
Diff to previous 1.60
*** empty log message ***

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Fri Jul 29 03:12:10 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.59: +1 -1 lines
Diff to previous 1.59
*** empty log message ***

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Wed Jul 13 03:04:03 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-5_7
Changes since 1.58: +2 -8 lines
Diff to previous 1.58
*** empty log message ***

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Wed Jul 13 02:24:02 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.57: +13 -7 lines
Diff to previous 1.57
*** empty log message ***

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Wed Jul 13 01:24:09 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.56: +2 -1 lines
Diff to previous 1.56
*** empty log message ***

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Wed Jul 13 01:01:41 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.55: +12 -0 lines
Diff to previous 1.55
*** empty log message ***

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Sun Jun 26 20:11:22 2005 UTC (19 years ago) by root
Branch: MAIN
Changes since 1.54: +5 -0 lines
Diff to previous 1.54
*** empty log message ***

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 18:25:09 2005 UTC (19 years ago) by root
Branch: MAIN
Changes since 1.53: +8 -0 lines
Diff to previous 1.53
*** empty log message ***

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Sun Apr 17 22:36:13 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_4, rel-5_5
Changes since 1.52: +8 -10 lines
Diff to previous 1.52
*** empty log message ***

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Sat Mar 19 02:27:26 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.51: +10 -7 lines
Diff to previous 1.51
*** empty log message ***

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 19:26:06 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_3
Changes since 1.50: +11 -9 lines
Diff to previous 1.50
*** empty log message ***

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Sun Feb 20 19:45:30 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
Changes since 1.49: +1 -1 lines
Diff to previous 1.49
*** empty log message ***

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Fri Feb 18 12:15:07 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_2
Changes since 1.48: +1 -0 lines
Diff to previous 1.48
*** empty log message ***

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 12:00:33 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
Changes since 1.47: +6 -5 lines
Diff to previous 1.47
*** empty log message ***

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 10:48:44 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.46: +11 -11 lines
Diff to previous 1.46
*** empty log message ***

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 10:44:50 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
Changes since 1.45: +12 -8 lines
Diff to previous 1.45
*** empty log message ***

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Sun Feb 13 11:07:57 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
Changes since 1.44: +11 -0 lines
Diff to previous 1.44
*** empty log message ***

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Fri Feb 11 18:06:44 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_0
Changes since 1.34: +167 -98 lines
Diff to previous 1.34
*** empty log message ***

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Thu Feb 3 10:24:10 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9
Changes since 1.33: +52 -25 lines
Diff to previous 1.33
*** empty log message ***

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 18:48:04 2005 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8
Changes since 1.29: +71 -56 lines
Diff to previous 1.29
*** empty log message ***

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Wed Dec 29 19:17:18 2004 UTC (19 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-4_7
Changes since 1.28: +8 -0 lines
Diff to previous 1.28
*** empty log message ***

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Mon Nov 29 13:45:10 2004 UTC (19 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-4_2, rel-4_3, rel-4_4, rel-4_6
Changes since 1.27: +39 -17 lines
Diff to previous 1.27
*** empty log message ***

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Mon Nov 8 22:16:51 2004 UTC (19 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-4_1
Changes since 1.25: +8 -2 lines
Diff to previous 1.25
*** empty log message ***

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Mon Sep 6 06:20:40 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0
Changes since 1.23: +570 -1 lines
Diff to previous 1.23
*** empty log message ***

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Wed Aug 25 03:47:20 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-3_8
Changes since 1.12: +53 -25 lines
Diff to previous 1.12
*** empty log message ***

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon Aug 16 00:17:27 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-3_7
Changes since 1.6: +45 -15 lines
Diff to previous 1.6
*** empty log message ***

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sat Aug 14 03:00:32 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-3_6
Changes since 1.5: +288 -0 lines
Diff to previous 1.5
*** empty log message ***

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 22:29:28 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
Changes since 1.4: +1 -1 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 22:23:29 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
Changes since 1.3: +1 -1 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 22:22:30 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
Changes since 1.2: +1 -1 lines
Diff to previous 1.2
*** empty log message ***

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 21:30:14 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
Changes since 1.1: +17 -28 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 20:42:12 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
*** empty log message ***

Convenience Links

Links to HEAD: (view) (download) (annotate) Links to rxvt-unicode-rel-9_26: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a