Fix links

This commit is contained in:
eelke 2022-09-20 19:15:28 +02:00
parent 0911d2471e
commit 7c88716ab7

View file

@ -8,7 +8,7 @@
void ShowAboutDialog(QWidget *parent)
{
QString pgLabVersionString = "0.2";
QString releaseNotesUrl = "file:///" + QCoreApplication::applicationDirPath() + "\\releasenotes.html";
QString releaseNotesUrl = "https://eelke.gitlab.io/pgLab/releasenotes.html";
QString year = QString::fromLatin1(__DATE__, 11).right(4);
QMessageBox::about(parent, "pgLab", QMessageBox::tr(
"<h1>Version %3</h1>"
@ -26,5 +26,5 @@ void ShowAboutDialog(QWidget *parent)
void OpenManual()
{
QDesktopServices::openUrl(QString("https://eelke.gitlab.io/pgLab/#pglab-user-manual"));
QDesktopServices::openUrl(QString("https://eelke.gitlab.io/pgLab/"));
}