diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-27 11:15:17 +0200 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-27 11:15:17 +0200 | 
| commit | 5a466ec88d89015bd7bb800d8b448eb23769ce5b (patch) | |
| tree | 4539284d62846a7c174b4b6d36f88a9abe74b148 | |
| parent | Fixing reset disk cache crash (diff) | |
| download | rekonq-5a466ec88d89015bd7bb800d8b448eb23769ce5b.tar.xz | |
Rekonq 0.1.11
Various improvements, bug fixing and new authors name added
| -rw-r--r-- | AUTHORS | 8 | ||||
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/main.cpp | 35 | 
3 files changed, 39 insertions, 6 deletions
| @@ -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); | 
