packages feed

eventloop 0.2.1.1 → 0.2.1.2

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

eventloop.cabal view
@@ -6,7 +6,7 @@ -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.2.1.1
+version:             0.2.1.2
 synopsis:            A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together.
 description:         A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together.
                      Each module exists of a initialize and teardown function that are both called once at startup and shutting down. During run-time, a module can provice a preprocessor function (which transforms input events before they get to the eventloop),
src/Eventloop/Module/DrawTrees/DrawTrees.hs view
@@ -87,7 +87,7 @@ instance GeneralizeTree RoseTree where
     generalizeTree (RoseNode str children) = GeneralTreeBox content children'WithLines
                                             where
-                                                content = [GeneralNode (0,0,0, 255) 10, GeneralNodeText (0,0,0, 255) str]
+                                                content = [GeneralNodeText (0,0,0, 255) str]
                                                 children'WithLines = zip (repeat line) (map generalizeTree children)
                                                 line = GeneralLine (0,0,0, 255)