Skip to content

Commit

Permalink
Updated authors
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed May 25, 2014
1 parent 3cf2cb8 commit 06959b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Adam Batkin <[email protected]>
Giacomo Margarito <[email protected]>
Greg Carp <[email protected]>
Ilya Plenne <[email protected]>
Jörg Thalheim <[email protected]>
Kim Jzhone <[email protected]>
Kos Ivantsov <[email protected]>
lightonflux <[email protected]>
Lukas Holecek <[email protected]>
Martin Lepadusch <[email protected]>
Matt d'Entremont <[email protected]>
Michal Čihař <[email protected]>
Patricio M. Ros <[email protected]>
Ryan Wooden <[email protected]>
Scott Kostyshak <[email protected]>
Expand Down
12 changes: 9 additions & 3 deletions src/gui/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ QString helpLink(const QString &name, const QString &link)
QString helpDeveloper(const char *name, const char *mail)
{
return QString("<div>%1 &nbsp;&nbsp;&nbsp;<span class='h3'>%2</span></div>")
.arg(name)
.arg(QString::fromUtf8(name))
.arg(mail);
}

Expand Down Expand Up @@ -125,7 +125,7 @@ QString AboutDialog::aboutPage()

"<p>"
"<table class='links'>"
+ helpLink( tr("Author"), "Luk&#225;&#353; Hole&#269;ek" )
+ helpLink( tr("Author"), QString::fromUtf8("Lukáš Holeček") )
+ helpLink( tr("E-mail"), helpMail("[email protected]") )
+ helpLink( tr("Web"), helpUrl("http://hluk.github.io/CopyQ/") )
+ helpLink( tr("Wiki"), helpUrl("https://sourceforge.net/p/copyq/wiki/Home/") )
Expand All @@ -142,11 +142,17 @@ QString AboutDialog::aboutPage()
"<p class=\"pp\">"
// developers
+ helpDeveloper("Adam Batkin", "[email protected]")
+ helpDeveloper("Giacomo Margarito", "[email protected]")
+ helpDeveloper("Greg Carp", "[email protected]")
+ helpDeveloper("Ilya Plenne", "[email protected]")
+ helpDeveloper("J&#246;rg Thalheim", "[email protected]")
+ helpDeveloper("Jörg Thalheim", "[email protected]")
+ helpDeveloper("Kim Jzhone", "[email protected]")
+ helpDeveloper("Kos Ivantsov", "[email protected]")
+ helpDeveloper("lightonflux", "[email protected]")
+ helpDeveloper("Lukas Holecek", "[email protected]")
+ helpDeveloper("Martin Lepadusch", "[email protected]")
+ helpDeveloper("Matt d'Entremont", "[email protected]")
+ helpDeveloper("Michal Čihař", "[email protected]")
+ helpDeveloper("Patricio M. Ros", "[email protected]")
+ helpDeveloper("Ryan Wooden", "[email protected]")
+ helpDeveloper("Scott Kostyshak", "[email protected]")
Expand Down

0 comments on commit 06959b0

Please sign in to comment.