gloss 1.6.0.1 → 1.6.1.1
raw patch · 3 files changed
+5/−5 lines, 3 filesdep ~GLUTdep ~OpenGLdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: GLUT, OpenGL, base
API changes (from Hackage documentation)
Files
- Graphics/Gloss/Data/Picture.hs +0/−1
- Graphics/Gloss/Internals/Interface/Backend/GLUT.hs +1/−0
- gloss.cabal +4/−4
Graphics/Gloss/Data/Picture.hs view
@@ -30,7 +30,6 @@ import Graphics.Gloss.Data.Point import Graphics.Gloss.Data.Vector import Graphics.Gloss.Internals.Render.Bitmap-import Control.Monad import Codec.BMP import Foreign.ForeignPtr import Foreign.Marshal.Alloc
Graphics/Gloss/Internals/Interface/Backend/GLUT.hs view
@@ -311,6 +311,7 @@ GLUT.SpecialKey GLUT.KeyNumLock -> SpecialKey KeyNumLock GLUT.SpecialKey GLUT.KeyBegin -> SpecialKey KeyBegin GLUT.SpecialKey GLUT.KeyDelete -> SpecialKey KeyDelete+ GLUT.SpecialKey (GLUT.KeyUnknown _) -> SpecialKey KeyUnknown GLUT.MouseButton GLUT.LeftButton -> MouseButton LeftButton GLUT.MouseButton GLUT.MiddleButton -> MouseButton MiddleButton GLUT.MouseButton GLUT.RightButton -> MouseButton RightButton
gloss.cabal view
@@ -1,5 +1,5 @@ Name: gloss-Version: 1.6.0.1+Version: 1.6.1.1 License: MIT License-file: LICENSE Author: Ben Lippmeier@@ -35,12 +35,12 @@ Library Build-Depends: - base == 4.*,+ base == 4.5.*, ghc-prim == 0.2.*, containers >= 0.3.0 && < 0.5.0, bytestring == 0.9.*,- OpenGL == 2.4.*,- GLUT == 2.2.*,+ OpenGL == 2.5.*,+ GLUT == 2.3.*, bmp == 1.2.* ghc-options: -O2 -Wall