ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/init.C
Revision 1.351 - (view) (download) (annotate) - [select for diffs]
Fri Dec 23 21:46:46 2022 UTC (16 months, 2 weeks ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.350: +17 -0 lines
Diff to previous 1.350
*** empty log message ***

Revision 1.350 - (view) (download) (annotate) - [select for diffs]
Sat Jul 3 04:04:13 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_29, rxvt-unicode-rel-9_30
Changes since 1.349: +13 -2 lines
Diff to previous 1.349
-dpb

Revision 1.349 - (view) (download) (annotate) - [select for diffs]
Tue Jun 25 03:35:01 2019 UTC (4 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_25, rxvt-unicode-rel-9_26
Changes since 1.348: +4 -4 lines
Diff to previous 1.348
*** empty log message ***

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

Revision 1.347 - (view) (download) (annotate) - [select for diffs]
Thu Jul 14 05:10:06 2016 UTC (7 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.346: +9 -0 lines
Diff to previous 1.346
Add extension autoloading based on resources.

Revision 1.346 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 12:03:56 2016 UTC (7 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.345: +35 -0 lines
Diff to previous 1.345
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.345 - (view) (download) (annotate) - [select for diffs]
Tue Oct 13 08:10:43 2015 UTC (8 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_22
Changes since 1.344: +1 -0 lines
Diff to previous 1.344
Update copyright years.

Revision 1.344 - (view) (download) (annotate) - [select for diffs]
Tue Jun 16 11:58:26 2015 UTC (8 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.343: +16 -1 lines
Diff to previous 1.343
Add pointerShape resource to change the mouse pointer shape.

Based on a patch by Brian Watson.

Revision 1.343 - (view) (download) (annotate) - [select for diffs]
Wed May 13 16:33:09 2015 UTC (9 years ago) by sf-exg
Branch: MAIN
Changes since 1.342: +1 -1 lines
Diff to previous 1.342
Fix build with --enable-pixbuf --disable-frills.

Revision 1.342 - (view) (download) (annotate) - [select for diffs]
Mon Dec 15 02:04:02 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_21
Changes since 1.341: +1 -7 lines
Diff to previous 1.341
c++ify

Revision 1.341 - (view) (download) (annotate) - [select for diffs]
Mon Dec 15 00:51:06 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
Changes since 1.340: +1 -42 lines
Diff to previous 1.340
*** empty log message ***

Revision 1.340 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 12:24:32 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
Changes since 1.339: +20 -35 lines
Diff to previous 1.339
*** empty log message ***

Revision 1.339 - (view) (download) (annotate) - [select for diffs]
Mon Oct 13 17:05:32 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.338: +2 -0 lines
Diff to previous 1.338
Restore keysym-list extension.

Revision 1.338 - (view) (download) (annotate) - [select for diffs]
Mon Oct 6 11:11:19 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.337: +7 -3 lines
Diff to previous 1.337
Shield against libraries calling setenv.

Revision 1.337 - (view) (download) (annotate) - [select for diffs]
Fri Sep 5 19:02:53 2014 UTC (9 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.336: +1 -1 lines
Diff to previous 1.336
Use XGetKeyboardMapping instead of XKeycodeToKeysym.

Revision 1.336 - (view) (download) (annotate) - [select for diffs]
Wed Sep 3 18:20:37 2014 UTC (9 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.335: +0 -2 lines
Diff to previous 1.335
Remove register_command and on_register_command.

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

Revision 1.334 - (view) (download) (annotate) - [select for diffs]
Sat Aug 16 10:51:23 2014 UTC (9 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.333: +5 -0 lines
Diff to previous 1.333
Add -mc option and multiClickTime resource, patch by Joe Peterson.

Revision 1.333 - (view) (download) (annotate) - [select for diffs]
Tue Jul 29 13:50:05 2014 UTC (9 years, 9 months ago) by mikachu
Branch: MAIN
Changes since 1.332: +3 -1 lines
Diff to previous 1.332
Add -dockapp option

Revision 1.332 - (view) (download) (annotate) - [select for diffs]
Thu May 22 18:54:32 2014 UTC (9 years, 11 months ago) by root
Branch: MAIN
Changes since 1.331: +1 -1 lines
Diff to previous 1.331
GPLv3

Revision 1.331 - (view) (download) (annotate) - [select for diffs]
Tue Dec 10 19:47:14 2013 UTC (10 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_20
Changes since 1.330: +1 -3 lines
Diff to previous 1.330
*** empty log message ***

Revision 1.330 - (view) (download) (annotate) - [select for diffs]
Sat Dec 29 14:23:35 2012 UTC (11 years, 4 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_17, rxvt-unicode-rel-9_18, rxvt-unicode-rel-9_19
Changes since 1.329: +1 -1 lines
Diff to previous 1.329
Revise preprocessor macros that control the core bg image code.

Move definition of BG_IMAGE_FROM_FILE in rxvt.h and add analogous
BG_IMAGE_FROM_ROOT macro that is set if the code to manage the root
pixmap is needed.

Revision 1.329 - (view) (download) (annotate) - [select for diffs]
Mon Jun 11 14:56:33 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_16
Changes since 1.328: +2 -23 lines
Diff to previous 1.328
Move initialization of transparent bg in bg_init.

Revision 1.328 - (view) (download) (annotate) - [select for diffs]
Thu Jun 7 16:04:31 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.327: +5 -3 lines
Diff to previous 1.327
visual selection

Revision 1.327 - (view) (download) (annotate) - [select for diffs]
Mon Jun 4 15:18:52 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.326: +3 -3 lines
Diff to previous 1.326
some #ifdef => #if changes

Revision 1.326 - (view) (download) (annotate) - [select for diffs]
Sun Jun 3 10:42:34 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.325: +0 -5 lines
Diff to previous 1.325
*** empty log message ***

Revision 1.325 - (view) (download) (annotate) - [select for diffs]
Thu May 31 05:53:46 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.324: +3 -3 lines
Diff to previous 1.324
Refactor tint/blur variables and methods into a new image_effects
object, so as to be able to apply such effects to multiple images.

Revision 1.324 - (view) (download) (annotate) - [select for diffs]
Mon May 28 16:40:03 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.323: +1 -1 lines
Diff to previous 1.323
add some ecb_hot/ecb_cold

Revision 1.323 - (view) (download) (annotate) - [select for diffs]
Fri May 25 08:27:47 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.322: +0 -7 lines
Diff to previous 1.322
First cut at adding support for multiple images.

Revision 1.322 - (view) (download) (annotate) - [select for diffs]
Thu May 17 10:18:32 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.321: +1 -1 lines
Diff to previous 1.321
Refactor code to manage images from files into a new rxvt_image object,
so as to be able to load multiple images.

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

Revision 1.320 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 15:08:55 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_15
Changes since 1.319: +1 -5 lines
Diff to previous 1.319
Remove check for setlocale, it is required.

Revision 1.319 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 13:33:43 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.318: +2 -2 lines
Diff to previous 1.318
Include the C standard headers rather than the corresponding C++ version.

Revision 1.318 - (view) (download) (annotate) - [select for diffs]
Fri Jan 13 13:04:59 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.317: +1 -1 lines
Diff to previous 1.317
Fix style.

Revision 1.317 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 21:12:08 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.316: +1 -1 lines
Diff to previous 1.316
Store the size of the vt window into two new members vt_width/height and
keep the maximum size in width/height, so that the $term->width/height
accessors return the same value as in pre 9.14.

Revision 1.316 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 15:45:45 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.315: +5 -3 lines
Diff to previous 1.315
Get rid of env_windowid and env_colorfgbg members by dynamically
allocating the corresponding strings in the child.

Revision 1.315 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 15:34:56 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.314: +1 -0 lines
Diff to previous 1.314
Add a flag to check if the terminal init is completed, rather than
abusing env_colorfgbg.

Revision 1.314 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 15:30:17 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.313: +2 -0 lines
Diff to previous 1.313
Remove useless free, the memory is allocated in the child process only.

Revision 1.313 - (view) (download) (annotate) - [select for diffs]
Sat Jan 7 17:48:56 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.312: +0 -3 lines
Diff to previous 1.312
Remove write-only variables.

Revision 1.312 - (view) (download) (annotate) - [select for diffs]
Tue Dec 27 11:09:31 2011 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.311: +1 -1 lines
Diff to previous 1.311
Hopefully make -C option work on solaris.

Revision 1.311 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 14:34:59 2011 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.310: +3 -1 lines
Diff to previous 1.310
Fix fd leak when SRIOCSREDIR ioctl succeeds.

Revision 1.310 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 10:38:09 2011 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.309: +8 -1 lines
Diff to previous 1.309
Honour LOG_ONLY_ON_LOGIN feature macro.

Revision 1.309 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 02:52:39 2011 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_14
Changes since 1.308: +3 -1 lines
Diff to previous 1.308
Set the pty fd non-blocking also when it is initialized using ptytty::get.

Revision 1.308 - (view) (download) (annotate) - [select for diffs]
Sun Dec 18 02:14:59 2011 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.307: +2 -16 lines
Diff to previous 1.307
Move parsing of '-e' option in get_options.

Fixes options parsing when '-e' occurs as an option argument, such as in
'urxvt -title -e'.

Revision 1.307 - (view) (download) (annotate) - [select for diffs]
Sat Dec 17 23:17:33 2011 UTC (12 years, 4 months ago) by root
Branch: MAIN
Changes since 1.306: +38 -14 lines
Diff to previous 1.306
hopefully clearer handling of argv/envv

Revision 1.306 - (view) (download) (annotate) - [select for diffs]
Tue Dec 6 11:39:30 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.305: +1 -10 lines
Diff to previous 1.305
Remove useless copy.

Revision 1.305 - (view) (download) (annotate) - [select for diffs]
Tue Dec 6 11:29:52 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.304: +1 -3 lines
Diff to previous 1.304
Cleanup handling of argv/env.

Move assignment and zero termination of envv in stringvec init () and
add zero termination of argv.

Revision 1.304 - (view) (download) (annotate) - [select for diffs]
Tue Dec 6 10:27:15 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.303: +2 -11 lines
Diff to previous 1.303
Remove useless copy.

Revision 1.303 - (view) (download) (annotate) - [select for diffs]
Sat Dec 3 11:47:31 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.302: +1 -4 lines
Diff to previous 1.302
Remove pointless free before rxvt_fatal call.

Revision 1.302 - (view) (download) (annotate) - [select for diffs]
Fri Dec 2 09:03:43 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.301: +4 -0 lines
Diff to previous 1.301
Add on_register_command hook and register_command method.

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

Revision 1.300 - (view) (download) (annotate) - [select for diffs]
Thu Sep 1 08:11:26 2011 UTC (12 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.299: +1 -1 lines
Diff to previous 1.299
Cosmetics, rename enum constants.

Revision 1.299 - (view) (download) (annotate) - [select for diffs]
Fri Aug 19 17:49:08 2011 UTC (12 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.298: +10 -0 lines
Diff to previous 1.298
Revert 2011-08-15 change.

g_type_init must be called before create_windows, because the latter may
call set_icon, while bg_init must be called after create_windows,
because it uses the vt window.

Revision 1.298 - (view) (download) (annotate) - [select for diffs]
Fri Aug 19 17:42:09 2011 UTC (12 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.297: +0 -10 lines
Diff to previous 1.297
Move and factor code to set the geometry specified in a bg pixmap string
into bg_set_file.

Revision 1.297 - (view) (download) (annotate) - [select for diffs]
Mon Aug 15 11:01:54 2011 UTC (12 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.296: +0 -9 lines
Diff to previous 1.296
Move afterimage/pixbuf initialization code in bg_init.

Revision 1.296 - (view) (download) (annotate) - [select for diffs]
Mon May 30 18:39:03 2011 UTC (12 years, 11 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_12
Changes since 1.295: +1 -1 lines
Diff to previous 1.295
Migrate to libecb.

Revision 1.295 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 16:19:45 2011 UTC (13 years ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_11
Changes since 1.294: +2 -2 lines
Diff to previous 1.294
Fix some comments.

Revision 1.294 - (view) (download) (annotate) - [select for diffs]
Thu Apr 7 12:19:40 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.293: +6 -6 lines
Diff to previous 1.293
Change type of 'parent' from array of Window to Window as all the
elements except the first are unused.

Revision 1.293 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 07:41:01 2011 UTC (13 years, 2 months ago) by root
Branch: MAIN
Changes since 1.292: +1 -1 lines
Diff to previous 1.292
the pcg is now the schmorp

Revision 1.292 - (view) (download) (annotate) - [select for diffs]
Thu Jan 27 17:37:19 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.291: +10 -10 lines
Diff to previous 1.291
Remove bgPixmap_t struct, move background pixmap handling in rxvt_term.

Revision 1.291 - (view) (download) (annotate) - [select for diffs]
Sun Jan 23 12:28:47 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.290: +0 -1 lines
Diff to previous 1.290
Simplify, invert flag meaning.

Revision 1.290 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 10:32:08 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.289: +4 -1 lines
Diff to previous 1.289
Re-add include of sys/byteorder.h.

Revision 1.289 - (view) (download) (annotate) - [select for diffs]
Mon Jan 3 03:05:47 2011 UTC (13 years, 4 months ago) by root
Branch: MAIN
Changes since 1.288: +1 -4 lines
Diff to previous 1.288
*** empty log message ***

Revision 1.288 - (view) (download) (annotate) - [select for diffs]
Sat Dec 18 18:17:38 2010 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.287: +1 -1 lines
Diff to previous 1.287
Add ARRAY_LENGTH macro with obvious meaning and use it.

Revision 1.287 - (view) (download) (annotate) - [select for diffs]
Sat Dec 18 14:00:43 2010 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.286: +1 -3 lines
Diff to previous 1.286
Simplify.

Revision 1.286 - (view) (download) (annotate) - [select for diffs]
Tue Dec 14 08:01:51 2010 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.285: +1 -1 lines
Diff to previous 1.285
Make some global variables static.

Revision 1.285 - (view) (download) (annotate) - [select for diffs]
Thu Dec 2 11:02:17 2010 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_10
Changes since 1.284: +0 -1 lines
Diff to previous 1.284
Implement our own pixbuf to pixmap rendering to get rid of dependency on
buggy gtk-pixbuf-xlib. Only truecolor visuals are supported.

Revision 1.284 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 21:59:25 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_09
Changes since 1.283: +1 -1 lines
Diff to previous 1.283
Use gdk_pixbuf_xlib_init_with_depth to init gdk-pixbuf-xlib, although it
does not honour the requested depth in current gdk-pixbuf releases.

Revision 1.283 - (view) (download) (annotate) - [select for diffs]
Wed Oct 13 23:04:57 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.282: +1 -2 lines
Diff to previous 1.282
Add support for blurring the root background with XRender.

Revision 1.282 - (view) (download) (annotate) - [select for diffs]
Thu Sep 2 15:48:11 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.281: +62 -0 lines
Diff to previous 1.281
Add support for using gdk-pixbuf as image backend.

Revision 1.281 - (view) (download) (annotate) - [select for diffs]
Sun Aug 29 18:12:55 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.280: +2 -2 lines
Diff to previous 1.280
Make variables unsigned.

Revision 1.280 - (view) (download) (annotate) - [select for diffs]
Sun Aug 29 17:58:54 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.279: +1 -1 lines
Diff to previous 1.279
Really reject too big icon images.

Revision 1.279 - (view) (download) (annotate) - [select for diffs]
Sun Aug 29 15:05:08 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.278: +7 -0 lines
Diff to previous 1.278
Reject too big icon images.

Revision 1.278 - (view) (download) (annotate) - [select for diffs]
Sun Aug 29 15:04:40 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.277: +49 -40 lines
Diff to previous 1.277
Move code to set icon image to a new method.

Revision 1.277 - (view) (download) (annotate) - [select for diffs]
Sat Aug 28 18:20:41 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.276: +18 -18 lines
Diff to previous 1.276
Slightly reorganize code to set icon image to avoid leaks on failure.

Revision 1.276 - (view) (download) (annotate) - [select for diffs]
Sat Aug 28 18:19:45 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.275: +1 -1 lines
Diff to previous 1.275
Remove always true test.

Revision 1.275 - (view) (download) (annotate) - [select for diffs]
Sat Aug 28 11:03:30 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.274: +1 -1 lines
Diff to previous 1.274
Fix comment.

Revision 1.274 - (view) (download) (annotate) - [select for diffs]
Wed Jul 28 17:56:16 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.273: +1 -155 lines
Diff to previous 1.273
Init termios structure once at startup and try to inherit user's
terminal state.

Revision 1.273 - (view) (download) (annotate) - [select for diffs]
Mon Jul 26 22:07:38 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.272: +0 -20 lines
Diff to previous 1.272
Remove init_secondary and redirect stdin/stdout (always to stderr) once
at startup in rxvt_init.

Revision 1.272 - (view) (download) (annotate) - [select for diffs]
Wed Jul 21 23:50:22 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.271: +1 -1 lines
Diff to previous 1.271
Fix typo.

Revision 1.271 - (view) (download) (annotate) - [select for diffs]
Thu Jul 1 21:50:25 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.270: +1 -1 lines
Diff to previous 1.270
Make rxvt_get_ttymode a static function.

Revision 1.270 - (view) (download) (annotate) - [select for diffs]
Tue Jun 15 13:34:52 2010 UTC (13 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.269: +4 -10 lines
Diff to previous 1.269
Simplify.

Revision 1.269 - (view) (download) (annotate) - [select for diffs]
Tue Jun 15 10:33:47 2010 UTC (13 years, 11 months ago) by root
Branch: MAIN
Changes since 1.268: +2 -2 lines
Diff to previous 1.268
indent

Revision 1.268 - (view) (download) (annotate) - [select for diffs]
Mon Jun 14 15:50:08 2010 UTC (13 years, 11 months ago) by root
Branch: MAIN
Changes since 1.267: +3 -2 lines
Diff to previous 1.267
µopt

Revision 1.267 - (view) (download) (annotate) - [select for diffs]
Mon Jun 14 15:47:52 2010 UTC (13 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.266: +2 -10 lines
Diff to previous 1.266
Set all the special characters to _POSIX_VDISABLE in the termios structure
before filling it.

Revision 1.266 - (view) (download) (annotate) - [select for diffs]
Mon Jun 14 15:40:03 2010 UTC (13 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.265: +3 -1 lines
Diff to previous 1.265
Comment the tcgetattr call on stdin as it does not work.

Revision 1.265 - (view) (download) (annotate) - [select for diffs]
Sun May 23 00:02:52 2010 UTC (13 years, 11 months ago) by root
Branch: MAIN
Changes since 1.264: +1 -1 lines
Diff to previous 1.264
style

Revision 1.264 - (view) (download) (annotate) - [select for diffs]
Sun Apr 4 18:59:19 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.263: +1 -0 lines
Diff to previous 1.263
Add 'highlightTextColor' option.

Revision 1.263 - (view) (download) (annotate) - [select for diffs]
Thu Apr 1 00:12:33 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.262: +244 -0 lines
Diff to previous 1.262
256-color support.

Revision 1.262 - (view) (download) (annotate) - [select for diffs]
Sun Jan 31 09:02:48 2010 UTC (14 years, 3 months ago) by sf-exg
Branch: MAIN
CVS Tags: before_dynamic_fontidx, dynamic_fontidx
Changes since 1.261: +1 -1 lines
Diff to previous 1.261
Remove trailing whitespace.

Revision 1.261 - (view) (download) (annotate) - [select for diffs]
Sat Jan 30 20:52:36 2010 UTC (14 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.260: +2 -2 lines
Diff to previous 1.260
Fix coding style.

Revision 1.260 - (view) (download) (annotate) - [select for diffs]
Wed Jan 6 12:10:44 2010 UTC (14 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.259: +1 -0 lines
Diff to previous 1.259
Add iso14755 option to disable ISO 14755 at runtime.

Revision 1.259 - (view) (download) (annotate) - [select for diffs]
Sat May 30 08:51:23 2009 UTC (14 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-9_07
Changes since 1.258: +4 -0 lines
Diff to previous 1.258
*** empty log message ***

Revision 1.258 - (view) (download) (annotate) - [select for diffs]
Sun Apr 26 01:59:53 2009 UTC (15 years ago) by root
Branch: MAIN
Changes since 1.257: +1 -1 lines
Diff to previous 1.257
*** empty log message ***

Revision 1.257 - (view) (download) (annotate) - [select for diffs]
Sun Apr 26 01:51:20 2009 UTC (15 years ago) by root
Branch: MAIN
Changes since 1.256: +2 -2 lines
Diff to previous 1.256
*** empty log message ***

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

Revision 1.255 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 13:20:40 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.254: +13 -8 lines
Diff to previous 1.254
*** empty log message ***

Revision 1.254 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 11:03:29 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.253: +47 -0 lines
Diff to previous 1.253
iconfile patch

Revision 1.253 - (view) (download) (annotate) - [select for diffs]
Tue Jul 15 16:41:22 2008 UTC (15 years, 10 months ago) by root
Branch: MAIN
Changes since 1.252: +0 -5 lines
Diff to previous 1.252
*** empty log message ***

Revision 1.252 - (view) (download) (annotate) - [select for diffs]
Sun Jun 15 13:54:15 2008 UTC (15 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-9_05
Changes since 1.251: +11 -1 lines
Diff to previous 1.251
*** empty log message ***

Revision 1.251 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 18:15:26 2008 UTC (16 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.250: +2 -2 lines
Diff to previous 1.250
Lowercase function name.

Revision 1.250 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 17:47:01 2008 UTC (16 years, 2 months ago) by root
Branch: MAIN
Changes since 1.249: +0 -5 lines
Diff to previous 1.249
surprisingly, libev does not block signals

Revision 1.249 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 10:47:03 2008 UTC (16 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.248: +1 -1 lines
Diff to previous 1.248
Make scrollbar_{resize,mapping,show} methods of scrollBar_t.

Revision 1.248 - (view) (download) (annotate) - [select for diffs]
Tue Jan 29 14:45:54 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.247: +1 -1 lines
Diff to previous 1.247
Make setup_scrollbar a method of scrollBar_t.

Revision 1.247 - (view) (download) (annotate) - [select for diffs]
Tue Jan 29 13:57:23 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.246: +1 -1 lines
Diff to previous 1.246
Add enum for scrollbar states and remove methods/macros to set/check
it.

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

Revision 1.245 - (view) (download) (annotate) - [select for diffs]
Sun Jan 27 16:52:13 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.244: +6 -4 lines
Diff to previous 1.244
Remove KEEP_SCROLLCOLOR macro.

Revision 1.244 - (view) (download) (annotate) - [select for diffs]
Sat Jan 26 14:24:43 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
CVS Tags: rel-9_01
Changes since 1.243: +1 -0 lines
Diff to previous 1.243
Change the compile-time option to disable xft double-buffering to a
runtime one.

Revision 1.243 - (view) (download) (annotate) - [select for diffs]
Fri Jan 25 16:04:57 2008 UTC (16 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-9_0
Changes since 1.242: +1 -1 lines
Diff to previous 1.242
boring

Revision 1.242 - (view) (download) (annotate) - [select for diffs]
Mon Jan 21 14:52:44 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.241: +0 -5 lines
Diff to previous 1.241
Remove invalid comment and TODO.

Revision 1.241 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 14:23:33 2008 UTC (16 years, 3 months ago) by root
Branch: MAIN
Changes since 1.240: +0 -11 lines
Diff to previous 1.240
Alex Coventry is a confused person

Revision 1.240 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 13:05:55 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.239: +2 -2 lines
Diff to previous 1.239
Make init_secondary a static function.

Revision 1.239 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 13:00:07 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.238: +120 -0 lines
Diff to previous 1.238
Move rxvt_term::init to init.C.

Revision 1.238 - (view) (download) (annotate) - [select for diffs]
Fri Jan 4 17:57:28 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.237: +0 -5 lines
Diff to previous 1.237
Move leftptr_cursor from rxvt_term to scrollBar_t.

Revision 1.237 - (view) (download) (annotate) - [select for diffs]
Mon Dec 31 15:45:29 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.236: +0 -9 lines
Diff to previous 1.236
Init graphics contexts for rxvt scrollbar in scrollbar_show_rxvt.

Revision 1.236 - (view) (download) (annotate) - [select for diffs]
Mon Dec 31 01:05:50 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.235: +0 -1 lines
Diff to previous 1.235
Move last_{bot,top,state} from rxvt_term to scrollBar_t.

Revision 1.235 - (view) (download) (annotate) - [select for diffs]
Sat Dec 29 12:36:56 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.234: +2 -2 lines
Diff to previous 1.234
Remove ttymode_t typedef.

Revision 1.234 - (view) (download) (annotate) - [select for diffs]
Fri Dec 28 14:57:04 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.233: +1 -5 lines
Diff to previous 1.233
Make pix_colors_{focused,unfocused} arrays non dynamic.

Revision 1.233 - (view) (download) (annotate) - [select for diffs]
Fri Dec 21 16:21:06 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_9
Changes since 1.232: +5 -2 lines
Diff to previous 1.232
Remove {GET,SET}_TERMIOS macros.

Revision 1.232 - (view) (download) (annotate) - [select for diffs]
Tue Dec 18 15:44:55 2007 UTC (16 years, 4 months ago) by sasha
Branch: MAIN
Changes since 1.231: +2 -0 lines
Diff to previous 1.231
restricted AfterImage output to only report errors and use proper name while doing that

Revision 1.231 - (view) (download) (annotate) - [select for diffs]
Tue Dec 18 12:04:50 2007 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.230: +0 -1 lines
Diff to previous 1.230
Remove unused member variable.

Revision 1.230 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 05:25:24 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-8_8
Changes since 1.229: +0 -1 lines
Diff to previous 1.229
*** empty log message ***

Revision 1.229 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 02:22:24 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.228: +1 -1 lines
Diff to previous 1.228
you should do it, too, and less sloppily than me

Revision 1.228 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 23:50:00 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.227: +0 -2 lines
Diff to previous 1.227
Remove copyright for qnx port, it was nuked long ago.

Revision 1.227 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 09:33:48 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.226: +1 -3 lines
Diff to previous 1.226
Change init_vars return type to void, it always returns true.

Revision 1.226 - (view) (download) (annotate) - [select for diffs]
Tue Dec 11 17:42:04 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.225: +2 -0 lines
Diff to previous 1.225
Headers cleanup.

Revision 1.225 - (view) (download) (annotate) - [select for diffs]
Tue Dec 11 11:39:06 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.224: +0 -2 lines
Diff to previous 1.224
We require termios.h.

Revision 1.224 - (view) (download) (annotate) - [select for diffs]
Mon Nov 26 11:20:16 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.223: +2 -1 lines
Diff to previous 1.223
Cosmetics.

Revision 1.223 - (view) (download) (annotate) - [select for diffs]
Mon Nov 26 10:33:36 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.222: +4 -7 lines
Diff to previous 1.222
Cleanup.

Revision 1.222 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 11:36:15 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_5a, rel-8_6, rel-8_7
Changes since 1.221: +12 -12 lines
Diff to previous 1.221
Cosmetics.

Revision 1.221 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 09:55:23 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.220: +3 -3 lines
Diff to previous 1.220
Remove trailing whitespace.

Revision 1.220 - (view) (download) (annotate) - [select for diffs]
Sun Oct 28 11:25:04 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.219: +1 -1 lines
Diff to previous 1.219
Nuke rxvt_strdup.

Revision 1.219 - (view) (download) (annotate) - [select for diffs]
Sun Oct 28 11:06:59 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.218: +1 -1 lines
Diff to previous 1.218
*** empty log message ***

Revision 1.218 - (view) (download) (annotate) - [select for diffs]
Thu Oct 18 09:11:42 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_4
Changes since 1.217: +13 -0 lines
Diff to previous 1.217
include cleanup.

Revision 1.217 - (view) (download) (annotate) - [select for diffs]
Tue Oct 9 13:36:10 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.216: +4 -1 lines
Diff to previous 1.216
*** empty log message ***

Revision 1.216 - (view) (download) (annotate) - [select for diffs]
Tue Oct 9 13:34:46 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.215: +9 -7 lines
Diff to previous 1.215
Abort if the argument for -e is missing and move the code to
initialize r_argv after the one for cmd_argv to avoid leaking.

Revision 1.215 - (view) (download) (annotate) - [select for diffs]
Mon Oct 8 15:36:13 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.214: +1 -1 lines
Diff to previous 1.214
*** empty log message ***

Revision 1.214 - (view) (download) (annotate) - [select for diffs]
Fri Sep 14 17:10:34 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.213: +91 -0 lines
Diff to previous 1.213
Move rxvt_network_display to init.C and remove netdisp.{C,h}.

Revision 1.213 - (view) (download) (annotate) - [select for diffs]
Fri Sep 14 10:15:41 2007 UTC (16 years, 8 months ago) by root
Branch: MAIN
Changes since 1.212: +2 -2 lines
Diff to previous 1.212
fix disastrous bug

Revision 1.212 - (view) (download) (annotate) - [select for diffs]
Wed Sep 12 21:06:08 2007 UTC (16 years, 8 months ago) by sasha
Branch: MAIN
Changes since 1.211: +0 -12 lines
Diff to previous 1.211
renamed XPM_BACKGROUND to BG_IMAGE_FROM_FILE

Revision 1.211 - (view) (download) (annotate) - [select for diffs]
Sun Sep 9 10:14:40 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.210: +8 -19 lines
Diff to previous 1.210
Remove useless indirection for {backspace,delete}key resources.

Revision 1.210 - (view) (download) (annotate) - [select for diffs]
Sat Sep 8 21:25:56 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.209: +3 -3 lines
Diff to previous 1.209
Saner function names.

Revision 1.209 - (view) (download) (annotate) - [select for diffs]
Sat Sep 8 20:54:50 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.208: +0 -9 lines
Diff to previous 1.208
Remove rxvt additional parsing of resource values.

Revision 1.208 - (view) (download) (annotate) - [select for diffs]
Mon Sep 3 08:48:00 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.207: +3 -3 lines
Diff to previous 1.207
sizeof(char) is 1.

Revision 1.207 - (view) (download) (annotate) - [select for diffs]
Mon Aug 27 18:30:59 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.206: +0 -1 lines
Diff to previous 1.206
Remove unused vars and function.

Revision 1.206 - (view) (download) (annotate) - [select for diffs]
Mon Aug 13 07:17:48 2007 UTC (16 years, 9 months ago) by ayin
Branch: MAIN
Changes since 1.205: +1 -5 lines
Diff to previous 1.205
Remove (now) redundant assignments.

Revision 1.205 - (view) (download) (annotate) - [select for diffs]
Fri Aug 10 22:10:36 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.204: +0 -20 lines
Diff to previous 1.204
fixed compilation bugs without libAI, added setters to bgPixmap for transparency params and moved server side tinting to make_transparency_pixmap; started refactoring check_our_parents into render_background()

Revision 1.204 - (view) (download) (annotate) - [select for diffs]
Thu Aug 9 22:08:21 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.203: +2 -2 lines
Diff to previous 1.203
implemented grabbing root background even when there is no root pixmap property set

Revision 1.203 - (view) (download) (annotate) - [select for diffs]
Wed Aug 8 22:39:49 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.202: +1 -0 lines
Diff to previous 1.202
made target a part of bgPixmap, moved set background calls into a separate function; started writing a function for generating transparency pixmap - that code should come out of check_parents()

Revision 1.202 - (view) (download) (annotate) - [select for diffs]
Tue Aug 7 22:43:33 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.201: +2 -0 lines
Diff to previous 1.201
debugged and incorporated new image rendering code into existing structure. Alignment and scaling should now work for both transparent and non-transparent backgrounds

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

Revision 1.200 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 23:15:34 2007 UTC (16 years, 9 months ago) by ayin
Branch: MAIN
Changes since 1.199: +2 -0 lines
Diff to previous 1.199
Fix compilation after last change.

Revision 1.199 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 22:40:10 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.198: +6 -4 lines
Diff to previous 1.198
updated comments explaining pixmap geometry string; added differentiation between HAVE_AFTERIMAGE and XPM_BACKGROUND; began moving background handling functions under bgPixmap_t - work in progress

Revision 1.198 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 05:33:04 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.197: +3 -3 lines
Diff to previous 1.197
Preliminary consolidation of pixmap and bgPixmap and rewrite of resize_pixmap(). More work needed.

Revision 1.197 - (view) (download) (annotate) - [select for diffs]
Thu Aug 2 15:01:30 2007 UTC (16 years, 9 months ago) by ayin
Branch: MAIN
Changes since 1.196: +1 -5 lines
Diff to previous 1.196
*** empty log message ***

Revision 1.196 - (view) (download) (annotate) - [select for diffs]
Wed Aug 1 17:39:28 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-8_3
Changes since 1.195: +1 -1 lines
Diff to previous 1.195
*** empty log message ***

Revision 1.195 - (view) (download) (annotate) - [select for diffs]
Thu Jul 26 18:09:36 2007 UTC (16 years, 9 months ago) by ayin
Branch: MAIN
Changes since 1.194: +1 -1 lines
Diff to previous 1.194
*** empty log message ***

Revision 1.194 - (view) (download) (annotate) - [select for diffs]
Thu Jul 26 16:17:50 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.193: +1 -3 lines
Diff to previous 1.193
fixed libAI usage for multi-display  - requires new libAfterImage from CVS - version 1.15

Revision 1.193 - (view) (download) (annotate) - [select for diffs]
Tue Jul 24 14:40:41 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.192: +2 -2 lines
Diff to previous 1.192
sigh

Revision 1.192 - (view) (download) (annotate) - [select for diffs]
Tue Jul 24 14:38:59 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.191: +1 -0 lines
Diff to previous 1.191
*** empty log message ***

Revision 1.191 - (view) (download) (annotate) - [select for diffs]
Tue Jul 24 14:32:47 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.190: +2 -2 lines
Diff to previous 1.190
fixed some style issues

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

Revision 1.189 - (view) (download) (annotate) - [select for diffs]
Tue Jun 26 00:40:18 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.188: +1 -1 lines
Diff to previous 1.188
TRANSPARENT => ENABLE_TRANSPARENCY rename to avoid symbol conflict
on solaris..

Revision 1.188 - (view) (download) (annotate) - [select for diffs]
Mon Jun 18 13:38:12 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.187: +1 -0 lines
Diff to previous 1.187
less rough skipscroll

Revision 1.187 - (view) (download) (annotate) - [select for diffs]
Mon Jun 18 12:53:26 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.186: +0 -1 lines
Diff to previous 1.186
initial rough-cut skipscroll

Revision 1.186 - (view) (download) (annotate) - [select for diffs]
Sat Jun 9 09:05:38 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.185: +1 -0 lines
Diff to previous 1.185
add iso14755_52 resource to disable iso14755 5.2.

Revision 1.185 - (view) (download) (annotate) - [select for diffs]
Sat Jun 9 08:12:38 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.184: +1 -1 lines
Diff to previous 1.184
*** empty log message ***

Revision 1.184 - (view) (download) (annotate) - [select for diffs]
Fri Jun 8 20:04:12 2007 UTC (16 years, 11 months ago) by sasha
Branch: MAIN
Changes since 1.183: +4 -1 lines
Diff to previous 1.183
added preliminary support to use libAfterImage for background pixmap loading and rendering of transparency effects including blending of pixmap over background using several methods, and gaussian blurr of the transparency background

Revision 1.183 - (view) (download) (annotate) - [select for diffs]
Tue May 29 04:02:18 2007 UTC (16 years, 11 months ago) by root
Branch: MAIN
Changes since 1.182: +1 -1 lines
Diff to previous 1.182
*** empty log message ***

Revision 1.182 - (view) (download) (annotate) - [select for diffs]
Tue May 1 21:30:01 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.181: +23 -23 lines
Diff to previous 1.181
remove OPTION macro

Revision 1.181 - (view) (download) (annotate) - [select for diffs]
Tue May 1 21:10:04 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.180: +8 -1 lines
Diff to previous 1.180
*** empty log message ***

Revision 1.180 - (view) (download) (annotate) - [select for diffs]
Fri Feb 16 21:46:05 2007 UTC (17 years, 2 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_2
Changes since 1.179: +1 -1 lines
Diff to previous 1.179
*** empty log message ***

Revision 1.179 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 12:29:35 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.178: +1 -1 lines
Diff to previous 1.178
*** empty log message ***

Revision 1.178 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 00:51:31 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.177: +1 -1 lines
Diff to previous 1.177
remove non-POSIX termios support

Revision 1.177 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 00:45:30 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.176: +0 -48 lines
Diff to previous 1.176
rip out sgtty

Revision 1.176 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 00:40:23 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.175: +1 -1 lines
Diff to previous 1.175
*** empty log message ***

Revision 1.175 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 00:37:13 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.174: +5 -7 lines
Diff to previous 1.174
*** empty log message ***

Revision 1.174 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 22:46:14 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-7_8, rel-7_9, rel-8_0, rel-8_1
Changes since 1.173: +2 -7 lines
Diff to previous 1.173
*** empty log message ***

Revision 1.173 - (view) (download) (annotate) - [select for diffs]
Wed Jul 5 20:31:48 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.172: +4 -5 lines
Diff to previous 1.172
*** empty log message ***

Revision 1.172 - (view) (download) (annotate) - [select for diffs]
Mon Feb 20 22:42:00 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-7_7
Changes since 1.171: +1 -1 lines
Diff to previous 1.171
*** empty log message ***

Revision 1.171 - (view) (download) (annotate) - [select for diffs]
Mon Feb 20 20:44:22 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.170: +2 -2 lines
Diff to previous 1.170
*** empty log message ***

Revision 1.170 - (view) (download) (annotate) - [select for diffs]
Sat Feb 18 15:24:39 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.169: +1 -1 lines
Diff to previous 1.169
*** empty log message ***

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

Revision 1.168 - (view) (download) (annotate) - [select for diffs]
Wed Feb 1 21:15:33 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.167: +29 -42 lines
Diff to previous 1.167
*** empty log message ***

Revision 1.167 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 19:54:39 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.166: +2 -2 lines
Diff to previous 1.166
*** empty log message ***

Revision 1.166 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 19:53:30 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.165: +8 -3 lines
Diff to previous 1.165
*** empty log message ***

Revision 1.165 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 19:11:43 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.164: +1 -0 lines
Diff to previous 1.164
*** empty log message ***

Revision 1.164 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 18:36:35 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.163: +19 -17 lines
Diff to previous 1.163
*** empty log message ***

Revision 1.163 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 16:57:35 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.162: +2 -2 lines
Diff to previous 1.162
*** empty log message ***

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

Revision 1.161 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 20:12:37 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_5
Changes since 1.160: +1 -1 lines
Diff to previous 1.160
*** empty log message ***

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

Revision 1.159 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 02:21:20 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.158: +21 -21 lines
Diff to previous 1.158
*** empty log message ***

Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 20:51:28 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.157: +11 -8 lines
Diff to previous 1.157
*** empty log message ***

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

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 21:03:04 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.155: +44 -37 lines
Diff to previous 1.155
*** empty log message ***

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 02:53:13 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.154: +2 -11 lines
Diff to previous 1.154
*** empty log message ***

Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 02:45:36 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.153: +3 -6 lines
Diff to previous 1.153
*** empty log message ***

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 02:42:06 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.152: +27 -91 lines
Diff to previous 1.152
*** empty log message ***

Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Sat Jan 21 22:38:05 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_2
Changes since 1.151: +0 -2 lines
Diff to previous 1.151
*** empty log message ***

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Fri Jan 20 12:16:28 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.150: +13 -0 lines
Diff to previous 1.150
*** empty log message ***

Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Fri Jan 20 11:02:46 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.149: +0 -4 lines
Diff to previous 1.149
*** empty log message ***

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 09:47:15 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_1
Changes since 1.148: +4 -0 lines
Diff to previous 1.148
*** empty log message ***

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 19:43:51 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.147: +13 -21 lines
Diff to previous 1.147
*** empty log message ***

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 16:50:42 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.146: +2 -0 lines
Diff to previous 1.146
*** empty log message ***

Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 15:17:39 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.145: +2 -18 lines
Diff to previous 1.145
logging.C

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

Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 11:02:10 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.143: +0 -66 lines
Diff to previous 1.143
*** empty log message ***

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 15:00:20 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.142: +5 -44 lines
Diff to previous 1.142
*** empty log message ***

Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Fri Jan 13 04:59:04 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.141: +3 -6 lines
Diff to previous 1.141
*** empty log message ***

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Fri Jan 13 04:19:41 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.140: +0 -1 lines
Diff to previous 1.140
*** empty log message ***

Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 01:30:53 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.139: +8 -13 lines
Diff to previous 1.139
*** empty log message ***

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 03:13:26 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.138: +2 -1 lines
Diff to previous 1.138
*** empty log message ***

Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 02:24:12 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.137: +2 -2 lines
Diff to previous 1.137
*** empty log message ***

Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 00:59:58 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.136: +20 -9 lines
Diff to previous 1.136
*** empty log message ***

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 01:02:15 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.135: +1 -1 lines
Diff to previous 1.135
*** empty log message ***

Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Sat Jan 7 19:29:17 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.134: +1 -1 lines
Diff to previous 1.134
*** empty log message ***

Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 05:37:59 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.133: +1 -1 lines
Diff to previous 1.133
*** empty log message ***

Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 05:28:55 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.132: +10 -3 lines
Diff to previous 1.132
*** empty log message ***

Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 02:11:15 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.131: +7 -4 lines
Diff to previous 1.131
*** empty log message ***

Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 20:43:38 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.130: +0 -4 lines
Diff to previous 1.130
*** empty log message ***

Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 04:42:45 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.129: +3 -8 lines
Diff to previous 1.129
*** empty log message ***

Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 22:23:26 2006 UTC (18 years, 4 months 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]
Sat Dec 31 17:16:17 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_2
Changes since 1.127: +17 -17 lines
Diff to previous 1.127
*** empty log message ***

Revision 1.127 - (view) (download) (annotate) - [select for diffs]
Fri Dec 23 14:46:34 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_0, rel-6_1
Changes since 1.126: +6 -1 lines
Diff to previous 1.126
*** empty log message ***

Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 23:40:07 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.125: +8 -2 lines
Diff to previous 1.125
*** empty log message ***

Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 19:50:16 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.124: +6 -4 lines
Diff to previous 1.124
*** empty log message ***

Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:19:19 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.123: +7 -5 lines
Diff to previous 1.123
*** empty log message ***

Revision 1.123 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 10:35:47 2005 UTC (18 years, 4 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]
Sun Dec 18 00:59:42 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.121: +30 -30 lines
Diff to previous 1.121
*** empty log message ***

Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Wed Nov 30 21:05:39 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-5_9
Changes since 1.120: +0 -5 lines
Diff to previous 1.120
*** empty log message ***

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Mon Nov 28 18:37:42 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.119: +3 -24 lines
Diff to previous 1.119
*** empty log message ***

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Thu Aug 11 02:05:07 2005 UTC (18 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-5_8
Changes since 1.118: +9 -4 lines
Diff to previous 1.118
*** empty log message ***

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Wed Aug 10 15:10:06 2005 UTC (18 years, 9 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]
Thu Jul 7 19:37:47 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-5_7
Changes since 1.116: +1 -13 lines
Diff to previous 1.116
*** empty log message ***

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Sun Feb 20 19:45:30 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_3, rel-5_4, rel-5_5
Changes since 1.115: +16 -7 lines
Diff to previous 1.115
*** empty log message ***

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Sun Feb 20 02:00:43 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.114: +2 -2 lines
Diff to previous 1.114
*** empty log message ***

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Sun Feb 20 00:09:25 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_2
Changes since 1.113: +32 -41 lines
Diff to previous 1.113
*** empty log message ***

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Sat Feb 19 04:16:49 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.112: +8 -4 lines
Diff to previous 1.112
*** empty log message ***

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Sat Feb 19 01:07:58 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.111: +19 -15 lines
Diff to previous 1.111
*** empty log message ***

Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 20:52:48 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.110: +4 -2 lines
Diff to previous 1.110
*** empty log message ***

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 15:07:48 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.109: +20 -5 lines
Diff to previous 1.109
*** empty log message ***

Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 18:47:54 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.108: +61 -30 lines
Diff to previous 1.108
*** empty log message ***

Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Fri Feb 4 11:41:23 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_0
Changes since 1.107: +41 -41 lines
Diff to previous 1.107
*** empty log message ***

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Wed Feb 2 08:09:23 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9
Changes since 1.105: +2 -1 lines
Diff to previous 1.105
*** empty log message ***

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Mon Jan 17 00:59:23 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8
Changes since 1.99: +37 -31 lines
Diff to previous 1.99
*** empty log message ***

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Mon Dec 20 16:44:31 2004 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_7
Changes since 1.98: +1 -1 lines
Diff to previous 1.98
*** empty log message ***

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Wed Dec 15 00:53:23 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_6
Changes since 1.97: +4 -1 lines
Diff to previous 1.97
*** empty log message ***

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Wed Dec 15 00:12:58 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
Changes since 1.96: +19 -12 lines
Diff to previous 1.96
*** empty log message ***

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Sat Dec 11 23:01:36 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_4
Changes since 1.94: +17 -22 lines
Diff to previous 1.94
*** empty log message ***

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Mon Nov 29 13:37:20 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_2, rel-4_3
Changes since 1.93: +1 -1 lines
Diff to previous 1.93
*** empty log message ***

Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Sun Oct 24 14:02:44 2004 UTC (19 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-4_1
Changes since 1.92: +4 -1 lines
Diff to previous 1.92
*** empty log message ***

Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Wed Sep 8 17:23:02 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0
Changes since 1.90: +5 -1 lines
Diff to previous 1.90
*** empty log message ***

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

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Sun Aug 15 22:09:24 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_7
Changes since 1.70: +326 -357 lines
Diff to previous 1.70
*** empty log message ***

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Fri Aug 13 03:47:09 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_6
Changes since 1.68: +230 -230 lines
Diff to previous 1.68
*** empty log message ***

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Tue Aug 10 20:39:19 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_5
Changes since 1.67: +4 -6 lines
Diff to previous 1.67
*** empty log message ***

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Tue Aug 3 22:19:51 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_4
Changes since 1.65: +41 -4 lines
Diff to previous 1.65
*** empty log message ***

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Fri Jul 30 16:13:46 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_3
Changes since 1.57: +28 -19 lines
Diff to previous 1.57
*** empty log message ***

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Mon Jun 21 22:24:07 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-3_2
Changes since 1.51: +20 -11 lines
Diff to previous 1.51
*** empty log message ***

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Sun May 9 18:19:49 2004 UTC (20 years ago) by pcg
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.50: +21 -25 lines
Diff to previous 1.50
*** empty log message ***

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Thu Apr 8 20:31:45 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_8
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 Apr 2 15:15:25 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_7
Changes since 1.45: +24 -10 lines
Diff to previous 1.45
*** empty log message ***

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Mon Mar 22 17:18:25 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_5
Changes since 1.40: +18 -30 lines
Diff to previous 1.40
*** empty log message ***

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Sun Mar 14 23:14:39 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_4
Changes since 1.39: +0 -18 lines
Diff to previous 1.39
*** empty log message ***

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Sun Mar 14 17:33:07 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_3
Changes since 1.38: +0 -17 lines
Diff to previous 1.38
*** empty log message ***

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Mar 3 04:07:52 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_1_0, rel-2_2
Changes since 1.37: +1 -1 lines
Diff to previous 1.37
*** empty log message ***

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 21:46:14 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-1_9, rel-2_0
Changes since 1.36: +6 -6 lines
Diff to previous 1.36
*** empty log message ***

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 16:25:44 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.35: +3 -0 lines
Diff to previous 1.35
*** empty log message ***

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 00:44:23 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.34: +6 -8 lines
Diff to previous 1.34
*** empty log message ***

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 00:02:44 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.33: +2 -7 lines
Diff to previous 1.33
*** empty log message ***

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 10:37:54 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.32: +1 -1 lines
Diff to previous 1.32
*** empty log message ***

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 08:28:36 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.31: +7 -7 lines
Diff to previous 1.31
*** empty log message ***

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 08:09:38 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.30: +0 -8 lines
Diff to previous 1.30
*** empty log message ***

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Sat Feb 21 22:14:00 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.29: +1 -0 lines
Diff to previous 1.29
*** empty log message ***

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Sat Feb 21 21:43:37 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
*** empty log message ***

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Sat Feb 21 20:33:40 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.27: +2 -0 lines
Diff to previous 1.27
*** empty log message ***

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Fri Feb 13 13:28:17 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.26: +5 -0 lines
Diff to previous 1.26
*** empty log message ***

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Fri Feb 13 12:16:21 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.25: +151 -151 lines
Diff to previous 1.25
*** empty log message ***

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Wed Feb 11 08:13:44 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.24: +3 -6 lines
Diff to previous 1.24
*** empty log message ***

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 07:11:49 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.23: +63 -102 lines
Diff to previous 1.23
*** empty log message ***

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sun Feb 1 01:34:41 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
CVS Tags: after_astyle
Changes since 1.22: +113 -107 lines
Diff to previous 1.22
*** empty log message ***

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 03:27:45 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
CVS Tags: before_astyle
Changes since 1.21: +0 -1 lines
Diff to previous 1.21
*** empty log message ***

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 02:14:58 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.20: +8 -7 lines
Diff to previous 1.20
*** empty log message ***

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 00:20:21 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.19: +55 -57 lines
Diff to previous 1.19
*** empty log message ***

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Wed Jan 28 23:40:50 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.18: +3 -2 lines
Diff to previous 1.18
*** empty log message ***

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Tue Jan 20 01:35:39 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.17: +4 -4 lines
Diff to previous 1.17
*** empty log message ***

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Mon Jan 19 17:26:43 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.16: +21 -20 lines
Diff to previous 1.16
*** empty log message ***

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 13:33:02 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
CVS Tags: rel-1-2, rel-1-3
Changes since 1.15: +71 -74 lines
Diff to previous 1.15
*** empty log message ***

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 07:31:19 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.14: +18 -4 lines
Diff to previous 1.14
*** empty log message ***

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 05:45:11 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.13: +247 -269 lines
Diff to previous 1.13
*** empty log message ***

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 02:07:12 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.12: +9 -11 lines
Diff to previous 1.12
*** empty log message ***

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 00:29:29 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11
*** empty log message ***

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Wed Dec 17 09:00:35 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.10: +1 -4 lines
Diff to previous 1.10
*** empty log message ***

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Mon Dec 8 23:14:40 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.9: +3 -2 lines
Diff to previous 1.9
*** empty log message ***

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Tue Dec 2 21:49:46 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.8: +997 -840 lines
Diff to previous 1.8
*** empty log message ***

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Thu Nov 27 10:12:10 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.7: +8 -27 lines
Diff to previous 1.7
*** empty log message ***

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Wed Nov 26 10:42:34 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.6: +3 -1 lines
Diff to previous 1.6
*** empty log message ***

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 17:11:33 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.5: +15 -10 lines
Diff to previous 1.5
*** empty log message ***

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 15:44:38 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 15:25:17 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.3: +562 -557 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 11:52:42 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.2: +111 -118 lines
Diff to previous 1.2
*** empty log message ***

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Mon Nov 24 17:31:27 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.1: +0 -0 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Mon Nov 24 17:28:08 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
*** empty log message ***

Convenience Links

Links to HEAD: (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