diff --git a/Makefile b/Makefile
index b8a71df..747229a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = git-20130304
+VERSION = 1.1
 
 PREFIX    = /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/README.md b/README.md
index 5c4dd96..7a49c8f 100644
--- a/README.md
+++ b/README.md
@@ -162,6 +162,15 @@ on GitHub or get a copy using git with the following command:
 
 **Stable releases**
 
+**[v1.1](http://muennich.github.com/sxiv/release/sxiv-1.1.tar.gz)**
+*(March 30, 2013)*
+
+  * Added status bar on bottom of window with customizable content
+  * New keyboard shortcuts `\`/`|`: flip image vertically/horizontally
+  * New keyboard shortcut `Ctrl-6`: go to last/alternate image
+  * Added own EXIF orientation handling, removed dependency on libexif
+  * Fixed various bugs
+
 **[v1.0](http://muennich.github.com/sxiv/release/sxiv-1.0.tar.gz)**
 *(October 31, 2011)*
 
diff --git a/image-info b/image-info
index a160b2b..7814c2d 100644
--- a/image-info
+++ b/image-info
@@ -8,7 +8,7 @@
 s=" | " # field separator
 
 filename=$(basename "$1")
-filesize=$(du -h "$1" | cut -f 1)
+filesize=$(du -Hh "$1" | cut -f 1)
 
 geometry=$(identify -format '%wx%h' "$1[0]")