summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS8
-rw-r--r--CMakeLists.txt2
-rw-r--r--src/main.cpp35
3 files changed, 39 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 35fd4e6a..b4e6cb52 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,5 @@
-Andrea Diamantini adjam7_AT_gmail_DOT_com Project Lead, Developer
-Alexandr Domrachev alexandr.domrachev_AT_gmail_DOT_com Developer
-Pawel Prazak kojots350_AT_gmail_DOT_com Developer
+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
diff --git a/CMakeLists.txt b/CMakeLists.txt
index efee2f3a..40caa4d3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,7 +9,7 @@ PROJECT( rekonq )
# rekonq info
SET(REKONQ_MAJOR_VERSION "0")
SET(REKONQ_MINOR_VERSION "1")
-SET(REKONQ_PATCH_VERSION "10")
+SET(REKONQ_PATCH_VERSION "11")
SET(REKONQ_VERSION_STR
"${REKONQ_MAJOR_VERSION}.${REKONQ_MINOR_VERSION}.${REKONQ_PATCH_VERSION}"
diff --git a/src/main.cpp b/src/main.cpp
index 649c945f..98b5e5ca 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -31,7 +31,7 @@ static const char description[] =
I18N_NOOP("WebKit based Web Browser for KDE");
-static const char version[] = "0.1.10";
+static const char version[] = "0.1.11";
int main(int argc, char **argv)
@@ -48,7 +48,7 @@ int main(int argc, char **argv)
"rekonq@kde.org"
);
- // about authors
+ // --------------- about authors -----------------------------
about.addAuthor(ki18n("Andrea Diamantini"),
ki18n("Project Lead, Developer"),
"adjam7@gmail.com",
@@ -64,6 +64,37 @@ int main(int argc, char **argv)
"kojots350@gmail.com",
"");
+ about.addAuthor(ki18n("Panagiotis Papadopoulos"),
+ ki18n("Quite everything but code"),
+ "pano_90@gmx.net",
+ "");
+
+ about.addAuthor(ki18n("Lionel Chauvin"),
+ ki18n("Developer, Ideas, Mockups"),
+ "megabigbug@yahoo.fr",
+ "");
+
+ // --------------- about credits -----------------------------
+ about.addCredit(ki18n("Henry de Valence"),
+ ki18n("Promised help on multitask rekonq"),
+ "hdevalence@gmail.com",
+ "");
+
+ about.addCredit(ki18n("Abuus"),
+ ki18n("Webview mouse event support"),
+ "hdevalence@gmail.com",
+ "");
+
+ about.addCredit(ki18n("Johannes Zellner"),
+ ki18n("Patches, suggestions, testing, bugfixing"),
+ "hdevalence@gmail.com",
+ "");
+
+ about.addCredit(ki18n("Ivan Cukic"),
+ ki18n("Patches, bugfixing"),
+ "ivan@fomentgroup.org",
+ "");
+
// Initialize command line args
KCmdLineArgs::init(argc, argv, &about);