diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-25 11:36:32 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-25 11:36:32 +0100 |
commit | f27af7560aaeb2248d92dcefbfafb8ddc210050b (patch) | |
tree | 28fd4e6ca1f28d0db2c39736707eca6ec7081c75 /src/main.cpp | |
parent | Merge commit 'refs/merge-requests/1903' of git://gitorious.org/rekonq/mainline (diff) | |
download | rekonq-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
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 34 |
1 files changed, 22 insertions, 12 deletions
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); |