| fail is moving out of Monad and into it's own MonadFail class. This will be enforced in GHC 8.8 (I think). base-compat/base-compat-batteries 0.11.0 have adapted to this, and are approaching stackage nightly (https://github.com/commercialhaskell/stackage/issues/4802). hledger is now ready to build with base-compat-batteries 0.11.0, once all of our deps do (eg aeson). We are still compatible with the older 0.10.x and GHC 7.10.3 as well. For now we are using both fails: - new fail (from Control.Monad.Fail), used in our parsers, imported via base-compat-batteries Control.Monad.Fail.Compat to work with older GHC versions. - old fail (from GHC.Base, exported by Prelude, Control.Monad, Control.Monad.State.Strict, Prelude.Compat, ...), used in easytest's Test, since I couldn't find their existing fail implementation to update. To reduce (my) confusion, these are imported carefully, consistently, and qualified everywhere as Fail.fail and Prelude.fail, with clashing re-exports suppressed, like so: import Prelude hiding (fail) import qualified Prelude (fail) import Control.Monad.State.Strict hiding (fail) import "base-compat-batteries" Prelude.Compat hiding (fail) import qualified "base-compat-batteries" Control.Monad.Fail.Compat as Fail | ||
|---|---|---|
| .. | ||
| Hledger | ||
| .ghci | ||
| .version | ||
| CHANGES.md | ||
| defs.m4 | ||
| hledger-ui.1 | ||
| hledger-ui.cabal | ||
| hledger-ui.hs | ||
| hledger-ui.info | ||
| hledger-ui.m4.md | ||
| hledger-ui.txt | ||
| LICENSE | ||
| package.yaml | ||
| README | ||
| Setup.hs | ||
A curses-style text user interface for the hledger accounting tool. hledger-ui is the new name for hledger-vty. Revived in 2015, this package is intended to be installed as standard by all hledger users, except those on (native) Windows, where it is not supported. hledger-ui currently allows browsing the balance, register and print reports, with drill-down and scrolling. # HACKING ## Backlog: ``` reg: show historical running balance acc: fix -H, show historical balances switch to multibalance report ? adjust filter accounts screen register screen reg: improve other account names test showing only real postings when there are reals and virtuals journal entry view dialog blog reg: support -V redraw on ctrl-l/cmd-r reload on redraw reload on screen change reload on file change acc: show total fix --drop show "modified account names" with --drop or --alias journal screen bs/is/cf-ish reports persistent custom reports persistent config search in page adjust other options add edit custom screens plugin screens ```