packages feed

hledger-ui 1.0.4 → 1.0.5

raw patch · 3 files changed

+14/−8 lines, 3 filesdep ~basedep ~brickdep ~text-zipper

Dependency ranges changed: base, brick, text-zipper, vty

Files

CHANGES view
@@ -2,6 +2,12 @@ See also the hledger and project change logs.  +# 1.0.5 (2016/11/19)++- allow brick 0.14, vty 5.12, text-zipper 0.9+- set base lower bound to 4.8 to enforce GHC 7.10+++ # 1.0.4 (2016/11/2)  - allow brick 0.13
Hledger/UI/AccountsScreen.hs view
@@ -124,7 +124,7 @@         maxacctwidthseen =           -- ltrace "maxacctwidthseen" $           V.maximum $-          V.map (\AccountsScreenItem{..} -> asItemIndentLevel + textWidth asItemDisplayAccountName) $+          V.map (\AccountsScreenItem{..} -> asItemIndentLevel + Hledger.Cli.textWidth asItemDisplayAccountName) $           -- V.filter (\(indent,_,_,_) -> (indent-1) <= fromMaybe 99999 mdepth) $           displayitems         maxbalwidthseen =
hledger-ui.cabal view
@@ -3,8 +3,8 @@ -- see: https://github.com/sol/hpack  name:           hledger-ui-version:        1.0.4-stability:      beta+version:        1.0.5+stability:      stable category:       Finance, Console synopsis:       Curses-style user interface for the hledger accounting tool description:    This is hledger's curses-style interface.@@ -55,12 +55,12 @@   hs-source-dirs:       .   ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans-  cpp-options: -DVERSION="1.0.4"+  cpp-options: -DVERSION="1.0.5"   build-depends:       hledger >= 1.0.1 && < 1.1     , hledger-lib >= 1.0.1 && < 1.1     , ansi-terminal >= 0.6.2.3 && < 0.7-    , base >= 3 && < 5+    , base >= 4.8 && < 5     , base-compat >= 0.8.1     , cmdargs >= 0.8     , containers@@ -75,15 +75,15 @@     , safe >= 0.2     , split >= 0.1 && < 0.3     , text >= 1.2 && < 1.3-    , text-zipper >= 0.4 && < 0.9+    , text-zipper >= 0.4 && < 0.10     , transformers     , vector   if os(windows)     buildable: False   else     build-depends:-        brick >= 0.12 && < 0.14-      , vty >= 5.5 && < 5.12+        brick >= 0.12 && < 0.15+      , vty >= 5.5 && < 5.13   if flag(threaded)     ghc-options: -threaded   if flag(oldtime)