summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-03-11 23:59:18 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-03-11 23:59:18 +0100
commitbce15c7583913a7fc95b0206c5a093ac1bc3c55a (patch)
treeca4d4e88db6cdfebca6f3f4b1b18dc9ffce4d7f0
parentForwarding class declarations to speed up compilation.. (diff)
downloadrekonq-bce15c7583913a7fc95b0206c5a093ac1bc3c55a.tar.xz
Solved Bookmark Position problem. Updated TODO.
-rw-r--r--TODO8
-rw-r--r--doc/index.docbook2
-rw-r--r--src/rekonqui.rc20
3 files changed, 20 insertions, 10 deletions
diff --git a/TODO b/TODO
index 93ae6959..ada53236 100644
--- a/TODO
+++ b/TODO
@@ -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>&amp;File</text>
<Action name="file_new" />
@@ -19,6 +22,7 @@
<Separator/>
<Action name="file_quit" />
</Menu>
+
<!-- ============ EDIT menu =========== -->
<Menu name="edit" noMerge="1"><text>&amp;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>&amp;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>