16b88866676af17900fdd82bcb0290c89ca2ef41
[dana/xcompmgr.git] / ChangeLog
1 2004-05-17  Eric Anholt  <anholt@FreeBSD.org>
2
3         * configure.ac:
4         Autoconf 2.57 appears to work fine, as well.
5
6 2004-03-31  Philip Blundell  <philb@gnu.org>
7
8         * Makefile.am: Set INCLUDES, not xcompmgr_INCLUDES.
9
10 2004-03-28  Philip Blundell  <philb@gnu.org>
11
12         * autogen.sh: New.
13
14 2004-03-25  Philip Blundell  <philb@gnu.org>
15
16         Autotoolized:
17         * Makefile.am, configure.ac: New files.
18         * NEWS, README, AUTHORS: Likewise.
19         * Makefile: Deleted.
20
21 2003-12-02  Keith Packard  <keithp@keithp.com>
22
23         * xcompmgr.c: (sum_gaussian), (make_shadow), (root_tile),
24         (paint_all), (map_win), (unmap_win), (determine_mode),
25         (configure_win), (circulate_win), (main):
26         Track whether cliplists have changed and avoid computation when not.
27         Shrink shadows.
28         Speed up shadow construction a bit by using memset.
29         Eliminate useless INTERVAL code.
30         Use XSync after paint_all to gather more events per update.
31
32 2003-11-24  Matthew Hawn <hawnpawn@yahoo.com>
33
34         reviewed by: Keith Packard  <keithp@keithp.com>
35
36         * xcompmgr.c: (map_win), (unmap_win), (get_trans_prop),
37         (determine_mode), (add_win), (main):
38         Add support for CM_TRANSLUCENT property.
39
40 2003-11-23  Keith Packard  <keithp@keithp.com>
41
42         * xcompmgr.c: (make_shadow), (root_tile), (win_extents),
43         (border_size), (paint_all), (repair_win), (map_win), (unmap_win),
44         (add_win), (restack_win), (configure_win), (circulate_win),
45         (destroy_win), (ev_serial), (ev_name), (ev_window), (main):
46         
47         Rename gussianMap to gaussianMap (who the heck is gus?)
48         Allow for other names for the root pixmap
49         Handle non-zero border widths better (need Composite change
50         to display them though).
51         Add MONITOR_UPDATE mode that eliminates double buffering and
52         blanks the screen to make sequence of update operations visible.
53         Leave damage object around to catch map damage right.
54         Add CirculateNotify support.
55
56 2003-11-23  Eric Anholt  <anholt@FreeBSD.org>
57
58         * xcompmgr.c: (border_size), (paint_all), (add_damage),
59         (repair_win), (configure_win):
60         Fix for latest Xfixes changes.
61
62         Submitted by: <stephan@wilkogazu.nl>
63
64 2003-11-19  Carl Worth  <cworth@isi.edu>
65
66         * xcompmgr.c: Eliminate several compiler warnings: missing
67         includes, static functions, unused variables.  Remove confusing
68         informational messages with the word "error" in them.
69
70 2003-11-14  Keith Packard  <keithp@keithp.com>
71
72         * xcompmgr.c: (main):
73         Eliminate all delays in updates; let the X server scheduling
74         handle things.
75
76 2003-11-13  Keith Packard  <keithp@keithp.com>
77
78         * xcompmgr.c:
79         Reduce scheduling latency to 10ms
80
81 2003-11-13  Keith Packard  <keithp@keithp.com>
82
83         * xcompmgr.c: (make_gaussian_map), (sum_gaussian), (make_shadow),
84         (shadow_picture), (paint_all), (main):
85         Use an alpha map instead of an ARGB picture for shadows.
86         Update last_update only when actually updating windows.
87
88 2003-11-11  Keith Packard  <keithp@keithp.com>
89
90         * xcompmgr.c: (win_extents), (paint_all), (add_win), (main):
91         Detect ARGB windows, don't give them shadows, compose them
92         correctly.
93
94 2003-11-10  Keith Packard  <keithp@keithp.com>
95
96         * Makefile:
97         * xcompmgr.c: (root_tile), (main):
98         Track changes to _XROOTPMAP_ID property
99
100 2003-11-09  Keith Packard  <keithp@keithp.com>
101
102         * xcompmgr.c: (time_in_millis), (main):
103         Add a bit of scheduling to updates; update every 30 ms
104         instead of waiting for more events.  Smooths out window moving.
105         Interval needs to be configurable probably.
106
107 2003-11-09  Keith Packard  <keithp@keithp.com>
108
109         * xcompmgr.c: (root_tile):
110         Make sure _XROOTPMAP_ID property is right type, format and length
111         before attempting to use the resulting value.
112
113 2003-11-09  Keith Packard  <keithp@keithp.com>
114
115         * xcompmgr.c: (configure_win):
116         Configure damage must include shadow region, not just window.
117         Also, leaking region on each configure.
118
119 2003-11-09  Keith Packard  <keithp@keithp.com>
120
121         * xcompmgr.c: (main):
122         oops.  Left in an XSynchronize call.
123
124 2003-11-09  Keith Packard  <keithp@keithp.com>
125
126         * xcompmgr.c: (paint_root), (paint_all), (map_win), (add_win),
127         (configure_win), (destroy_win), (main):
128
129         Double buffer updates.
130         Check for InputOnly windows and ignore them
131
132 2003-11-09  Keith Packard  <keithp@keithp.com>
133
134         * xcompmgr.c: (root_tile), (paint_root):
135         Detect root pattern with undocumented _XROOTPMAP_ID property
136
137 2003-11-09  Keith Packard  <keithp@keithp.com>
138
139         * Makefile:
140         * xcompmgr.c: (gaussian), (make_gaussian_map), (sum_gaussian),
141         (make_shadow), (shadow_picture), (win_extents), (paint_all),
142         (map_win), (unmap_win), (add_win), (configure_win), (main):
143         Add drop shadows.