simple-ui 0.1.2 → 0.2.0
raw patch · 3 files changed
+6/−6 lines, 3 filesdep ~lensdep ~template-haskell
Dependency ranges changed: lens, template-haskell
Files
- simple-ui.cabal +4/−4
- src/Simple/UI/Core/UIApp.hs +1/−1
- stack.yaml +1/−1
simple-ui.cabal view
@@ -1,6 +1,6 @@ name: simple-ui-version: 0.1.2-cabal-version: >=1.22+version: 0.2.0+cabal-version: 1.22 build-type: Simple author: Piotr Borek <piotrborek@op.pl> maintainer: Piotr Borek <piotrborek@op.pl>@@ -29,10 +29,10 @@ mtl (>= 2.2 && < 2.3), exceptions (>= 0.8 && < 0.11), vty (>= 5.16 && < 6),- lens (>= 4.15 && < 4.18),+ lens (>= 4.15 && < 4.20), vector (>= 0.11 && < 0.13), data-default-class (>= 0.1 && < 0.2),- template-haskell (>= 2.11 && < 2.15),+ template-haskell (>= 2.11 && < 2.17), stm (>= 2.4 && < 2.6) exposed-modules:
src/Simple/UI/Core/UIApp.hs view
@@ -103,7 +103,7 @@ vty <- view appVty tasks <- view appTasks - (width, height) <- Vty.displayBounds (Vty.outputIface vty)+ (width, height) <- liftIO $ Vty.displayBounds (Vty.outputIface vty) mainResize width height mainDraw
stack.yaml view
@@ -1,4 +1,4 @@-resolver: lts-13.18+resolver: lts-17.14 packages: - '.' flags: {}