packages feed

X11 1.10 → 1.10.1

raw patch · 3 files changed

+8/−4 lines, 3 filesnew-uploaderPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGES.md view
@@ -1,5 +1,9 @@ # Change Log / Release Notes +## 1.10.1 (2021-08-15)++  * Fixed possible high CPU usage of some blocking calls with the threaded RTS (#78)+ ## 1.10 (2021-05-31)    * Added `setClientMessageEvent'` (#71)
Graphics/X11/Xlib/Event.hsc view
@@ -494,7 +494,7 @@                 XEventPtr -> IO Status  -- | interface to the X11 library function @XWindowEvent()@.-foreign import ccall unsafe "HsXlib.h XWindowEvent"+foreign import ccall safe "HsXlib.h XWindowEvent"         windowEvent :: Display -> Window -> EventMask -> XEventPtr -> IO ()  -- | interface to the X11 library function @XCheckWindowEvent()@.@@ -503,7 +503,7 @@                 XEventPtr -> IO Bool  -- | interface to the X11 library function @XMaskEvent()@.-foreign import ccall unsafe "HsXlib.h XMaskEvent"+foreign import ccall safe "HsXlib.h XMaskEvent"         maskEvent :: Display -> EventMask -> XEventPtr -> IO ()  -- | interface to the X11 library function @XCheckMaskEvent()@.@@ -524,7 +524,7 @@         putBackEvent :: Display -> XEventPtr -> IO ()  -- | interface to the X11 library function @XPeekEvent()@.-foreign import ccall unsafe "HsXlib.h XPeekEvent"+foreign import ccall safe "HsXlib.h XPeekEvent"         peekEvent :: Display -> XEventPtr -> IO ()  -- XFilterEvent omitted (can't find documentation)
X11.cabal view
@@ -1,5 +1,5 @@ name:               X11-version:            1.10+version:            1.10.1 synopsis:           A binding to the X11 graphics library description:        A Haskell binding to the X11 graphics library. The binding is a direct                     translation of the C binding; for documentation of these calls, refer