-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.cpp
50 lines (44 loc) · 2.62 KB
/
about.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "about.h"
#include <QCoreApplication>
#include <QString>
#include "revision_utils.hpp"
#include "ui_about.h"
#include "moc_about.cpp"
CAboutDlg::CAboutDlg(QWidget *parent) :
QDialog(parent),
ui(new Ui::CAboutDlg)
{
ui->setupUi(this);
ui->labelTxt->setText ("<html><h2>"
+ QCoreApplication::applicationName () + " v"
+ QCoreApplication::applicationVersion () + " improved" + "</h2>\n\n"
"It is modified WSJT-X software forked from WSJT-X v1.7 r6462, <br>"
"FT8 code is forked from WSJT-X v1.8 and v2.0, <br>"
"FT4 code is forked from WSJT-X v2.1, <br>"
"WSPR code is forked from WSJT-X v2.1.2, <br>"
"© 2001-2022 by Joe Taylor, K1JT, Bill Somerville, G4WJS, <br>"
"Steve Franke, K9AN, and Nico Palermo, IV3NWV.<br><br>"
"JTDX supports FT8, FT4, JT9, T10 and JT65A digital modes for HF <br>"
"amateur radio communication, focused on DXing <br>"
"and being shaped by community of DXers. <br>"
"© 2016-2022 by Igor Chernikov, UA3DJY, and Arvo Järve, ES1JA. <br>"
"It is created with contributions from 5P1KZX, 9A5CW, BD3OOX, CE2EC, CT1AXS,<br>"
"DK7UY, DO1IP, EA1AHY, EA3W, EA7QL, ES2HV, ES2MC, ES4AW, ES5TF, F1DSZ, F5RUE,<br>"
"G4UJS, G7OED, HA3LI, IZ5ILJ, JA2BQX, JG1APX, JP1LRT, LU9DO, MM0HVU, N6ML,<br>"
"NL9222, OE1MWW, ON3CQ, PA7TWO, PP5FMM, R3BB, RK3AOL, RX3ASP, RA4UDC, RW4O, R0JF,<br>"
"SM0LTV, SP2L, SV1IYF, UA3ALE, US-E-12, VE3NEA, VK3AMA, VK6KXW, VK7YUM, VR2UPU,<br>"
"W9MDB, YL3GBC family and LY3BG family: Vytas and Rimas Kudelis. <br><br>"
"© 2022 improved version developed by Uwe Risse, DG2YCB"
"<br><br>"
"Modified by Kenji Rikitake, JJ1BDX<br>"
"for removing 160m/80m/60m/40m/6m/2m band switches<br>"
"added to 2023-03-28 release"
"<br><br>"
"JTDX is licensed under the terms of Version3<br>"
"of the GNU General Public License(GPL)<br>"
"<a href=\"https://www.gnu.org/licenses/gpl-3.0.txt\">"
"https://www.gnu.org/licenses/gpl-3.0.txt</a>");
}
CAboutDlg::~CAboutDlg()
{
}