diff --git a/.gitignore b/.gitignore index f9ae6178..6ad0ffa6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,9 @@ moc_* ui_* qrc_* +# Contributors list +gen_contributors.html + # Executables & libraries Ripes RipesTest diff --git a/resources/text/get_contributors.py b/resources/text/get_contributors.py index 433704b8..53a75637 100644 --- a/resources/text/get_contributors.py +++ b/resources/text/get_contributors.py @@ -6,9 +6,10 @@ lines = git_output.stdout.splitlines() names = [line.partition("\t")[-1] for line in lines] -text = "" +text = '

' for name in names: - text = text + '

' + name + "

\n" + text = text + name + "
\n" +text = text + "

" file = open("gen_contributors.html", "w") file.write(text) diff --git a/src/aboutdialog.cpp b/src/aboutdialog.cpp index 79d7dfce..63db3630 100644 --- a/src/aboutdialog.cpp +++ b/src/aboutdialog.cpp @@ -12,8 +12,8 @@ AboutDialog::AboutDialog(QWidget *parent) const QString url = "https://github.com/mortbopet/Ripes"; QString info = QString(); - info.append("" + name + "
" + getRipesVersion()); - info.append("

" + url + ""); + info.append("

" + name + "
" + getRipesVersion() + "

"); + info.append("

" + url + "

"); m_ui->setupUi(this); m_ui->infoLabel->setText(info);