mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
21 lines
497 B
#include "AboutDialog.h" |
|
#include "ui_AboutDialog.h" |
|
#include <QDebug> |
|
#include "version.h" |
|
#include "BuildDateTimeQt.h" |
|
|
|
AboutDialog::AboutDialog(QWidget *parent) : |
|
QDialog(parent), |
|
ui(new Ui::AboutDialog) |
|
{ |
|
ui->setupUi(this); |
|
ui->i2pdVersionLabel->setText(I2PD_VERSION); |
|
ui->i2pVersionLabel->setText(I2P_VERSION); |
|
ui->buildDateTimeLabel->setText(BUILD_DATE_TIME_QT); |
|
ui->vcsCommitInfoLabel->setText(VCS_COMMIT_INFO); |
|
} |
|
|
|
AboutDialog::~AboutDialog() |
|
{ |
|
delete ui; |
|
}
|
|
|