dow 0.2.2 → 0.2.3
raw patch · 3 files changed
+8/−8 lines, 3 files
Files
- CHANGES +6/−0
- dow.cabal +2/−2
- src/Utils.hs +0/−6
CHANGES view
@@ -1,3 +1,9 @@+0.2.3 - 110402+* adjusted for version 2.2.0 of the library++0.2.2 - 101203+* removed mtl dependency (which also fixed a crash)+ 0.2.1 - 100718 * adjusted for version 2 of the library
dow.cabal view
@@ -1,5 +1,5 @@ Name: dow-Version: 0.2.2+Version: 0.2.3 Cabal-Version: >= 1.2 Synopsis: Dungeons of Wor Category: game, reactivity, FRP@@ -16,7 +16,7 @@ Author: Patai Gergely Maintainer: Patai Gergely (patai@iit.bme.hu)-Copyright: (c) 2009, Patai Gergely+Copyright: (c) 2010-2011, Patai Gergely License: BSD3 License-File: LICENSE Stability: experimental
src/Utils.hs view
@@ -11,12 +11,6 @@ infix 2 --> -transfer2 x0 f s1 s2 = mfix $ \sig -> liftA3 f s1 s2 <$> delay x0 sig--transfer3 x0 f s1 s2 s3 = mfix $ \sig -> liftM4 f s1 s2 s3 <$> delay x0 sig--transfer4 x0 f s1 s2 s3 s4 = mfix $ \sig -> liftM5 f s1 s2 s3 s4 <$> delay x0 sig- edge s = do s' <- delay False s return $ s' >>= \x -> if x then return False else s