iterm-show 0.1.0.0 → 0.1.0.1
raw patch · 5 files changed
+21/−4 lines, 5 filesdep ~basebinary-addedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- README.md +10/−0
- doc/screen-cap.png binary
- iterm-show.cabal +5/−2
- src/ITermShow.hs +2/−2
ChangeLog.md view
@@ -5,3 +5,7 @@ * Introducing iterm-show, a library for displaying documents inline in some terminals. * Includes it2-show commandline utility for displaying documents inline.++## 0.1.0.1 -- 2018-10-10++* Rearranged the documentation to make things clearer.
+ README.md view
@@ -0,0 +1,10 @@+# iterm-show++`iterm-show` is a Haskell library for displaying inline documents in some+terminals, including iTerm and hterm.++# it2-show++`it2-show` is a simple command line tool for doing the same.++
+ doc/screen-cap.png view
binary file changed (absent → 116699 bytes)
iterm-show.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: iterm-show-version: 0.1.0.0+version: 0.1.0.1 synopsis: Enable graphical display of images inline on some terminals description: Enable graphical display of images inline on some terminals. homepage: https://github.com/luke-clifton/iterm-show@@ -13,7 +13,10 @@ copyright: (c) 2018 Luke Clifton category: Development build-type: Simple-extra-source-files: ChangeLog.md+extra-source-files:+ ChangeLog.md,+ README.md,+ doc/*.png cabal-version: >=1.10 source-repository head type: git
src/ITermShow.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} module ITermShow- ( displayImage- , displayImageBuilder+ ( displayImageBuilder+ , displayImage , displayImageString ) where