diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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.
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -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.
+
+![screenshot](doc/screen-cap.png)
diff --git a/doc/screen-cap.png b/doc/screen-cap.png
new file mode 100644
Binary files /dev/null and b/doc/screen-cap.png differ
diff --git a/iterm-show.cabal b/iterm-show.cabal
--- a/iterm-show.cabal
+++ b/iterm-show.cabal
@@ -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
diff --git a/src/ITermShow.hs b/src/ITermShow.hs
--- a/src/ITermShow.hs
+++ b/src/ITermShow.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE OverloadedStrings #-}
 module ITermShow
-    ( displayImage
-    , displayImageBuilder
+    ( displayImageBuilder
+    , displayImage
     , displayImageString
     ) where
 
