/** * @file About.cpp * @brief implementation of the About dialog for the UI */ #include "About.h" #include "JS8_Main/revision_utils.h" #include "ui_About.h" #include CAboutDlg::CAboutDlg(QWidget *parent) : QDialog(parent), ui(new Ui::CAboutDlg) { ui->setupUi(this); setWindowTitle("About JS8Call"); ui->labelTxt->setText(QString( "

%1


" "Build %2 on %3 by %4@%5
" "

About the JS8Call Development Team

" "

JS8Call is now being developed by the team that " "continued development of the original " "js8call starting in late 2024.
This team includes:
Chris " "AC9KH, Allan W6BAZ, " "Wyatt KJ4CTD, Joe K0OG, Andreas DJ3EI, Rob K4RWR, Jordan KN4CRD.

" "The JS8Call code can be downloaded at " "https://" "github.com/" "JS8Call-improved/JS8Call-improved .

" "Legal Notice:
" "JS8Call 2.4 and later uses libraries from the FFmpeg project under " "the LGPLv2.1

" "

What is JS8Call?

" "

JS8Call is a derivative of the WSJT-X application, " "restructured and redesigned for message passing.
" "It is not supported by nor endorsed by the WSJT-X " "development group.
JS8Call is " "licensed under and in accordance with the terms " "of the GPLv3 " "license.
" "The source code modifications are public and can be found in this " "repository.

" "JS8Call is heavily inspired by WSJT-X, Fldigi and FSQCall and would " "not exist without the hard work
" "and dedication of the many developers in the amateur radio " "community.

" "JS8Call stands on the shoulder of giants...the takeoff angle is " "better up there.

" "A special thanks goes out to:

" "KC9QNE, " "KI6SSI, " "K0OG, " "LB9YH, " "M0IAX, " "N0JDS, " "OH8STN, " "VA3OSO, " "VK1MIC, " "W0FW, " "W6BAZ,

" "and the many other amateur radio operators who have helped bring " "JS8Call into the world.

" ).arg(program_title(), GITSHORT, CREATED, UNAME, MACHINE)); } CAboutDlg::~CAboutDlg() {}