ansi-terminal 0.7.1 → 0.7.1.1
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- System/Console/ANSI/Unix.hs +3/−1
- ansi-terminal.cabal +1/−1
CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 0.7.1.1+---------------++`getReportedCursorPosition`: don't let the cursor reporting code be echo'd+ Version 0.7.1 -------------
System/Console/ANSI/Unix.hs view
@@ -60,7 +60,9 @@ -- getReportedCursorPosition :: IO String -- (See Common-Include.hs for Haddock documentation)-getReportedCursorPosition = bracket (hGetEcho stdin) (hSetEcho stdin) $ const get+getReportedCursorPosition = bracket (hGetEcho stdin) (hSetEcho stdin) $ \_ -> do+ hSetEcho stdin False -- Turn echo off+ get where get = do c <- getChar
ansi-terminal.cabal view
@@ -1,5 +1,5 @@ Name: ansi-terminal-Version: 0.7.1+Version: 0.7.1.1 Cabal-Version: >= 1.6 Category: User Interfaces Synopsis: Simple ANSI terminal support, with Windows compatibility