packages feed

tldr 0.2.0 → 0.2.1

raw patch · 4 files changed

+6/−6 lines, 4 files

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.2.1++* Fix background color [bug](https://github.com/psibi/tldr-hs/pull/3)+ # 0.2.0  * Compliance with the tldr spec
README.md view
@@ -7,8 +7,7 @@ ## Installation  1. [Install stack](https://docs.haskellstack.org/en/stable/README/#how-to-install)-2. Clone this repo  (TODO: Publish this to Stackage)-3. `stack install`+2. `stack install --resolver=nightly tldr`  ## Usage 
src/Tldr.hs view
@@ -24,7 +24,6 @@   , fgIntensity :: ColorIntensity   , fgColor :: Color   , bgIntensity :: ColorIntensity-  , bgColor :: Color   , consoleIntensity :: ConsoleIntensity   } @@ -37,7 +36,6 @@   , fgIntensity = Dull   , fgColor = White   , bgIntensity = Dull-  , bgColor = Black   , consoleIntensity = NormalIntensity   } @@ -54,7 +52,6 @@   , SetUnderlining (underline cons)   , SetBlinkSpeed (blink cons)   , SetColor Foreground (fgIntensity cons) (fgColor cons)-  , SetColor Background (bgIntensity cons) (bgColor cons)   ]  renderNode :: NodeType -> IO ()
tldr.cabal view
@@ -1,5 +1,5 @@ name:                tldr-version:             0.2.0+version:             0.2.1 synopsis:            Haskell tldr client description:         Haskell tldr client with support for updating and viewing tldr pages. homepage:            https://github.com/psibi/tldr-hs#readme