summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-25 11:36:32 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-10-25 11:36:32 +0100
commitf27af7560aaeb2248d92dcefbfafb8ddc210050b (patch)
tree28fd4e6ca1f28d0db2c39736707eca6ec7081c75
parentMerge commit 'refs/merge-requests/1903' of git://gitorious.org/rekonq/mainline (diff)
downloadrekonq-f27af7560aaeb2248d92dcefbfafb8ddc210050b.tar.xz
rekonq 0.2.72
this should go (perhaps) - Updated name authors && credits - removed (for now) bugged webview scrolling (shift + arrows problem) - fixed flickering popup - Added docs (Handbook, thanks to Rohan Garg) - bugfixing
-rw-r--r--AUTHORS4
-rw-r--r--CMakeLists.txt2
-rw-r--r--src/main.cpp34
3 files changed, 26 insertions, 14 deletions
diff --git a/AUTHORS b/AUTHORS
index b4e6cb52..825d7912 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,5 +1,7 @@
Andrea Diamantini adjam7_AT_gmail_DOT_com
Alexandr Domrachev alexandr.domrachev_AT_gmail_DOT_com
-Pawel Prazak kojots350_AT_gmail_DOT_com
Panagiotis Papadopoulos pano_90@gmx.net
Lionel Chauvin megabigbug@yahoo.fr
+Johannes Zellner webmaster@nebulon.de
+Matthieu Gicquel matthieu@bureau.home
+Ronny Scholz ronny_scholz@web.de
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5926219a..ad20bab6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,7 +9,7 @@ PROJECT( rekonq )
# rekonq info
SET(REKONQ_MAJOR_VERSION "0")
SET(REKONQ_MINOR_VERSION "2")
-SET(REKONQ_PATCH_VERSION "71")
+SET(REKONQ_PATCH_VERSION "72")
SET(REKONQ_VERSION_STR
"${REKONQ_MAJOR_VERSION}.${REKONQ_MINOR_VERSION}.${REKONQ_PATCH_VERSION}"
diff --git a/src/main.cpp b/src/main.cpp
index fb7a48f1..cb367a68 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -38,7 +38,7 @@ static const char description[] =
I18N_NOOP("A lightweight Web Browser for KDE based on WebKit");
-static const char version[] = "0.2.71";
+static const char version[] = "0.2.72";
int main(int argc, char **argv)
@@ -65,11 +65,6 @@ int main(int argc, char **argv)
"alexandr.domrachev@gmail.com",
"");
- about.addAuthor(ki18n("Pawel Prazak"),
- ki18n("Developer"),
- "kojots350@gmail.com",
- "");
-
about.addAuthor(ki18n("Panagiotis Papadopoulos"),
ki18n("Quite everything but code"),
"pano_90@gmx.net",
@@ -80,6 +75,21 @@ int main(int argc, char **argv)
"megabigbug@yahoo.fr",
"");
+ about.addAuthor(ki18n("Johannes Zellner"),
+ ki18n("Patches, suggestions, testing, bugfixing"),
+ "webmaster@nebulon.de",
+ "");
+
+ about.addAuthor(ki18n("Matthieu Gicquel"),
+ ki18n("Developer, Ideas, Tabloid improvements"),
+ "matthieu@bureau.home",
+ "");
+
+ about.addAuthor(ki18n("Ronny Scholz"),
+ ki18n("(Tons of ) patches, testing, bugfixing"),
+ "ronny_scholz@web.de",
+ "");
+
// --------------- about credits -----------------------------
about.addCredit(ki18n("Henry de Valence"),
ki18n("Promised help on multitask rekonq"),
@@ -91,11 +101,6 @@ int main(int argc, char **argv)
"buusmail@gmail.com",
"");
- about.addCredit(ki18n("Johannes Zellner"),
- ki18n("Patches, suggestions, testing, bugfixing"),
- "webmaster@nebulon.de",
- "");
-
about.addCredit(ki18n("Ivan Čukić"),
ki18n("Patches, bugfixing"),
"ivan@fomentgroup.org",
@@ -105,7 +110,12 @@ int main(int argc, char **argv)
ki18n("New tab loading animation"),
"swiftscythe@gmail.com",
"");
-
+
+ about.addAuthor(ki18n("Pawel Prazak"),
+ ki18n("Developer"),
+ "kojots350@gmail.com",
+ "");
+
// Initialize command line args
KCmdLineArgs::init(argc, argv, &about);