trackit 0.8 → 0.8.1
raw patch · 3 files changed
+19/−18 lines, 3 filesdep +vty-crossplatformdep ~Globdep ~brickdep ~directory
Dependencies added: vty-crossplatform
Dependency ranges changed: Glob, brick, directory, filepath, fsnotify, microlens-platform, mtl, optparse-generic, process, process-extras, stm, text, time, vty
Files
- README.md +2/−2
- src/TUI.hs +1/−1
- trackit.cabal +16/−15
README.md view
@@ -21,9 +21,9 @@ ## Installation -`trackit` can be installed from [Hackage](https://hackage.haskell.org/package/trackit) using Cabal:+`trackit` can be installed from [Hackage](https://hackage.haskell.org/package/trackit) using Stack: - > cabal new-install trackit+ > stack install trackit ## Usage
src/TUI.hs view
@@ -44,13 +44,13 @@ , defaultConfig , displayBounds , imageWidth- , mkVty , outputIface , text' , white , withBackColor , withForeColor )+import Graphics.Vty.CrossPlatform (mkVty) import Options import ParseANSI
trackit.cabal view
@@ -1,5 +1,5 @@ name: trackit-version: 0.8+version: 0.8.1 synopsis: A command-line tool for live monitoring description: @trackit@ is a command-line tool that listens for changes in a user-supplied directory. Whenever there is a change,@@ -43,21 +43,22 @@ ParseANSI TUI build-depends: base < 5- , brick >= 1.0 && == 1.10+ , brick >= 1.0 -- EventM was refactored in 1.0- , directory < 1.4- , filepath < 1.6- , fsnotify < 0.5- , Glob < 0.11- , microlens-platform < 0.5- , mtl < 2.4- , optparse-generic >= 1.2 && < 1.6- , process < 1.7- , process-extras >= 0.4 && < 0.8- , stm < 2.6- , text < 2.1- , time < 1.13- , vty < 5.40+ , directory+ , filepath+ , fsnotify+ , Glob+ , microlens-platform+ , mtl+ , optparse-generic+ , process+ , process-extras+ , stm+ , text+ , time+ , vty+ , vty-crossplatform hs-source-dirs: src default-language: Haskell2010 default-extensions: BangPatterns