summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--INSTALL5
-rw-r--r--src/mainwindow.cpp8
3 files changed, 9 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f6c586d4..8454c2f6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ PROJECT( rekonq )
# Informations to update before to release this package.
# rekonq info
-SET(REKONQ_VERSION "0.2.95" )
+SET(REKONQ_VERSION "0.3.0" )
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/version.h )
diff --git a/INSTALL b/INSTALL
index e8a3141e..91bd8bc6 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,8 +1,7 @@
===== Building rekonq from sources =====
WARNING:
-rekonq before 0.1 release depends on Qt4.4.x.
-From 0.1 release on, to build rekonq you need Qt4.5.x
+rekonq 0.3 release needs at least Qt4.5.x and KDE4.3.1 to build
=== Prerequisites ===
@@ -15,7 +14,7 @@ Qt4.x.y:
KDE 4
- KDE 4.1 (or better) should be prepackaged for all mayor linux distributions. Please see
+ KDE 4.x should be prepackaged for all mayor linux distributions. Please see
http://techbase.kde.org/Getting_Started/Build/stable_Version
for instructions on how to build and setup a KDE4 environment to work in.
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index e2e45ae0..52ea6068 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -276,10 +276,14 @@ void MainWindow::setupActions()
KStandardAction::print(this, SLOT(printRequested()), actionCollection());
KStandardAction::quit(this , SLOT(close()), actionCollection());
- KStandardAction::find(m_findBar, SLOT(show()) , actionCollection());
+ a = KStandardAction::find(m_findBar, SLOT(show()), actionCollection());
+ QList<QKeySequence> shortcutFindList;
+ shortcutFindList << KStandardShortcut::find() << QKeySequence( Qt::Key_Slash );
+ a->setShortcuts( shortcutFindList );
+
KStandardAction::findNext(this, SLOT(findNext()) , actionCollection());
KStandardAction::findPrev(this, SLOT(findPrevious()) , actionCollection());
-
+
a = KStandardAction::fullScreen(this, SLOT(viewFullScreen(bool)), this, actionCollection());
QList<QKeySequence> shortcutFullScreenList;
shortcutFullScreenList << KStandardShortcut::fullScreen() << QKeySequence( Qt::Key_F11 );