2018-02-08 21:28:33 -05:00
# 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 ) ;
2025-10-28 21:04:18 -05:00
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, "
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/> "
2024-11-07 07:44:47 -08:00
" The source code modifications are public and can be found in <a href= \" https://github.com/js8call/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, "
2024-11-07 07:38:55 -08:00
" W0FW, "
" W6BAZ,</strong><br/><br/>and the many other amateur radio operators who have helped<br/> "
2025-10-28 21:04:18 -05:00
" bring JS8Call into the world.</p> " } . arg ( program_title ( ) ) ) ;
2018-02-08 21:28:33 -05:00
}
CAboutDlg : : ~ CAboutDlg ( )
{
}