Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8739a1fd6 | |||
| 0b2107402e | |||
| c31ea332d9 | |||
| 4c0c932238 | |||
| 3584fa4b5e |
@@ -1929,11 +1929,6 @@ void Configuration::impl::set_rig_invariants ()
|
||||
// only enable CAT option if transceiver has CAT PTT
|
||||
ui_->PTT_CAT_radio_button->setEnabled (CAT_PTT_enabled);
|
||||
|
||||
// if CAT PTT is not enabled, select VOX instead
|
||||
if(!CAT_PTT_enabled){
|
||||
ui_->PTT_VOX_radio_button->setChecked(true);
|
||||
}
|
||||
|
||||
auto enable_ptt_port = TransceiverFactory::PTT_method_CAT != ptt_method && TransceiverFactory::PTT_method_VOX != ptt_method;
|
||||
ui_->PTT_port_combo_box->setEnabled (enable_ptt_port);
|
||||
// if PTT port is not enabled, fill it with the text of the CAT port
|
||||
|
||||
+11
-10
@@ -26,16 +26,17 @@ namespace
|
||||
{
|
||||
FrequencyList_v2::FrequencyItems const default_frequency_list =
|
||||
{
|
||||
{ 1842000, Modes::JS8, IARURegions::ALL}, // 2 above
|
||||
{ 3578000, Modes::JS8, IARURegions::ALL}, // 5 above
|
||||
{ 7078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{10130000, Modes::JS8, IARURegions::ALL}, // 6 below
|
||||
{14078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{18104000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{21078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{24922000, Modes::JS8, IARURegions::ALL}, // 9 above
|
||||
{28078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{50318000, Modes::JS8, IARURegions::ALL}, // 5 above
|
||||
{ 1842000, Modes::JS8, IARURegions::ALL}, // 2 above
|
||||
{ 3578000, Modes::JS8, IARURegions::ALL}, // 5 above
|
||||
{ 7078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{ 10130000, Modes::JS8, IARURegions::ALL}, // 6 below
|
||||
{ 14078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{ 18104000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{ 21078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{ 24922000, Modes::JS8, IARURegions::ALL}, // 9 above
|
||||
{ 28078000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
{ 50318000, Modes::JS8, IARURegions::ALL}, // 5 above
|
||||
{144178000, Modes::JS8, IARURegions::ALL}, // 4 above
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
# Version number components
|
||||
set (WSJTX_VERSION_MAJOR 0)
|
||||
set (WSJTX_VERSION_MINOR 14)
|
||||
set (WSJTX_VERSION_PATCH 0)
|
||||
set (WSJTX_VERSION_PATCH 1)
|
||||
set (WSJTX_RC 0) # release candidate number, comment out or zero for development versions
|
||||
set (WSJTX_VERSION_IS_RELEASE 0) # set to 1 for final release build
|
||||
|
||||
+13
-2
@@ -7473,8 +7473,8 @@ void MainWindow::buildQueryMenu(QMenu * menu, QString call){
|
||||
addMessageText(QString("%1 QUERY CALL [CALLSIGN]?").arg(selectedCall), true, true);
|
||||
});
|
||||
|
||||
auto qsoQueryMsgAction = menu->addAction(QString("%1 QUERY MSGS - Do you have any messages for me?").arg(call).trimmed());
|
||||
connect(qsoQueryMsgAction, &QAction::triggered, this, [this](){
|
||||
auto qsoQueryMsgsAction = menu->addAction(QString("%1 QUERY MSGS - Do you have any messages for me?").arg(call).trimmed());
|
||||
connect(qsoQueryMsgsAction, &QAction::triggered, this, [this](){
|
||||
|
||||
QString selectedCall = callsignSelected();
|
||||
if(selectedCall.isEmpty()){
|
||||
@@ -7484,6 +7484,17 @@ void MainWindow::buildQueryMenu(QMenu * menu, QString call){
|
||||
addMessageText(QString("%1 QUERY MSGS").arg(selectedCall), true, true);
|
||||
});
|
||||
|
||||
auto qsoQueryMsgAction = menu->addAction(QString("%1 QUERY MSG [ID] - Please deliver the complete message identified by ID").arg(call).trimmed());
|
||||
connect(qsoQueryMsgAction, &QAction::triggered, this, [this](){
|
||||
|
||||
QString selectedCall = callsignSelected();
|
||||
if(selectedCall.isEmpty()){
|
||||
return;
|
||||
}
|
||||
|
||||
addMessageText(QString("%1 QUERY MSG [ID]").arg(selectedCall), true, true);
|
||||
});
|
||||
|
||||
auto agnAction = menu->addAction(QString("%1 AGN? - Please automatically repeat your last transmission").arg(call).trimmed());
|
||||
connect(agnAction, &QAction::triggered, this, [this](){
|
||||
|
||||
|
||||
@@ -226,6 +226,7 @@ QMap<quint32, QString> hbs = {
|
||||
{ 1, "HB AUTO" }, // HB AUTO
|
||||
{ 2, "HB AUTO RELAY" }, // HB AUTO RELAY
|
||||
{ 3, "HB AUTO RELAY SPOT" }, // HB AUTO RELAY SPOT
|
||||
{ 7, "HB AUTO SPOT"}, // HB AUTO SPOT
|
||||
{ 4, "HB RELAY" }, // HB RELAY
|
||||
{ 5, "HB RELAY SPOT" }, // HB RELAY SPOT
|
||||
{ 6, "HB SPOT" }, // HB SPOT
|
||||
|
||||
Reference in New Issue
Block a user