Use WSJT-X revision utilities to label the MAP65 revision

MAP65 still has  a private version number as set  in map65/main.c, but
the SCS revision automatically tracks the git SHA.
This commit is contained in:
Bill Somerville
2021-04-30 22:51:09 +01:00
parent 42318c9021
commit 039513e2cf
8 changed files with 32 additions and 33 deletions
+3 -4
View File
@@ -1,5 +1,6 @@
//------------------------------------------------------------------ MainWindow
#include "mainwindow.h"
#include "revision_utils.hpp"
#include "ui_mainwindow.h"
#include "devsetup.h"
#include "plotter.h"
@@ -32,8 +33,6 @@ BandMap* g_pBandMap = NULL;
TxTune* g_pTxTune = NULL;
QSharedMemory mem_m65("mem_m65");
QString Program_Title_Version=" MAP65 3.0.0-devel by K1JT, G4WJS, K9AN, and IV3NWV";
extern const int RxDataFrequency = 96000;
extern const int TxDataFrequency = 11025;
@@ -92,7 +91,7 @@ MainWindow::MainWindow(QWidget *parent) :
connect(ui->decodedTextBrowser,SIGNAL(selectCallsign(bool)),this,
SLOT(selectCall2(bool)));
setWindowTitle(Program_Title_Version);
setWindowTitle (program_title ());
connect(&soundInThread, SIGNAL(readyForFFT(int)),
this, SLOT(dataSink(int)));
@@ -782,7 +781,7 @@ void MainWindow::on_actionBlue_triggered()
void MainWindow::on_actionAbout_triggered() //Display "About"
{
CAboutDlg dlg(this,Program_Title_Version);
CAboutDlg dlg(this);
dlg.exec();
}