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 <$> sourceBufferNew pagePath client pageId)
+    startupRender (\ pagePath options client pageId -> 
+                       PageBufferWrap <$> sourceBufferNew pagePath options client pageId)
diff --git a/Manatee/Extension/Editor/SourceBuffer.hs b/Manatee/Extension/Editor/SourceBuffer.hs
--- a/Manatee/Extension/Editor/SourceBuffer.hs
+++ b/Manatee/Extension/Editor/SourceBuffer.hs
@@ -44,8 +44,8 @@
     deriving Typeable
 
 -- | New source buffer.
-sourceBufferNew :: String -> Client -> PageId -> IO SourceBuffer
-sourceBufferNew path client pageId = do
+sourceBufferNew :: String -> [String] -> Client -> PageId -> IO SourceBuffer
+sourceBufferNew path _ client pageId = do
   buffer <- SB.sourceBufferNew Nothing
   SB.sourceBufferSetHighlightMatchingBrackets buffer True -- highlight match brackets
   SB.sourceBufferSetMaxUndoLevels buffer (-1)             -- no limit for undo level
diff --git a/Manatee/Extension/Editor/SourceView.hs b/Manatee/Extension/Editor/SourceView.hs
--- a/Manatee/Extension/Editor/SourceView.hs
+++ b/Manatee/Extension/Editor/SourceView.hs
@@ -426,7 +426,7 @@
 sourceViewOpenFile :: SourceView -> IO ()
 sourceViewOpenFile view = 
   localInteractive view "fOpen file : " $ \ [path] ->                       
-      mkDaemonSignal (pageViewClient view) NewTab (NewTabArgs "PageEditor" path)
+      mkDaemonSignal (pageViewClient view) NewTab (NewTabArgs "PageEditor" path [])
 
 -- | Goto column.
 sourceViewGotoColumn :: SourceView -> IO ()          
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-editor.cabal b/manatee-editor.cabal
--- a/manatee-editor.cabal
+++ b/manatee-editor.cabal
@@ -1,11 +1,20 @@
 name:			manatee-editor
-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:		Editor extension for Manatee.
 description:    manatee-editor is editor 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-editor
   
 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, gtksourceview2 >= 0.12.0,
                     text >= 0.7.1.0, bytestring >= 0.9.1.5, dbus-core, regex-tdfa
      exposed-modules:
