2012-05-22 17:09:48 +00:00
|
|
|
#include "about.h"
|
2014-03-30 01:31:40 +00:00
|
|
|
|
2015-02-23 15:19:41 +00:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
#include "revision_utils.hpp"
|
2012-05-22 17:09:48 +00:00
|
|
|
|
2015-02-23 15:19:41 +00:00
|
|
|
#include "ui_about.h"
|
2014-03-26 13:21:00 +00:00
|
|
|
|
2015-02-23 15:19:41 +00:00
|
|
|
CAboutDlg::CAboutDlg(QWidget *parent) :
|
2012-05-22 17:09:48 +00:00
|
|
|
QDialog(parent),
|
|
|
|
|
ui(new Ui::CAboutDlg)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
2014-03-30 01:31:40 +00:00
|
|
|
|
2016-06-22 15:19:24 +00:00
|
|
|
ui->labelTxt->setText ("<h2>" + QString {"WSJT-X v"
|
2015-02-23 15:19:41 +00:00
|
|
|
+ QCoreApplication::applicationVersion ()
|
2016-06-22 15:19:24 +00:00
|
|
|
+ " " + revision ()}.simplified () + "</h2><br />"
|
|
|
|
|
"WSJT-X implements a number of digital modes designed for <br />"
|
|
|
|
|
"weak-signal Amateur Radio communication. <br /><br />"
|
2021-01-04 21:55:15 +00:00
|
|
|
"© 2001-2021 by Joe Taylor, K1JT, Bill Somerville, G4WJS, <br />"
|
2021-04-22 12:08:11 -04:00
|
|
|
"Steve Franke, K9AN, and Nico Palermo, IV3NWV. <br /><br />"
|
2020-06-27 00:23:34 +01:00
|
|
|
"We gratefully acknowledge contributions from AC6SL, AE4JY,<br />"
|
2021-03-12 09:47:56 -05:00
|
|
|
"DF2ET, DJ0OT, G3WDG, G4KLA, IW3RAB, K3WYC, KA1GT,<br />"
|
2020-09-03 19:35:50 +01:00
|
|
|
"KA6MAL, KA9Q, KB1ZMX, KD6EKQ, KI7MT, KK1D, ND0B, PY2SDR,<br />"
|
2020-12-02 01:53:36 +00:00
|
|
|
"VE1SKY, VK3ACF, VK4BDJ, VK7MO, W3DJS, W4TI, W4TV, and W9MDB.<br /><br />"
|
2016-06-22 15:19:24 +00:00
|
|
|
"WSJT-X is licensed under the terms of Version 3 <br />"
|
2020-05-06 09:38:09 -04:00
|
|
|
"of the GNU General Public License (GPL) <br /><br />"
|
2020-10-10 13:38:15 +01:00
|
|
|
"<a href=" TO_STRING__ (PROJECT_HOMEPAGE) ">"
|
2016-06-22 15:19:24 +00:00
|
|
|
"<img src=\":/icon_128x128.png\" /></a>"
|
2016-06-21 12:50:05 +00:00
|
|
|
"<a href=\"https://www.gnu.org/licenses/gpl-3.0.txt\">"
|
|
|
|
|
"<img src=\":/gpl-v3-logo.svg\" height=\"80\" /><br />"
|
2016-06-22 15:19:24 +00:00
|
|
|
"https://www.gnu.org/licenses/gpl-3.0.txt</a>");
|
2012-05-22 17:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CAboutDlg::~CAboutDlg()
|
|
|
|
|
{
|
|
|
|
|
}
|