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 /src | |
| 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cpp | 35 | 
1 files changed, 33 insertions, 2 deletions
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);  | 
