packages feed

hledger-vty 0.13 → 0.14

raw patch · 2 files changed

+10/−10 lines, 2 filesdep ~hledgerdep ~hledger-lib

Dependency ranges changed: hledger, hledger-lib

Files

Hledger/Vty/Main.hs view
@@ -1,16 +1,12 @@ {-# LANGUAGE CPP #-} {-| hledger-vty - a hledger add-on providing a curses-style interface.-Copyright (c) 2007-2010 Simon Michael <simon@joyful.com>+Copyright (c) 2007-2011 Simon Michael <simon@joyful.com> Released under GPL version 3 or later. -}  module Hledger.Vty.Main where -#if __GLASGOW_HASKELL__ <= 610-import Prelude hiding (putStr, putStrLn)-import System.IO.UTF8 (putStr, putStrLn)-#endif import Graphics.Vty import Safe (headDef) import System.Console.GetOpt@@ -22,6 +18,8 @@ import Hledger.Cli.Utils (withJournalDo) import Hledger.Cli.Version (progversionstr, binaryfilename) import Hledger.Data+import Prelude hiding (putStr, putStrLn)+import Hledger.Data.UTF8 (putStr, putStrLn)   progname_vty = progname_cli ++ "-vty"
hledger-vty.cabal view
@@ -1,9 +1,11 @@ name:           hledger-vty-version: 0.13+version: 0.14 category:       Finance-synopsis:       A hledger add-on command providing a full-window console interface.+synopsis:       A curses-style interface for the hledger accounting tool. description:    -    A hledger add-on command providing a full-window console interface.+                hledger is a haskell port and friendly fork of John Wiegley's ledger accounting tool.+                This package provides a simple curses-style console interface as an alternative to the hledger command line interface.+ license:        GPL license-file:   LICENSE author:         Simon Michael <simon@joyful.com>@@ -29,8 +31,8 @@   other-modules:                   Hledger.Vty.Main   build-depends:-                  hledger == 0.13-                 ,hledger-lib == 0.13+                  hledger == 0.14+                 ,hledger-lib == 0.14                  -- ,HUnit                  ,base >= 3 && < 5                  -- ,containers