packages feed

reflex-vty 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+46/−20 lines, 3 filesdep ~basedep ~bimapdep ~containers

Dependency ranges changed: base, bimap, containers, data-default, dependent-map, dependent-sum, exception-transformers, mtl, primitive, ref-tf, reflex, stm, text, time, transformers, vty

Files

ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for reflex-vty +## 0.1.1.0++* Set version bounds in cabal file+* Add travis CI config+ ## 0.1.0.0  * Initial release
README.md view
@@ -1,4 +1,4 @@-# reflex-vty+# reflex-vty ![hackage](https://img.shields.io/hackage/v/reflex-vty.svg) ![travis](https://api.travis-ci.org/reflex-frp/reflex-vty.svg?branch=develop)  ## A library for building functional reactive terminal applications @@ -13,7 +13,7 @@ Enter a nix-shell for the project: ```bash git clone git@github.com:reflex-frp/reflex-platform-git clone git@gitlab.com:obsidian.systems/reflex-vty+git clone git@github.com:reflex-frp/reflex-vty cd reflex-vty ../reflex-platform/scripts/work-on ghc ./. ```@@ -25,3 +25,18 @@ * Build the docs: `cabal haddock` * Run ghcid for immediate compiler feedback when you save a .hs file: `ghcid -c "cabal repl reflex-vty --ghc-options=-Wall"` * etc.++#### With cabal++Please see the `tested-with` field of the cabal file for known-compatible versions of GHC.++From the reflex-vty project directory:++```bash+cabal new-configure+cabal new-build # to build the library and example+cabal new-repl # to enter a repl for the library+cabal new-repl example # to enter a repl for the example executable+```++
reflex-vty.cabal view
@@ -1,10 +1,11 @@ name: reflex-vty-version: 0.1.0.0+version: 0.1.1.0 synopsis: Reflex FRP host and widgets for vty applications description:   Host and widget library for Reflex-based FRP applications   .-  <<./doc/welcome.gif>>+  <<https://i.imgur.com/FULQNtu.gif>>+  . license: BSD3 license-file: LICENSE author: Obsidian Systems LLC@@ -16,6 +17,7 @@                     ChangeLog.md extra-doc-files: doc/welcome.gif                , doc/tasks.png+tested-with: GHC ==8.6.5 || ==8.4.4  library   exposed-modules: Reflex.Vty@@ -29,22 +31,22 @@                  , Reflex.Spider.Orphans                  , Control.Monad.NodeId   build-depends:-    base <= 4.13,-    bimap,-    containers,-    data-default,-    dependent-map,-    dependent-sum,-    exception-transformers,-    mtl,-    primitive,-    ref-tf,-    reflex >= 0.6.1,-    stm,-    text,-    time,-    transformers,-    vty+    base                              >= 4.11.0 && < 4.13,+    bimap                             >= 0.3.3 && < 0.4,+    containers                        >= 0.5.0 && < 0.7,+    mtl                               >= 2.2.2 && < 2.3,+    transformers                      >= 0.5.5 && < 0.6,+    stm                               >= 2.4 && < 2.6,+    data-default                      >= 0.7.1 && < 0.8,+    dependent-map                     >= 0.2.4 && < 0.4,+    text                              >= 1.2.3 && < 1.3,+    dependent-sum                     >= 0.3 && < 0.7,+    exception-transformers            >= 0.4.0 && < 0.5,+    primitive                         >= 0.6.3 && < 0.7,+    ref-tf                            >= 0.4.0 && < 0.5,+    reflex                            >= 0.6 && < 0.7,+    time                              >= 1.8.0 && < 1.9,+    vty                               >= 5.21 && < 5.26   hs-source-dirs: src   default-language: Haskell2010   ghc-options: -Wall@@ -63,3 +65,7 @@     transformers,     vty   default-language: Haskell2010++source-repository head+  type: git+  location: https://github.com/reflex-frp/reflex-vty