packages feed

reactive-banana-wx 0.4.2.0 → 0.4.3.0

raw patch · 3 files changed

+11/−4 lines, 3 filesdep ~reactive-banana

Dependency ranges changed: reactive-banana

Files

Makefile view
@@ -1,5 +1,12 @@-.PHONY: all+.PHONY: all test +APPS=Asteroids Counter CRUD CurrencyConverter NetMonitor TicTacToe TwoCounters Wave+OBJ=dist/build+COMPILE=ghc --make -i$(OBJ) -L/usr/lib -L$(OBJ) -isrc -i../reactive-banana/src -idist/build/autogen+ all: 	cabal configure && cabal build --ghc-options=-L/usr/lib +test : src/Asteroids.hs src/Reactive/Banana/WX.hs+	$(COMPILE) -o $@ $< -outputdir $(OBJ)/$@.tmp/+	macosx-app $@
reactive-banana-wx.cabal view
@@ -1,5 +1,5 @@ Name:                reactive-banana-wx-Version:             0.4.2.0+Version:             0.4.3.0 Synopsis:            Examples for the reactive-banana library, using wxHaskell. Description:     This library provides some GUI examples for the @reactive-banana@ library,@@ -27,7 +27,7 @@     hs-source-dirs:  src     build-depends:   base >= 4.3 && < 5,                      cabal-macosx == 0.1.*,-                     reactive-banana >= 0.4.2.0 && < 0.5,+                     reactive-banana >= 0.4.3.0 && < 0.5,                      wx==0.12.*, wxcore==0.12.*     extensions:      ExistentialQuantification     exposed-modules: Reactive.Banana.WX
src/TicTacToe.hs view
@@ -1,7 +1,7 @@ {-----------------------------------------------------------------------------
     reactive-banana-wx
     
-    Example: A version of TicTacToe with silly interface elements
+    Example: A version of TicTacToe with eclectic interface elements
     Author:  Gideon Sireling
 ------------------------------------------------------------------------------}
 import Control.Monad