Starting with tag: [TAG release_0_7_1 Daniel Barlow **20050824224938] [permissive-xauthority-parsing csr21@cam.ac.uk**20050821131945 We should not use ECASE when looking at the FAMILY bit of an .Xauthority file, because the user can legitimately have families in there that CLX does not support. Instead, be permissive, on the basis that we will never choose a family we don't support as the best authorization. (Also log a comment about IPv6 support, which triggered this patch. Report from sproingie on #lisp IRC, 2005-08-07) slight refactor to be more explicit about which conditions we are dealing with. ] [back-port the openmcl-clx fork. bryan@lunch.org**20050826183407] [add openmcl versions of aset-float{32,64}. bryan@lunch.org**20050826183523] [dpms Matthew Kennedy **20050712164213] [fast-xxx-pixarray routines actually don't exist for openmcl. bryan d. o'connor **20050902232121] [openmcl: pixarray-32-element-type should be (unsigned-byte 32). bryan d. o'connor **20050902232903] [0.7.2 Daniel Barlow **20060110224818] [TAG release_0_7_2 Daniel Barlow **20060110224946] [TAG release_0_7_2 Daniel Barlow **20060110225807] [TAG release_0_7_2 Daniel Barlow **20060110225946] [keysym-set definitions csr21@cam.ac.uk**20060314092637 Include new keysym-set definitions (taken from Appendix A of the protocol specification) ] [latin-1-keysyms csr21@cam.ac.uk**20060314095131 For those lisps which define the character range 160-255, define character keysyms. Leave a comment about lisps which don't define that range ] [Add support for modern Allegro CL. Should be good for versions >= 6.2. mikel@franz.com**20060113053525 ] [render-op type definition csr21@cam.ac.uk**20060317143424 Define a RENDER-OP type. From Douglas Crosher via mcclim-devel. ] [protocol type fixes csr21@cam.ac.uk**20060317143703 Fix various request argument types. From Douglash Crosher on mcclim-devel. ] [only 256 characters csr21@cam.ac.uk**20060317213650 Whoops. Stop adding latin1 characters at char-code 255. ] [NEWS for 0.7.3 Daniel Barlow **20060328002105] [TAG release_0_7_2 Daniel Barlow **20060328002222] [TAG release_0_7_3 Daniel Barlow **20060328002248] [rydis-fix-open-default-display-screen rydis@cd.chalmers.se**20060331124242 Fixes open-default-display to set the default screen of the display to the default screen from get-default-screen ] [minimally-refactor-buffer-readers-and-writers csr21@cantab.net**20061222182215] [big-request-extension csr21@cantab.net**20070101125353 Implement the protocol portion of the BIG-REQUESTS extension, and the function for clients to query the maximum extended request length. The extension is as yet unused in the protocol implementation of other requests. ] [begin-documenting-big-requests csr21@cantab.net**20070101173416] [render-composite-glyphs-254-glyph-limit csr21@cantab.net**20070103114740 The RenderCompositeGlyphs{8,16,32} requests encode their glyphs not quite as straightforwardly as one big long sequence: instead, they come in chunks of up to 254 (a length of 255 indicates a change of glyphset). Finesse the change of glyphset issue, and fix RENDER-COMPOSITE-GLYPHS for longer sequences of glyphs. ] [clisp-support csr21@cam.ac.uk**20070108114445 CLISP support, from Evgeny M. Zubok on portable-clx 2007-01-07. ] [fix-paren-breakage-from-clisp-support-patch csr21@cam.ac.uk**20070108161209] [fix-clisp-open-x-stream csr21@cam.ac.uk**20070109092939 From Evgeny M. Zubok on portable-clx. ] [fix-get-keyboard-control-autorepeats-offset csr21@cam.ac.uk**20070116120743 The offset for the auto-repeats field in the GetKeyboardControl request was wrong, probably from a transcription error (32 was the size, not the position). ] [fix-render-composite-buffer-overflow csr21@cam.ac.uk**20070117145056 Whoops. byte count / word length confusion led to the wrong amount of space being requested of the buffer, with consequent failures in the CLIM Debugger when run with freetype. ] [comment fix csr21@cam.ac.uk**20070807091026] [make event-key type extensible csr21@cam.ac.uk**20070807091111 Typechecking lisps mean that for every new implemented extension, the type EVENT-KEY in the main body of CLX needs alteration. Instead, define a suitable function for use as a SATISFIES checker, and use it in the type and in the code. ] [use write-sequence for buffer-write-default in sbcl csr21@cam.ac.uk**20070807092756 Since sbcl-0.9 or so, there has been a check to avoid the useless lseek() calls on dual-channel streams (including socket streams), so write-sequence should be fine for performance. ] [compile-with-*rdff*-double-float csr21@cam.ac.uk**20071123110204 From Stelian Ionescu (fe[nl]ix on #lisp IRC). ] [render clip mask fix csr21@cantab.net**20080120181118 The code for adjusting the client's view of the server's clip mask on pictures would erroneously transfer information the wrong way. Found by Andy Hefner ] [pict-ops update to protocol version 0.10 csr21@cantab.net**20080601120904 From Andy Hefner. ] [launchd-darwin-support csr21@cantab.net**20080622175327 From Rudi Schlatte ] [Support new-style SBCL stack allocation control Nikodemus Siivola **20080801110016] [lock-around-resource-id-management csr21@cantab.net**20080822060143 Patch from Andy Hefner on mcclim-devel ] [resource-id management csr21@cantab.net**20080824173713 Based on a patch from Andy Hefner: pathological programs can cause the resource ID counter to wrap, so we need to keep track of all resource IDs in use, not just those which have cache entries. ] [cache only one's own resource IDs csr21@cantab.net**20080824173842 Should fix the problem described by Shawn Betts on sbcl-devel 2008-07-11 (and possibly also the one on portable-clx 2008-07-10). Analysis on clisp-devel around the same dates, too. ] [always return object from save-id csr21@cantab.net**20080826211255 Whoops; the previous change broke resources from other clients entirely. Spotted while testing McCLIM's highlight and paste. ] [equality comparison for new uncached IDs c.rhodes@gold.ac.uk**20081006120600 Patch from Shawn ] [don't need colormap to get window visual info c.rhodes@gold.ac.uk**20081008095652 We can go directly to window-visual-info. It might be that implementing the non-:true-color branch of FIND-WINDOW-PICTURE-FORMAT will need the COLORMAP; patches subsequent to this one will probably help that out. ] [colormap / cacheing interaction fixes c.rhodes@gold.ac.uk**20081008095922 Formally, we can't cache colormaps of other clients, or the server; this means that when we look up a colormap, we will usually be creating one. That means that we can't rely on the only colormap in town being EQL to the default colormap, which has its visual-info slot already filled in; instead, when we lookup a colormap from a window, if its visual-info is not filled in, set it to the window's visual-info. [ COLORMAP-VISUAL-INFO is exported from XLIB but not documented in the CLX manual. It might be ripe for non-exporting, particularly given that I can't find any internet-accessible code which uses it. This hole was noted from its (unnecessary) use in xrender.lisp ] ] [mumble-equal microoptimization c.rhodes@gold.ac.uk**20081008100308 In WINDOW-EQUAL and friends, EQL arguments imply EQUAL. ] [define pad32 accessor (useful in xtest requests) c.rhodes@gold.ac.uk**20081030152235] [xtest extension implementation c.rhodes@gold.ac.uk**20081030152321 From Lionel Flandrin , motivated by stumpwm functionality discussed in message <86hc9p271a.fsf@simias.hd.free.fr> on stumpwm-devel (2008-08-13, "XTest extension support for portable-clx") ] [robustify get-wm-class c.rhodes@gold.ac.uk**20081030154635 Problem and test code from Shawn Betts ]