-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,20 +51,23 @@ QAboutDialog::QAboutDialog(QWidget * parent) | |
{ | ||
setWindowTitle(tr("About")); | ||
|
||
m_topLabel.setText(tr("BKBTL Qt Version 1.0\nCopyright (C) 2009-2023")); | ||
m_linkLabel.setText(tr("<a href=\"https://github.com/nzeemin/bkbtl-qt\">https://github.com/nzeemin/bkbtl-qt</a>")); | ||
m_topLabel.setText(tr("BKBTL Qt Version 1.0\nCopyright (C) 2009-2024")); | ||
m_authorsLabel.setText(tr("Author:\r\nNikita Zimin ([email protected])")); | ||
m_thanksLabel.setText(tr("Special thanks to:\nAlexey Kisly")); | ||
m_linkLabel.setText(tr("<a href=\"https://github.com/nzeemin/bkbtl-qt\">https://github.com/nzeemin/bkbtl-qt</a>")); | ||
m_disclaimerLabel.setText(tr("This program is provided by authors and contributors AS IS, with absolutely no warranty of any kind. Please use it on your own risk.")); | ||
m_bottomLabel.setText(tr("Build date:\t%1 %2\nQt version:\t%3").arg(__DATE__).arg(__TIME__).arg(QT_VERSION_STR)); | ||
|
||
m_linkLabel.setOpenExternalLinks(true); | ||
m_disclaimerLabel.setWordWrap(true); | ||
|
||
setMinimumSize(260, 320); | ||
setMinimumSize(420, 320); | ||
|
||
m_layout.addWidget(&m_topLabel); | ||
m_layout.addWidget(&m_linkLabel); | ||
m_layout.addWidget(&m_authorsLabel); | ||
m_layout.addWidget(&m_thanksLabel); | ||
m_layout.addWidget(&m_linkLabel); | ||
m_layout.addWidget(&m_disclaimerLabel); | ||
m_layout.addWidget(&m_bottomLabel); | ||
m_buttons.setStandardButtons(QDialogButtonBox::Ok); | ||
QObject::connect(&m_buttons, SIGNAL(accepted()), this, SLOT(accept())); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters