packages feed

X11-xft 0.2 → 0.3

raw patch · 2 files changed

+5/−5 lines, 2 filessetup-changedPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- Graphics.X11.Xft: xftDrawCreateAlpha :: (Integral a) => Display -> Pixmap -> a -> IO XftDraw
+ Graphics.X11.Xft: xftDrawCreateAlpha :: Integral a => Display -> Pixmap -> a -> IO XftDraw
- Graphics.X11.Xft: xftDrawGlyphs :: (Integral a, Integral a1, Integral a2) => XftDraw -> XftColor -> XftFont -> a1 -> a2 -> [a] -> IO ()
+ Graphics.X11.Xft: xftDrawGlyphs :: (Integral a1, Integral a2, Integral a) => XftDraw -> XftColor -> XftFont -> a1 -> a2 -> [a] -> IO ()
- Graphics.X11.Xft: xftDrawRect :: (Integral a, Integral a1, Integral a2, Integral a3) => XftDraw -> XftColor -> a -> a1 -> a2 -> a3 -> IO ()
+ Graphics.X11.Xft: xftDrawRect :: (Integral a1, Integral a3, Integral a2, Integral a) => XftDraw -> XftColor -> a -> a1 -> a2 -> a3 -> IO ()
- Graphics.X11.Xft: xftDrawSetSubwindowMode :: (Integral a) => XftDraw -> a -> IO ()
+ Graphics.X11.Xft: xftDrawSetSubwindowMode :: Integral a => XftDraw -> a -> IO ()
- Graphics.X11.Xft: xftDrawString :: (Integral a, Integral a1) => XftDraw -> XftColor -> XftFont -> a -> a1 -> String -> IO ()
+ Graphics.X11.Xft: xftDrawString :: (Integral a1, Integral a) => XftDraw -> XftColor -> XftFont -> a -> a1 -> String -> IO ()

Files

Setup.lhs view
@@ -1,3 +1,3 @@ #!/usr/bin/env runhaskell > import Distribution.Simple-> main = defaultMainWithHooks defaultUserHooks+> main = defaultMain
X11-xft.cabal view
@@ -1,5 +1,5 @@ name:           X11-xft-version:        0.2+version:        0.3 license:        LGPL license-file:   LICENSE author:         Clemens Fruhwirth@@ -10,7 +10,7 @@ exposed-modules:    Graphics.X11.Xft, Graphics.X11.Xrender extensions:         ForeignFunctionInterface build-depends:	    base, haskell98, X11>=1.2.1, utf8-string>=0.1-include-dirs:       /usr/include/freetype2-ghc-options:        -O2 -fasm -funbox-strict-fields-extra-libraries:    "Xft"+ghc-options:        -funbox-strict-fields+pkgconfig-depends:  xft extra-source-files: Hello.hs+build-type:         Simple