Skip to content

Commit a60e888

Browse files
committed
Merge branch 'master' of https://github.com/ea4k/klog
2 parents 6fa7de0 + 9a586d7 commit a60e888

File tree

5 files changed

+23
-24
lines changed

5 files changed

+23
-24
lines changed

devscripts/win32-create-package.bat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rem *
2828
rem *****************************************************************************/@echo off
2929
echo Setting up environment for Qt usage...
3030
set KLOGDEVELVERSION=1
31-
set PATH=%PATH%;C:\Qt\6.8.3\mingw_64\bin;C:\Qt\Tools\mingw810_32\bin
31+
set PATH=%PATH%;C:\Qt\6.8.3\mingw_64\bin;C:\Qt\Tools\mingw1310_64\bin
3232
set PATH=%PATH%;C:\Program Files\InstallBuilder Enterprise 23.10.1\bin;
3333
set PATH=%PATH%;C:\Program Files (x86)\BitRock InstallBuilder Enterprise 15.10.1\bin;
3434
echo Line 10
@@ -50,8 +50,8 @@ set KLOGDEVELVERSION=!KLOGDEVELVERSION: =!
5050
rem set KLOGDEVELVERSION=%KLOGDEVELVERSION:~1%
5151
echo Building KLog-%KLOGDEVELVERSION%
5252
echo Line 40
53-
qmake -set CONFIG+=x86_32
54-
qmake src.pro
53+
qmake6 -set CONFIG+=x86_32
54+
qmake6 src.pro
5555
echo Line 41
5656
mingw32-make
5757
echo Line 42
@@ -61,8 +61,8 @@ xcopy /Y /S /F build\target\* release
6161
echo localdir=%cd%
6262
echo %localdir%
6363
rem COPY OpenSSL DLL
64-
copy ..\..\..\libs\win32\openssl\bin\*.dll release
65-
copy ..\..\..\libs\win32\hamlib\bin\*.dll release
64+
copy ..\..\libs\win32\openssl\*.dll release
65+
copy ..\..\libs\win32\hamlib\bin\*.dll release
6666
windeployqt6 --qmldir release release\klog.exe
6767
:: The SSL DLLs must be included and must match the version that were used to build Qt.
6868
:: Check in main.cpp and uncomment the SSL line to see what is the version that was used.

devscripts/win64-create-package.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ set KLOGDEVELVERSION=!KLOGDEVELVERSION: =!
5353
rem set KLOGDEVELVERSION=%KLOGDEVELVERSION:~1%
5454
echo Building KLog-%KLOGDEVELVERSION%
5555
echo Line 40
56-
qmake -set CONFIG+=x86_64
56+
qmake6 -set CONFIG+=x86_64
5757
echo Line 41
58-
qmake src.pro
58+
qmake6 src.pro
5959
echo Line 42
6060
mingw32-make
6161
echo Line 43

src/mainwindow.cpp

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ MainWindow::MainWindow(DataProxy_SQLite *dp):
164164
loggWinAct = new QAction(tr("&Log Window"), this);
165165

166166

167-
dxClusterAssistant = new DXClusterAssistant(Q_FUNC_INFO);
167+
//dxClusterAssistant = new DXClusterAssistant(Q_FUNC_INFO);
168168

169169
//qDebug() << Q_FUNC_INFO << ": Awards to be created " << QTime::currentTime().toString("hh:mm:ss") ;
170170
//awards = new Awards(dataProxy, Q_FUNC_INFO);
@@ -464,7 +464,7 @@ void MainWindow::init()
464464
awardsWidget->setManageDXMarathon(manageDxMarathon);
465465

466466
dxClusterWidget->setCurrentLog(currentLog);
467-
dxClusterAssistant->init();
467+
//dxClusterAssistant->init();
468468

469469
//qDebug() << Q_FUNC_INFO << " - 80" << (QTime::currentTime()).toString("HH:mm:ss") ;
470470
//qDebug() << Q_FUNC_INFO << ": calling Software update ..." << (QTime::currentTime()).toString("HH:mm:ss") ;
@@ -847,10 +847,10 @@ void MainWindow::slotShowMap()
847847
//mapWindow->addLocators(a, QColor(0, 0, 255, 127));
848848
}
849849

850-
void MainWindow::slotShowDXClusterAssistant()
851-
{
852-
dxClusterAssistant->show();
853-
}
850+
//void MainWindow::slotShowDXClusterAssistant()
851+
//{
852+
//dxClusterAssistant->show();
853+
//}
854854
void MainWindow::setMainWindowTitle()
855855
{
856856
//qDebug() << Q_FUNC_INFO << " - Start";
@@ -2550,10 +2550,10 @@ void MainWindow::createMenusCommon()
25502550
connect(showMapAct, SIGNAL(triggered()), this, SLOT(slotShowMap()));
25512551
showMapAct->setToolTip(tr("Show the statistics of your radio activity."));
25522552

2553-
dxClusterAssistantAct = new QAction (tr("DXCluster Assistant"), this);
2554-
toolMenu->addAction(dxClusterAssistantAct);
2555-
connect(dxClusterAssistantAct, SIGNAL(triggered()), this, SLOT(slotShowDXClusterAssistant()));
2556-
dxClusterAssistantAct->setToolTip(tr("Show the statistics of your radio activity."));
2553+
//dxClusterAssistantAct = new QAction (tr("DXCluster Assistant"), this);
2554+
//toolMenu->addAction(dxClusterAssistantAct);
2555+
//connect(dxClusterAssistantAct, SIGNAL(triggered()), this, SLOT(slotShowDXClusterAssistant()));
2556+
//dxClusterAssistantAct->setToolTip(tr("Show the statistics of your radio activity."));
25572557

25582558

25592559
//qDebug() << "MainWindow::createMenusCommon before" ;
@@ -5004,7 +5004,6 @@ void MainWindow::slotAnalyzeDxClusterSignal(const DXSpot &_spot)
50045004

50055005
//proposedQSOs pQSO;
50065006

5007-
50085007
//pQSO.status = awards.getQSOStatus(statusI);
50095008
//Callsign callsign(spot.getDxCall());
50105009
//if (callsign.isValid())

src/mainwindow.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
//#include "locator.h"
4646
#include "dxcluster/dxcluster.h"
4747
#include "dxcluster/dxspot.h"
48-
#include "dxcluster/dxclusterassistant.h"
48+
//#include "dxcluster/dxclusterassistant.h"
4949
#include "frequency.h"
5050
#include "awards.h"
5151
#include "inputwidgets/mainwindowsattab.h"
@@ -310,7 +310,7 @@ private slots:
310310
void slotShowQSOsFromDXCCWidget(QList<int> _qsos);
311311

312312
// DXCLUSTER ASSISTANT
313-
void slotShowDXClusterAssistant();
313+
//void slotShowDXClusterAssistant();
314314

315315
//UDP Server (WXJT-x)
316316
void slotWSJXstatusFromUDPServer(const int _type, const QString &_dxcall, const double _freq, const QString &_mode,
@@ -584,7 +584,7 @@ private slots:
584584
QAction *qslSentRequestedAct;
585585
QAction *qslRecRequestedAct;
586586
QAction *showMapAct;
587-
QAction *dxClusterAssistantAct;
587+
//QAction *dxClusterAssistantAct;
588588

589589
QStringList bands;
590590
QStringList modes;
@@ -633,7 +633,7 @@ private slots:
633633
bool dxClusterShowHF, dxClusterShowVHF, dxClusterShowWARC, dxClusterShowWorked, dxClusterShowConfirmed, dxClusterShowAnn, dxClusterShowWWV, dxClusterShowWCY;
634634
// </CLUSTER>
635635

636-
DXClusterAssistant *dxClusterAssistant;
636+
// DXClusterAssistant *dxClusterAssistant;
637637

638638
// </UI>
639639
int infoTimeout; // timeout that temporary info will stay in the infobars

src/src.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CONFIG -=depend_includepath
3434
#CONFIG += release
3535
TEMPLATE = app
3636
PKGVERSION = 2.4.0-RC1
37-
VERSION = 2.4.0-RC1
37+
VERSION = 2.4.0
3838

3939
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
4040

@@ -394,7 +394,7 @@ win32: {
394394
TARGET = klog
395395
QMAKE_TARGET_COMPANY = EA4K
396396
QMAKE_TARGET_DESCRIPTION = Hamradio logging
397-
397+
QMAKE_CXXFLAGS += -std=c++20
398398
contains(QT_ARCH, i386) {
399399
message("32-bit")
400400
LIBS += -L"$$PWD/../../libs/win32/hamlib/lib/gcc" -lhamlib

0 commit comments

Comments
 (0)