Removed remnants of WSJT-X references

This commit is contained in:
Jordan Sherer 2018-12-23 08:54:31 -05:00
parent 478a909b90
commit 88fb605b40
5 changed files with 6 additions and 29 deletions

View File

@ -2220,7 +2220,7 @@ comments field.</string>
<item>
<widget class="QCheckBox" name="accept_udp_requests_check_box">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;With this enabled WSJT-X will accept certain requests back from a UDP server that receives decode messages.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;With this enabled the app will accept certain requests back from a UDP server that receives decode messages.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Accept UDP requests</string>
@ -2384,7 +2384,7 @@ for assessing propagation and system performance.</string>
<item row="0" column="0">
<widget class="QCheckBox" name="enable_n1mm_broadcast_check_box">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When checked, WSJT-X will broadcast a logged contact in ADIF format to the configured hostname and port. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When checked, the app will broadcast a logged contact in ADIF format to the configured hostname and port. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Enable logged contact ADIF broadcast</string>
@ -2505,7 +2505,7 @@ for assessing propagation and system performance.</string>
<item>
<widget class="QGroupBox" name="groupBox_3">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;See &amp;quot;Frequency Calibration&amp;quot; in the WSJT-X User Guide for details of how to determine these parameters for your radio.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;See &amp;quot;Frequency Calibration&amp;quot; in the User Guide for details of how to determine these parameters for your radio.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="title">
<string>Frequency Calibration</string>

View File

@ -213,7 +213,7 @@ bool ADIF::addQSOToFile(QByteArray const& ADIF_record)
{
QTextStream out(&f2);
if (f2.size()==0)
out << "WSJT-X ADIF Export<eoh>" << endl; // new file
out << "JS8Call ADIF Export<eoh>" << endl; // new file
out << ADIF_record << " <eor>" << endl;
f2.close();

View File

@ -107,7 +107,6 @@ int main(int argc, char *argv[])
// that GUI has correct l18n
// Override programs executable basename as application name.
//a.setApplicationName ("WSJT-X");
a.setApplicationName("JS8Call");
a.setApplicationVersion (version ());

View File

@ -1079,28 +1079,6 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
//splashTimer.setSingleShot (true);
//splashTimer.start (20 * 1000);
/*
if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or
m_config.my_callsign()=="G4WJS" or
m_config.my_callsign().contains("KH7Z")) {
ui->actionWSPR_LF->setEnabled(true);
} else {
QString errorMsg;
MessageBox::critical_message (this,
"Code in the WSJT-X development branch is\n"
"not currently available for on-the-air use.\n\n"
"Please use WSJT-X v1.8.0\n", errorMsg);
Q_EMIT finished ();
}
*/
/*
if(QCoreApplication::applicationVersion().contains("-devel") or
QCoreApplication::applicationVersion().contains("-rc")) {
QTimer::singleShot (0, this, SLOT (not_GA_warning_message ()));
}
*/
// TODO: jsherer - need to remove this eventually...
QTimer::singleShot (0, this, SLOT (checkStartupWarnings ()));
@ -4459,7 +4437,7 @@ void MainWindow::guiUpdate()
if(onAirFreq!=m_onAirFreq0) {
m_onAirFreq0=onAirFreq;
auto const& message = tr ("Please choose another Tx frequency."
" WSJT-X will not knowingly transmit another"
" The app will not knowingly transmit another"
" mode in the WSPR sub-band on 30m.");
#if QT_VERSION >= 0x050400
QTimer::singleShot (0, [=] { // don't block guiUpdate

View File

@ -127,7 +127,7 @@ void PSK_Reporter::dnsLookupResult(QHostInfo info)
// qDebug() << "PSK Reporter IP: " << m_pskReporterAddress;
// deal with miss-configured settings that attempt to set a
// Pskreporter Internet address for the WSJT-X UDP protocol
// Pskreporter Internet address for the UDP protocol
// server address
m_messageClient->add_blocked_destination (m_pskReporterAddress);
}