Skip to content

Commit

Permalink
docs: update about info
Browse files Browse the repository at this point in the history
  • Loading branch information
XMuli committed Mar 24, 2021
1 parent 13c95fa commit b2a3cc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ void AboutDialog::init()
QVBoxLayout *vLayout = new QVBoxLayout(content);
vLayout->setContentsMargins(0, 0, 0, 0);
vLayout->addSpacing(15);
DLabel *labVersion = new DLabel(tr("Version: 0.6.2 2021/03/24"));
DLabel *labCopyright = new DLabel(tr("Copyright (c) 2020 By ifmet.cn"));
DLabel *labVersion = new DLabel(tr("Version: 0.6.3 2021/03/24"));
DLabel *labCopyright = new DLabel(tr("Copyright (c) 2021 By ifmet.cn"));
vLayout->addWidget(labVersion, 0, Qt::AlignCenter);
vLayout->addWidget(labCopyright, 0, Qt::AlignCenter);
vLayout->addSpacing(15);
Expand All @@ -55,13 +55,13 @@ void AboutDialog::init()
hLayout->setContentsMargins(0, 0, 0, 0);
DLabel *labAuthor = new DLabel();
labAuthor->setOpenExternalLinks(true);
labAuthor->setText(tr("<a href=\"https://xmuli.tech/about\">Author"));
labAuthor->setText(tr("<a href=\"https://ifmet.cn\">Author"));
DLabel *labGithub = new DLabel();
labGithub->setOpenExternalLinks(true);
labGithub->setText(tr("<a href=\"https://github.com/xmuli/lfxSpeed\">GitHub"));
DLabel *labLicense = new DLabel();
labLicense->setOpenExternalLinks(true);
labLicense->setText(tr("<a href=\"https://github.com/xmuli/lfxSpeed/blob/dev/LICENSE\">License"));
labLicense->setText(tr("<a href=\"https://github.com/xmuli/lfxSpeed/blob/master/LICENSE\">License"));
DLabel *labDonation = new DLabel();
labDonation->setOpenExternalLinks(true);
labDonation->setText(tr("<a href=\"\">Donation"));
Expand Down

0 comments on commit b2a3cc5

Please sign in to comment.