ChangeLog revision 9f1d9476
1commit a962ae522f28ca644ad0b757eae660cd2e504922 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sat Dec 3 11:54:51 2022 -0800 4 5 transset 1.0.3 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 2a08d291a44d840b08c37516604d9f6e966ca0ac 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Thu Jul 28 17:30:21 2022 -0700 12 13 gitlab CI: stop requiring Signed-off-by in commits 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit 1e8c563f178ce5083b76b98126c359e91a6cedd9 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Sat Oct 29 11:23:05 2022 -0700 20 21 Remove unnecessary casts from malloc() and XFree() calls 22 23 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 24 25commit aa3c53eeaf9ea57e2c29ae6955cff598d0d51ffa 26Author: Alan Coopersmith <alan.coopersmith@oracle.com> 27Date: Sat Oct 29 11:15:10 2022 -0700 28 29 dsimple.c: Correct comments 30 31 Fix typos and list correct header name 32 33 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 34 35commit 21006cca527457db048b04e964d998c87e57e34c 36Author: Alan Coopersmith <alan.coopersmith@oracle.com> 37Date: Sat Oct 29 11:02:31 2022 -0700 38 39 Declare target_win static 40 41 Clears clang warning: 42 transSet.c:43:8: warning: no previous extern declaration for non-static 43 variable 'target_win' [-Wmissing-variable-declarations] 44 Window target_win; 45 ^ 46 transSet.c:43:1: note: declare 'static' if the variable is not intended 47 to be used outside of this translation unit 48 Window target_win; 49 ^ 50 51 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 52 53commit 6d8a9a224313764358b184a709c643cf042f45ed 54Author: Alan Coopersmith <alan.coopersmith@oracle.com> 55Date: Sat Feb 19 11:10:05 2022 -0800 56 57 transset.man: Update bug reporting URL from bugzilla to gitlab 58 59 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 60 61commit ee3b7ee3b53cd4ac560383818d55f63ac2c8af28 62Author: Alan Coopersmith <alan.coopersmith@oracle.com> 63Date: Sat Dec 4 10:10:35 2021 -0800 64 65 Build xz tarballs instead of bzip2 66 67 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 68 69commit ebc3a034e9526b541bec8db3a38fb7861380164c 70Author: Alan Coopersmith <alan.coopersmith@oracle.com> 71Date: Sat Dec 4 10:10:31 2021 -0800 72 73 gitlab CI: add a basic build test 74 75 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 76 77commit 3677587612a9bc3a2590827394052b82248b4183 78Author: Alan Coopersmith <alan.coopersmith@oracle.com> 79Date: Wed Nov 21 16:57:53 2018 -0800 80 81 Update configure.ac bug URL for gitlab migration 82 83 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 84 85commit cb3cd7642952b53a5fdca46e5db021a005100eba 86Author: Alan Coopersmith <alan.coopersmith@oracle.com> 87Date: Fri Nov 16 20:51:20 2018 -0800 88 89 Update README for gitlab migration 90 91 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 92 93commit f250616a10ef8bbefc2fc62df6a3afb461fedcdd 94Author: Alan Coopersmith <alan.coopersmith@oracle.com> 95Date: Fri Mar 9 21:30:15 2018 -0800 96 97 transset 1.0.2 98 99 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 100 101commit 0e08633cb33874840915db81b8c11503ec9efa0c 102Author: Alan Coopersmith <alan.coopersmith@oracle.com> 103Date: Thu May 7 22:52:22 2015 -0700 104 105 Fix warnings about signed vs. unsigned comparison 106 107 Part of https://bugs.freedesktop.org/show_bug.cgi?id=25542 108 109 dsimple.c:262:19: warning: comparison of integers of different signs: 'int' and 110 'unsigned int' [-Wsign-compare] 111 for (i = 0; i < nchildren; i++) { 112 ~ ^ ~~~~~~~~~ 113 dsimple.c:296:19: warning: comparison of integers of different signs: 'int' and 114 'unsigned int' [-Wsign-compare] 115 for (i = 0; i < nchildren; i++) { 116 ~ ^ ~~~~~~~~~ 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 119 120commit 7c0c3afd6f5bfc02fd98a2da03f7fb7d6567ccf3 121Author: Alan Coopersmith <alan.coopersmith@oracle.com> 122Date: Wed Dec 31 00:24:49 2014 -0800 123 124 Only use property pointer if XGetWindowProperty returns success 125 126 In Xlib versions prior to 1.6, if XGetWindowProperty returns a failure, 127 it didn't always set the property pointer to NULL, and could leave it 128 uninitialized. 129 130 Reported by Oracle Parfait 1.5.1: 131 Error: Uninitialised memory (CWE 456) 132 Possible access to uninitialised memory '&data' 133 at line 298 of transSet.c in function 'main'. 134 &data allocated at line 154. 135 at line 299 of transSet.c in function 'main'. 136 &data allocated at line 154. 137 at line 300 of transSet.c in function 'main'. 138 &data allocated at line 154. 139 140 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 141 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 142 143commit eeebd3cd6bb4373ca6da5c0b6d5caa1a41d5bffc 144Author: Alan Coopersmith <alan.coopersmith@oracle.com> 145Date: Sat May 31 21:39:32 2014 -0700 146 147 autogen.sh: Honor NOCONFIGURE=1 148 149 See http://people.gnome.org/~walters/docs/build-api.txt 150 151 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 152 153commit 9380d6ff8b7dd1805d21caef9865537d2ce075ba 154Author: Alan Coopersmith <alan.coopersmith@oracle.com> 155Date: Sat May 31 21:38:41 2014 -0700 156 157 configure: Drop AM_MAINTAINER_MODE 158 159 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 160 161commit 39db25e110cfedcec99394dfa7614ca248685c0d 162Author: Alan Coopersmith <alan.coopersmith@oracle.com> 163Date: Fri May 17 17:47:14 2013 -0700 164 165 transset 1.0.1 166 167 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 168 169commit fc4bf3cda6d14cac9272f8399bb6dc614c1ef956 170Author: Alan Coopersmith <alan.coopersmith@oracle.com> 171Date: Fri Feb 22 22:05:39 2013 -0800 172 173 Add the options to the man page (they were all missing before) 174 175 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 176 177commit f59b8db649c1596a38ce20025417c4060d442d64 178Author: Alan Coopersmith <alan.coopersmith@oracle.com> 179Date: Fri Feb 22 21:33:25 2013 -0800 180 181 Store min & max as doubles, not floats 182 183 Since atof generates doubles, and we use them to compare/limit the values 184 of the double "d", might as well keep them in the same format instead of 185 doing unnecessary conversions. 186 187 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 188 189commit e79903a50b0a9cba9d0e41fc2e389117f3ff42ef 190Author: Alan Coopersmith <alan.coopersmith@oracle.com> 191Date: Fri Feb 22 21:27:00 2013 -0800 192 193 Typo fixes in verbose message & comment 194 195 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 196 197commit da0682051e880faa2ef1accac388040bb52b46d8 198Author: Alan Coopersmith <alan.coopersmith@oracle.com> 199Date: Fri Feb 22 21:22:43 2013 -0800 200 201 Use correct variable for printing current opacity 202 203 Found by clang: 204 transSet.c:303:30: warning: variable 'opacity' is uninitialized when used here 205 [-Wuninitialized] 206 (double) opacity / OPAQUE); 207 ^~~~~~~ 208 209 When running transset -v, it prints the current opacity of a window 210 before changing it, but was printing garbage - after this fix, correctly 211 prints the value set by the previous run. 212 213 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 214 215commit 65f010b8c4ef0e4fa5fc6a0679173f81c7a4b626 216Author: Alan Coopersmith <alan.coopersmith@oracle.com> 217Date: Fri Feb 22 21:17:59 2013 -0800 218 219 Move release date from transset.c to configure.ac so we remember to update it 220 221 Currently our 2012 release prints: 222 released: 2007-09-21 223 when you run transset --version 224 225 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 226 227commit 6cd34b45c87717ae7901993e32b99a43652fa0f3 228Author: Alan Coopersmith <alan.coopersmith@oracle.com> 229Date: Fri Feb 22 21:14:09 2013 -0800 230 231 Include PACKAGE_STRING in --version output 232 233 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 234 235commit 2b57aeb0ea616cfca8e6fcbd844960269af8c533 236Author: Alan Coopersmith <alan.coopersmith@oracle.com> 237Date: Fri Feb 22 21:11:04 2013 -0800 238 239 Combine usage message into single string/call 240 241 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 242 243commit a2485424bd0f184700dd0a4f0823fb4c4cf25f66 244Author: Arnaud Fontaine <arnau@debian.org> 245Date: Thu Jun 7 19:33:28 2012 +0900 246 247 Fix program name in usage information, transset instead of transset-df. 248 249commit 49d17bde62694c2f0e2bb7883641bd60830c6bd5 250Author: Arnaud Fontaine <arnau@debian.org> 251Date: Tue Jun 5 14:55:54 2012 +0900 252 253 transset 1.0.0 254 255commit 5f23076c05c58e790eaffa66ed6b676f5f736555 256Author: Arnaud Fontaine <arnau@debian.org> 257Date: Tue Jun 5 14:43:11 2012 +0900 258 259 Rename dpy to disp in function parameter to avoid shadowing dpy global declaration. 260 261commit 8cc91040c81e5e33e6422066763bcc231c778011 262Author: Arnaud Fontaine <arnau@debian.org> 263Date: Tue Jun 5 14:29:19 2012 +0900 264 265 Add missing const keywords on Fatal_Error() and program_name to clear GCC warnings. 266 267commit ef2753866bf0b51a38484ae5a86562d5057fabab 268Author: Arnaud Fontaine <arnau@debian.org> 269Date: Tue Jun 5 14:27:02 2012 +0900 270 271 Add _X_ATTRIBUTE_PRINTF attribute to Fatal_Error() to clear GCC warning. 272 273commit bd4ca2af9f39e3282e319e6d31450e04b1b16e64 274Author: Arnaud Fontaine <arnau@debian.org> 275Date: Tue Jun 5 14:26:08 2012 +0900 276 277 Add _X_NORETURN to Usage() to clear GCC warning. 278 279commit dcdc705fe7af9e834714219a618ddfd74b70294f 280Author: Arnaud Fontaine <arnau@debian.org> 281Date: Tue Jun 5 14:18:42 2012 +0900 282 283 Use _X_NORETURN from xproto 7.0.17 instead of checking __GNUC__. 284 285commit 051275fbad049b6b88da4350683aa391e9e8b94f 286Author: Arnaud Fontaine <arnau@debian.org> 287Date: Tue Jun 5 14:08:30 2012 +0900 288 289 Add autogen.sh to EXTRA_DIST. 290 291commit c70e20694b27928429715b964f32e0abc519cb19 292Author: Arnaud Fontaine <arnau@debian.org> 293Date: Tue Jun 5 12:37:09 2012 +0900 294 295 Clear GCC warning (-Wmaybe-uninitialized). 296 297commit 7018537e9003a1fd311a5875d12f135b9057c184 298Author: Arnaud Fontaine <arnau@debian.org> 299Date: Fri Feb 10 10:44:51 2012 +0900 300 301 Add copyright statement and update accordingly COPYING file. 302 303 Reviewed-by: Gaetan Nadon<memsize@videotron.ca> 304 305commit 43fb446ddc881f089200ec0d732631d3d7a46544 306Author: Arnaud Fontaine <arnau@debian.org> 307Date: Mon Jan 23 11:49:16 2012 +0900 308 309 Update README. 310 311commit cbc473428a71299255d11bfc1dcc7db6a9985eec 312Author: Gaetan Nadon <memsize@videotron.ca> 313Date: Fri Jan 20 15:00:14 2012 -0500 314 315 config: add dependency on xproto 316 317 transSet.c includes <X11/Xatom.h> 318 319 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 320 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 321 322commit 6c6df06a876eac0a2cf04e4c1020bd8590e3f87c 323Author: Gaetan Nadon <memsize@videotron.ca> 324Date: Fri Jan 20 14:47:42 2012 -0500 325 326 Remove XFree86 and IMakefile version control information in source code 327 328 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 329 330commit ced0d07de735fc4f2fec47b64eeb8d6bd1cdf7ac 331Author: Gaetan Nadon <memsize@videotron.ca> 332Date: Fri Jan 20 14:37:58 2012 -0500 333 334 config: upgrade, comment and fix autoconf warnings 335 336 In the same way other xorg modules have been. 337 338 - minimum autoconf level is 2.60 339 - AC_CONFIG_HEADER (singular) is obsolete 340 341 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 342 343commit 7ffbc93b24e3d9a27046d6c52501c0b81a32bd37 344Author: Gaetan Nadon <memsize@videotron.ca> 345Date: Fri Jan 20 14:18:31 2012 -0500 346 347 make: remove $(LIBOBJS) dead code 348 349 Starting at Autoconf 2.53, the use of LIBOBJS is an error. 350 http://www.gnu.org/software/autoconf/manual/autoconf.html# 351 AC_005fLIBOBJ-vs-LIBOBJS 352 353 There are no system functions to override in this module. 354 355 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 356 357commit 0530b5b6f17febd1f50234aa242b7c0a83ebbcd3 358Author: Gaetan Nadon <memsize@videotron.ca> 359Date: Fri Jan 20 13:59:46 2012 -0500 360 361 man: normalize man page header/footer 362 363 Do not hard coded man page section number. 364 365 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 366 367commit 77b57c63393ad16588b1da1503640c3af9657e07 368Author: Gaetan Nadon <memsize@videotron.ca> 369Date: Fri Jan 20 12:16:14 2012 -0500 370 371 man: use X.Org makefile which will also fix failing distcheck 372 373 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 374 375commit 1dceb7139994565d1142b12938560c0650a636f4 376Author: Gaetan Nadon <memsize@videotron.ca> 377Date: Fri Jan 20 11:48:32 2012 -0500 378 379 autogen.sh: use the X.Org version 380 381 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 382 383commit 33c0e20c588fa87ac2b9f2f89267024a349727c3 384Author: Gaetan Nadon <memsize@videotron.ca> 385Date: Fri Jan 20 11:39:27 2012 -0500 386 387 AUTHORS: remove empty file 388 389 Not required when Automake is initialized with "foreign" keyword. 390 It can be added with proper content anytime. 391 392 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 393 394commit ad4179a465586d0f3d70adc2f0d2ca78a1dad84c 395Author: Arnaud Fontaine <arnau@debian.org> 396Date: Wed Dec 14 20:26:17 2011 +0900 397 398 Get rid of useless includes. 399 400commit d371dac4aeffa1ff782d5dd44479b42c3fe3a282 401Author: Arnaud Fontaine <arnau@debian.org> 402Date: Wed Dec 14 20:06:22 2011 +0900 403 404 Use enum for selected method for readability sake. 405 406commit 79549aefac1c7babbcb54e270520caaee8982b15 407Author: Arnaud Fontaine <arnau@debian.org> 408Date: Wed Dec 14 19:28:41 2011 +0900 409 410 Use Bool rather than int type for booleans. 411 412commit 84d26bdf9c96b51dccedd89b70095bae1b13fdd5 413Author: Arnaud Fontaine <arnau@debian.org> 414Date: Wed Dec 14 19:24:55 2011 +0900 415 416 Fix GCC warning (-Wuninitialized). 417 418commit 7fe1a565a902798a8d69ea0c3f2c8c2e7055189c 419Author: Arnaud Fontaine <arnau@debian.org> 420Date: Wed Dec 14 19:09:16 2011 +0900 421 422 Close property the Display and fix error exit code value. 423 424commit 55597dda964d335e5f63892c1b37c36b90eeffb4 425Author: Arnaud Fontaine <arnau@debian.org> 426Date: Wed Dec 14 19:05:31 2011 +0900 427 428 Remove useless malloc(). 429 430commit 3dbf96b34c732c74bc96abeb7d371579d20ce56f 431Author: Arnaud Fontaine <arnau@debian.org> 432Date: Wed Dec 14 19:04:57 2011 +0900 433 434 Free properly memory allocated by XQueryTree(). 435 436commit 8605d0178461b98099c5dee33b19eb8204487487 437Author: Arnaud Fontaine <arnau@debian.org> 438Date: Sun Oct 30 20:33:40 2011 +0900 439 440 Fix coding style. 441 442commit e4d0f93a64dbb9b77ee6a32dcf85ce1b65449e9d 443Author: Arnaud Fontaine <arnau@debian.org> 444Date: Sun Oct 30 20:17:51 2011 +0900 445 446 Add missing static qualifiers. 447 448commit b2c269400d3138802831e583b5b42fd20846b0ce 449Author: Arnaud Fontaine <arnau@debian.org> 450Date: Sun Oct 30 20:12:22 2011 +0900 451 452 Fix GCC warning about old-style function definitions. 453 454commit f8a9c03bafc1a8c1981076cd31299d9a2096dfca 455Author: Arnaud Fontaine <arnau@debian.org> 456Date: Sun Oct 30 20:02:03 2011 +0900 457 458 Add INSTALL file. 459 460commit b042c46a6cb03284d3b8f4c9bc1f363b9c7a66e8 461Author: Arnaud Fontaine <arnau@debian.org> 462Date: Sun Oct 30 17:26:49 2011 +0900 463 464 Add .gitignore. 465 466commit 2fe8dadbd42a17acff20a95e889fe6769d49a4ca 467Author: Arnaud Fontaine <arnau@debian.org> 468Date: Sun Oct 30 17:22:18 2011 +0900 469 470 Get rid of unused code from dsimple.c. 471 472commit 6da6193021802ba1455a953e6e21707e88f18985 473Merge: 705d787 c63bf55 474Author: Arnaud Fontaine <arnau@debian.org> 475Date: Sun Oct 30 16:47:08 2011 +0900 476 477 Merge branch 'transset-df' 478 479commit c63bf55e69fc50e08b9bf500e9b05cf36ce48680 480Author: Arnaud Fontaine <arnau@debian.org> 481Date: Sun Oct 30 16:46:01 2011 +0900 482 483 2007-09-21 Daniel Forchheimer <n04df@student.lth.se> 484 Release v6 485 * transSet.c 486 Select flag: --actual 487 Set transparency to the actual focused X11 window 488 Thanks to Roman Divacky for the patch 489 490commit 88d9e28837f71f391402654c33394635d27d4b30 491Author: Arnaud Fontaine <arnau@debian.org> 492Date: Sun Oct 30 16:45:00 2011 +0900 493 494 2006-01-10 Daniel Forchheimer <n04df@efd.lth.se> 495 Release v5 496 * transSet.c: 497 Applied patch so that transset-df compiles with gcc 2.95 498 Thanks to Andreas Kohn for the patch 499 500commit 470ea5431ffe0a54995c93506ab5e55ce534e039 501Author: Arnaud Fontaine <arnau@debian.org> 502Date: Sun Oct 30 16:43:09 2011 +0900 503 504 2005-03-13 Daniel Forchheimer <n04df@efd.lth.se> 505 Release v4 506 Bugfix: select by name or id didn't work in many 507 windowmanagers like xfce and wmaker. 508 * transSet.c: 509 Function get_top_window() fixes the bug 510 Options verbose, no-regex 511 * dsimple.c: 512 Window_With_Name_Regex() now takes same arguments as Window_With_Name() 513 * Makefile: 514 Added simple install instructions 515 516 2005-02-08 Daniel Forchheimer <n04df@efd.lth.se> 517 Select name now takes a regular expression 518 Fixed all warnings 519 * dsimple.c: 520 Window_With_Name_Regex() 521 * transSet.c: 522 use the new regex function 523 print the name (if possible) 524 * dsimple.h: 525 Added the new functions to avoid warnings 526 527commit 30300bf213557b99bcfd3d92587f6a96e9494124 528Author: Arnaud Fontaine <arnau@debian.org> 529Date: Sun Oct 30 16:41:56 2011 +0900 530 531 2005-01-14 Daniel Forchheimer <n04df@efd.lth.se> 532 Release v3 533 * transSet.c: 534 Select by name (-n, --name) 535 Select by id (-i, --id) 536 537commit ed0236ce0b9fcdbd7e7874327c65610b3f13d47e 538Author: Arnaud Fontaine <arnau@debian.org> 539Date: Sun Oct 30 16:41:04 2011 +0900 540 541 2005-01-14 Daniel Forchheimer <n04df@efd.lth.se> 542 * transSet.c: 543 Options increase/decrease 544 Options maximum/minimum 545 546commit 55a5a8da9b0a2b997096319e8d990a70ee31ac94 547Author: Arnaud Fontaine <arnau@debian.org> 548Date: Sun Oct 30 16:40:04 2011 +0900 549 550 2005-01-13 Daniel Forchheimer <n04df@efd.lth.se> 551 552 * transSet.c: (main): 553 Forked transset-df of transset 554 Added flags 555 Added select without clicking 556 Wrote usage 557 558 * dsimple.c: 559 Added function to select without clicking 560 561commit 705d787a5b35a8409c482526b5c2955aa5371b1e 562Author: Alan Coopersmith <alan.coopersmith@oracle.com> 563Date: Fri Oct 21 18:32:26 2011 -0700 564 565 Remove unneccessary configure steps 566 567 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 568 569commit 6ceb665aeb5164bc5668786fc718dd0b0ba2a76c 570Author: Alan Coopersmith <alan.coopersmith@oracle.com> 571Date: Fri Oct 21 18:30:58 2011 -0700 572 573 Drop unnecessary dependencies 574 575 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 576 577commit 0f8d2e6b1526de1558312c1b994318867d92f245 578Author: Stuart Kreitman <stuart.kreitman@oracle.com> 579Date: Mon Nov 23 16:41:59 2009 -0800 580 581 Convert to autoconf/automake 582 583commit bb69f00c4876d80daf0c01706bbcc52dc30302d5 584Author: Keith Packard <keithp@keithp.com> 585Date: Tue Jan 20 20:03:02 2004 +0000 586 587 2004-01-20 Keith Packard <keithp@keithp.com> 588 589 * transSet.c: (main): 590 Change property name to _NET_WM_WINDOW_OPACITY 591 Report values as doubles. 592 Delete property when opaque. 593 594commit 59e751294611cb043252e6b8180601ac71b17bcf 595Author: Keith Packard <keithp@keithp.com> 596Date: Mon Nov 24 17:12:27 2003 +0000 597 598 Initial revision 599