diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -28,4 +28,5 @@
 -- | Irc client render process.
 main :: IO ()
 main = 
-    startupRender (\ pagePath client pageId -> PageBufferWrap <$> imageBufferNew pagePath client pageId)
+    startupRender (\ pagePath options client pageId -> 
+                       PageBufferWrap <$> imageBufferNew pagePath options client pageId)
diff --git a/Manatee/Extension/ImageViewer/ImageBuffer.hs b/Manatee/Extension/ImageViewer/ImageBuffer.hs
--- a/Manatee/Extension/ImageViewer/ImageBuffer.hs
+++ b/Manatee/Extension/ImageViewer/ImageBuffer.hs
@@ -49,8 +49,8 @@
     deriving Typeable
 
 -- | New image buffer.
-imageBufferNew :: String -> Client -> PageId -> IO ImageBuffer
-imageBufferNew path client pageId = do
+imageBufferNew :: String -> [String] -> Client -> PageId -> IO ImageBuffer
+imageBufferNew path _ client pageId = do
   -- Create new buffer.
   buffer <- ImageBuffer <$> newTVarIO path
                         <*> pure client
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,3 +1,21 @@
+-- Author:     Andy Stewart <lazycat.manatee@gmail.com>
+-- Maintainer: Andy Stewart <lazycat.manatee@gmail.com>
+-- 
+-- Copyright (C) 2010 Andy Stewart, all rights reserved.
+-- 
+-- This program is free software: you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation, either version 3 of the License, or
+-- any later version.
+-- 
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-- GNU General Public License for more details.
+-- 
+-- You should have received a copy of the GNU General Public License
+-- along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import Distribution.Simple
 import Manatee.Core.Config
 import Manatee.Core.Types
diff --git a/manatee-imageviewer.cabal b/manatee-imageviewer.cabal
--- a/manatee-imageviewer.cabal
+++ b/manatee-imageviewer.cabal
@@ -1,11 +1,20 @@
 name:			manatee-imageviewer
-version:		0.0.2
+version:		0.0.3
 Cabal-Version:	>= 1.6
 license:		GPL-3
 license-file:	LICENSE
 copyright:		(c) 2009 ~ 2010 Andy Stewart
 synopsis:		Image viewer extension for Manatee.
 description:    manatee-imageviewer is image viewer extension for Manatee (Haskell/Gtk+ Integrated Live Environment)
+ .
+ Manual look <http://haskell.org/haskellwiki/Manatee>
+ .
+ Screenshot at <http://goo.gl/MkVw>
+ .
+ IRC channel: 
+ .
+ irc.freenode.net 6667 <##manatee>
+ .
 author:			Andy Stewart
 maintainer:		Andy Stewart <lazycat.manatee@gmail.com>
 stability:		provisional
@@ -19,7 +28,7 @@
   location:     http://patch-tag.com/r/AndyStewart/manatee-imageviewer
   
 Library
-     build-depends: base >= 4 && < 5, manatee-core >= 0.0.2, dbus-client >= 0.3 && < 0.4, stm >= 2.1.2.0,
+     build-depends: base >= 4 && < 5, manatee-core >= 0.0.3, dbus-client >= 0.3 && < 0.4, stm >= 2.1.2.0,
                     containers >= 0.3.0.0, gtk-serialized-event >= 0.12.0, gtk >= 0.12.0, glib >= 0.12.0,
                     gio >= 0.12.0, gtkimageview >= 0.12.0, text >= 0.7.1.0, 
                     regex-tdfa >= 1.1.2, filepath >= 1.1.0.3, utf8-string
