diff --git a/Graphics/UI/SDL/SFont.hs b/Graphics/UI/SDL/SFont.hs
--- a/Graphics/UI/SDL/SFont.hs
+++ b/Graphics/UI/SDL/SFont.hs
@@ -3,12 +3,12 @@
 -- Released under the BSD3 license
 
 module Graphics.UI.SDL.SFont 
-   ( initFont
-   , SFont
+   ( SFont
+   , initFont
    , write
+   , writeChar
    , textWidth
    , textHeight
-   , writeChar
    ) where
 
 import Graphics.UI.SDL
@@ -19,7 +19,7 @@
 
 data SFont = SFont { surface :: Surface 
                    , charPos :: Array Int Int
-                   } deriving (Show)
+                   } 
 
 -- | Load a font from an SDL surface
 initFont :: Surface -> IO SFont
diff --git a/SFont.cabal b/SFont.cabal
--- a/SFont.cabal
+++ b/SFont.cabal
@@ -1,10 +1,11 @@
 name:                SFont
-version:             0.1
+version:             0.1.1
 synopsis:            SFont SDL Bitmap Fonts
-description:         A haskell port of Karl Bartel's bitmap SFont library
+description:         A haskell port of Karl Bartel's bitmap SFont library. Haddock documentation is available from the homepage
 category:            Graphics
 license:             BSD3
 license-file:        LICENSE
+homepage:            http://liamoc.net/static/SFont
 author:              Liam O'Connor-Davis
 maintainer:          liamoc@cse.unsw.edu.au
 build-type:          Simple
