diff options
| -rw-r--r-- | TODO | 8 | ||||
| -rw-r--r-- | doc/index.docbook | 2 | ||||
| -rw-r--r-- | src/rekonqui.rc | 20 | 
3 files changed, 20 insertions, 10 deletions
@@ -15,11 +15,11 @@ To 0.0.4  1. check the lines above...  2. Improve docs -3. Let rekonq be a Singleton app. (And work well..) +DONE. Let rekonq be a Singleton app. (And work well..)  4. fix bookmarks toolbar POSITION  5. fix bookmarks action menu (in toolbar) -6. fix load at startup -7. fix FONTS problems between webkit && KDE settings (at least, here..) -8. enable flash support !! +DONE. fix load at startup +DONE. fix FONTS problems between webkit && KDE settings (at least, here..) +DONE. enable flash support !!  + ------------------------
\ No newline at end of file diff --git a/doc/index.docbook b/doc/index.docbook index 2141c177..32fcb41e 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -30,7 +30,7 @@  <legalnotice>&FDLNotice;</legalnotice>  <date>2008-11-16</date> -<releaseinfo>0.0.3</releaseinfo> +<releaseinfo>0.0.4</releaseinfo>  <abstract>  <para> diff --git a/src/rekonqui.rc b/src/rekonqui.rc index 0e372e82..332e04fe 100644 --- a/src/rekonqui.rc +++ b/src/rekonqui.rc @@ -1,6 +1,9 @@ -<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> -<kpartgui name="rekonq" version="27"> +<?xml version="1.0"?> +<!DOCTYPE gui SYSTEM "kpartgui.dtd"> +<gui name="rekonq" version="31"> +  <MenuBar> +  <!--  ============ FILE menu =========== -->  <Menu name="file" noMerge="1"><text>&File</text>      <Action name="file_new" /> @@ -19,6 +22,7 @@      <Separator/>      <Action name="file_quit" />  </Menu> +  <!--  ============ EDIT menu =========== -->  <Menu name="edit" noMerge="1"><text>&Edit</text>      <Action name="edit_undo" /> @@ -32,6 +36,7 @@      <Action name="edit_find_next" />      <Action name="edit_find_prev" />  </Menu> +  <!--  ============ VIEW menu =========== -->  <Menu name="view" noMerge="1"><text>&View</text>      <Action name="stop reload" /> @@ -43,23 +48,27 @@      <Separator/>      <Action name="page source" />  </Menu> +  <!--  ============ GO menu =========== -->  <Menu name="go" deleted="true">  </Menu> +  <!--  ============ BOOKMARKS menu =========== -->  <Action name="bookmarks" /> +  <!--  ============ TOOLS menu =========== -->  <Menu name="tools">      <Action name="downloads" />      <Action name="web inspector" />  </Menu> +  <!--  ============ SETTINGS menu =========== -->  <Menu name="settings">  </Menu>  </MenuBar>  <!--  ============ Main ToolBar =========== --> -<ToolBar name="mainToolBar" iconText="iconOnly" newline="true" position="top" noMerge="1"><text>Main Toolbar</text> +<ToolBar name="mainToolBar" fullWidth="true" position="top" iconText="iconOnly" newline="true" noMerge="1"><text>Main Toolbar</text>      <Action name="history back" />      <Action name="history forward" />      <Action name="stop reload" /> @@ -67,7 +76,8 @@  </ToolBar>  <!--  ============ Bookmarks ToolBar =========== --> -<ToolBar name="bookmarksToolBar" iconSize="16" newline="true" position="top" noMerge="1" hidden="true"><text>Bookmarks Toolbar</text> +<ToolBar noEdit="true" iconText="icontextright" fullWidth="true" name="bookmarksToolBar" iconSize="16" newline="true" hidden="true"> +<text>Bookmark Toolbar</text>  </ToolBar> -</kpartgui> +</gui>  | 
