mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
change project name to JS8Call-improved for release change name of JS8Call.iconset to JS8Call-improved.iconset Andreas: Clearly mark this as a non-official version of JS8Call. Add our copyright so we can open source our work. Change copyright notice for project contributors
49 lines
2.6 KiB
C++
49 lines
2.6 KiB
C++
#include "about.h"
|
|
#include <QString>
|
|
#include "revision_utils.hpp"
|
|
#include "ui_about.h"
|
|
|
|
CAboutDlg::CAboutDlg(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::CAboutDlg)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowTitle("About JS8Call-improved");
|
|
ui->labelTxt->setText (QString{"<h2>%1</h2>"
|
|
"<h3>What is JS8Call-improved?</h3>"
|
|
"<p>It is the result of a team that took JS8Call and added further improvements<br />(hopefully to be integrated into JS8Call proper later).<br />This team includes: <br />Chris AC9KH, Allan W6BAZ, Wyatt KJ4CTD, Joe K0OG, Andreas DJ3EI.</p>"
|
|
"<p>The JS8Call-improved code lives in "
|
|
"<a href=\"https://github.com/Chris-AC9KH/JS8Call-improved\">https://github.com/Chris-AC9KH/JS8Call-improved</a> .</p>"
|
|
"<h3>What is JS8Call?</h3>"
|
|
"<p>JS8Call is a derivative of the WSJT-X application, "
|
|
"restructured and redesigned for message passing. <br/>"
|
|
"It is not supported by nor endorsed by the WSJT-X "
|
|
"development group. <br/>JS8Call is "
|
|
"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/>"
|
|
"The source code modifications are public and can be found in <a href=\"https://github.com/js8call/js8call\">this repository</a>.<br/><br/>"
|
|
|
|
"JS8Call is heavily inspired by WSJT-X, Fldigi, "
|
|
"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 />"
|
|
"JS8Call stands on the shoulder of giants...the takeoff angle "
|
|
"is better up there.<br /><br />"
|
|
"A special thanks goes out to:<br/><br/><strong>"
|
|
"KC9QNE, "
|
|
"KI6SSI, "
|
|
"K0OG, "
|
|
"LB9YH, "
|
|
"M0IAX, "
|
|
"N0JDS, "
|
|
"OH8STN, "
|
|
"VA3OSO, "
|
|
"VK1MIC, "
|
|
"W0FW, "
|
|
"W6BAZ,</strong><br/><br/>and the many other amateur radio operators who have helped<br/>"
|
|
"bring JS8Call into the world.</p>"}.arg(program_title()));
|
|
}
|
|
|
|
CAboutDlg::~CAboutDlg()
|
|
{
|
|
}
|