summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-07-24XQuartz: Added a "Check for X11 Updates..." menu item.Jeremy Huddleston5-0/+37
(cherry picked from commit 305144bfa4b59791123c44e869fab93a084792d6)
2009-07-20XQuartz: Initial support for automatic updates through SparkleJeremy Huddleston7-3/+66
(cherry picked from commit c45f1be36426bceeef9af67c26351114f14f5277)
2009-07-16XQuartz: Localization updatesJeremy Huddleston51-2649/+1969
2009-07-16XQuartz: Cleanup getGlCapabilities to avoid hardcoding the number of displaysJeremy Huddleston1-39/+18
2009-07-16XQuartz: Allow more than 3 OSX displaysJeremy Huddleston1-1/+1
2009-07-15XQuartz: Cleanup keymap locking, fix a possible synchro bugJeremy Huddleston1-16/+13
2009-07-031.4.2-apple45Jeremy Huddleston1-1/+1
2009-07-03XQuartz Bundle version 2.3.4Jeremy Huddleston1-2/+2
2009-07-03XQuartz: ProcAppleWMAttachTransient to play nice with the new Dock in SLJeremy Huddleston4-3/+70
(cherry picked from commit ddc0242d8f291d0f961ba9aa8c883e39861ce2ad)
2009-07-011.4.2-apple44Jeremy Huddleston1-1/+1
2009-06-27XQuartz: Don't leave zombied processes at startupJeremy Huddleston1-2/+38
(cherry picked from commit 40c1406830588fa85d880e9f4e9ca570db1db306)
2009-06-27XQuartz: 64bit fix for screen origin in AppleWMJeremy Huddleston1-1/+1
(cherry picked from commit 60a757d2802a5c34acd91ca9a052937b5a169ede)
2009-06-27XQuartz: More localization updatesJeremy Huddleston8-226/+218
2009-06-19XQuartz: More localization updatesJeremy Huddleston23-2456/+1709
2009-06-02XQuartz: Default to forcing the dialog box before quitting.Jeremy Huddleston1-1/+1
This will show the quit dialog for users of other WMs.
2009-05-29fb: Use the correct planemask in fbFillRegionTiled.Jeremy Huddleston1-5/+7
2009-05-28XQuartz: English localization update for HIG complianceJeremy Huddleston2-6/+6
2009-05-281.4.2-apple43Jeremy Huddleston1-1/+1
2009-05-27XQuartz: More localization updatesJeremy Huddleston39-2555/+1719
2009-05-05XQuartz: pbproxy standalone: added missing variable declarations.Jeremy Huddleston1-0/+3
2009-04-22XQuartz: Localization updateJeremy Huddleston69-0/+69746
2009-04-11XQuartz: Make sure the bgMouseLocationUpdated state is consistentJeremy Huddleston1-18/+23
2009-04-111.4.2-apple42Jeremy Huddleston1-1/+1
2009-04-11XQuartz: Use correct values for ProximityIn and ProximityOutJeremy Huddleston1-3/+1
This was the other underlying cause of teh 100% CPU tablet issue.
2009-04-11XQuartz: Solve the tablet 100% CPU bugJeremy Huddleston1-3/+3
This happened because we put a byte in the fd to wake up dispatch, but we never actually enqueued anything in mieq because the num_events was 0.
2009-04-11XQuartz: Re-enable background window checkingJeremy Huddleston1-8/+2
since that code was not the culprit for the wacom tablet, background 100% CPU bug
2009-04-11XQuartz: Only set MotionNotify on activation if it is updated.Jeremy Huddleston1-1/+5
2009-04-11XQuartz: Make sure the Fn doesn't trigger unneccessary calls to ↵Jeremy Huddleston3-28/+41
DarwinUpdateModKeys()
2009-04-11XQuartz: Re-enable Fn as an option for 3button mouse simulation.Jeremy Huddleston1-2/+5
Patch from Martin Otte <otte@duke.edu>
2009-04-09XQuartz: xprSetWindowLevel updated to store the level requested by the WMJeremy Huddleston1-1/+15
2009-04-091.4.2-apple41Jeremy Huddleston1-1/+1
2009-04-09XQuartz: Update window levels when changing rootless stateJeremy Huddleston3-12/+24
2009-04-09XQuartz: Fix window levels for rooted mode to allow showing the menu bar.Jeremy Huddleston1-3/+5
2009-04-09XQuartz: Properly set the window level for the root windowJeremy Huddleston4-20/+21
2009-04-09XQuartz: Properly set the menu bar and hotkey state when changing rootless mode.Jeremy Huddleston1-4/+11
Currently no code path exhibits the broken behavior since we only toggle into rootless if we don't have the root.
2009-04-09XQuartz: In rooted mode, make sure we start in the hidden state.Jeremy Huddleston1-0/+3
2009-04-06XQuartz: Send MotionNotify before button presses when X11 is in the backgroundJeremy Huddleston1-19/+30
2009-04-06XQuartz: Revert most of the previous override redirect patchJeremy Huddleston1-10/+0
The changes actually caused all windows to move to the current space. Instead, we're going with a fix entirely within Xplugin that depends on quartz-wm being the window-manager for now.
2009-04-051.4.2-apple40Jeremy Huddleston1-1/+1
2009-04-05XQuartz: Use updated Xplugin API to send overide-redirect windows to the ↵Jeremy Huddleston1-15/+26
current space when they're ordered in This fixes the annoying "using a menu moves me to another space" bug
2009-04-05XQuartz: Send a MotionNotify event for the mouse cursor when activating X11.appJeremy Huddleston1-21/+30
Otherwise if X11.app was activated with a mouse click, the location of the even is the last location of the cursor before X11 was deactivated
2009-04-011.4.2-apple39Jeremy Huddleston1-1/+1
2009-04-01XQuartz: Still send mouse events while X11 is in the background if we have ↵Jeremy Huddleston1-1/+1
test extensions enabled
2009-04-01XQuartz: Return BadRequest when SendPSN isn't implemented rather than successJeremy Huddleston1-5/+6
2009-04-01XQuartz: Pad xAppleDRINotifyEvent to 32bytes to match sizeof(xEvent)Jeremy Huddleston1-1/+4
2009-03-31XQuartz: Don't report mouse events while X11 is not the foreground applicationJeremy Huddleston1-7/+4
2009-03-301.4.2-apple38Jeremy Huddleston1-1/+1
2009-03-30XQuartz: Fix mouse tracking for quake, et. al. in wineJeremy Huddleston1-9/+17
Patch courtesy of Codeweavers Fix mouse movement tracking. For a non-window-related mouse-move event, calculate the new position by adding the event's delta-x and delta-y values to the previous mouse position. Do not rely on the current mouse position because it may have been changed by a XWarpPointer call.
2009-03-30XQuartz: SnowLeopard: Help system book name changed in 10.6Jeremy Huddleston1-8/+9
(cherry picked from commit b57cb05c69acbedb00a97234099ea104309aa2cb)
2009-03-151.4.2-apple37Jeremy Huddleston1-1/+1