2018-02-08 21:28:33 -05:00
|
|
|
#include "about.h"
|
|
|
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "revision_utils.hpp"
|
|
|
|
|
|
|
|
#include "ui_about.h"
|
|
|
|
|
|
|
|
CAboutDlg::CAboutDlg(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::CAboutDlg)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2018-10-04 13:52:52 -04:00
|
|
|
ui->labelTxt->setText ("<h2>" + QString {"JS8Call v"
|
2018-02-08 21:28:33 -05:00
|
|
|
+ QCoreApplication::applicationVersion ()
|
|
|
|
+ " " + revision ()}.simplified () + "</h2><br />"
|
2018-09-07 20:07:10 -04:00
|
|
|
|
2018-10-04 13:52:52 -04:00
|
|
|
"JS8Call is a derivative of the WSJT-X application, "
|
2018-09-07 20:07:10 -04:00
|
|
|
"restructured and redesigned for message passing. <br/>"
|
|
|
|
"It is not supported by nor endorsed by the WSJT-X "
|
2018-10-04 13:52:52 -04:00
|
|
|
"development group. <br/>JS8Call is "
|
2018-09-07 20:07:10 -04:00
|
|
|
"licensed under and in accordance with the terms "
|
|
|
|
"of the <a href=\"https://www.gnu.org/licenses/gpl-3.0.txt\">GPLv3 license</a>.<br/>"
|
2019-03-31 15:45:09 -04:00
|
|
|
"The source code modifications are public and can be found in <a href=\"https://bitbucket.org/widefido/js8call/\">this repository</a>.<br/><br/>"
|
2018-09-07 20:07:10 -04:00
|
|
|
|
2018-10-04 13:52:52 -04:00
|
|
|
"JS8Call is heavily inspired by WSJT-X, Fldigi, "
|
2018-09-07 20:07:10 -04:00
|
|
|
"and FSQCall <br/>and would not exist without the hard work and "
|
|
|
|
"dedication of the many <br/>developers in the amateur radio "
|
|
|
|
"community.<br /><br />"
|
2018-10-04 13:52:52 -04:00
|
|
|
"JS8Call stands on the shoulder of giants...the takeoff angle "
|
2018-09-07 20:07:10 -04:00
|
|
|
"is better up there.<br /><br />"
|
2018-12-17 01:46:57 -05:00
|
|
|
"A special thanks goes out to:<br/><br/><strong>"
|
2018-09-07 20:07:10 -04:00
|
|
|
"KC9QNE, "
|
|
|
|
"KI6SSI, "
|
2018-09-29 12:20:11 -04:00
|
|
|
"K0OG, "
|
2018-09-07 20:07:10 -04:00
|
|
|
"LB9YH, "
|
|
|
|
"M0IAX, "
|
|
|
|
"N0JDS, "
|
|
|
|
"OH8STN, "
|
|
|
|
"VA3OSO, "
|
|
|
|
"VK1MIC, "
|
2018-12-17 01:46:57 -05:00
|
|
|
"W0FW,</strong><br/><br/>and the many other amateur radio operators who have helped<br/>"
|
|
|
|
"bring JS8Call into the world.");
|
2018-02-08 21:28:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CAboutDlg::~CAboutDlg()
|
|
|
|
{
|
|
|
|
}
|