From 59fbb6181bc2158da95a45df62eed80912ac6cd5 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 25 Sep 2021 11:19:35 +0100 Subject: [PATCH] Release note updates and release preparation --- CMakeLists.txt | 2 +- Release_Notes.txt | 15 +++++++++++++++ map65/main.cpp | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af44f3f8e..ba08f1c09 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ message (STATUS "******************************************************") include (set_build_type) # RC 0 or omitted is a development build, GA is a General Availability release build -set_build_type (RC 7) +set_build_type (GA) set (wsjtx_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}${BUILD_TYPE_REVISION}") # diff --git a/Release_Notes.txt b/Release_Notes.txt index 241bf05da..db9e665b2 100644 --- a/Release_Notes.txt +++ b/Release_Notes.txt @@ -12,6 +12,21 @@ Copyright 2001 - 2021 by Joe Taylor, K1JT. + Release: WSJT-X 2.5.0 + Sept 27, 2021 + ------------------------- + +WSJT-X in this release is nearly identical to that in WSJT-X 2.4.0. +The Q65 decoder has been enhanced to measure and compensate for linear +frequency drift in Q65 signals. In addition, the Windows installation +package now includes version 3.0 of application MAP65 which has Q65 +support to match and improve on its existing JT65 capabilities. + +See the 2.5.0 release candidate notices below for a summaries of the +other changes included in this release. WSJT-X 2.5.0 is bundled with +Hamlib version 4.3.1 which includes important regression repairs over +the earlier 4.3 release. + Release: WSJT-X 2.5.0-rc6 Sept 6, 2021 ------------------------- diff --git a/map65/main.cpp b/map65/main.cpp index ca318f6ff..07e1d4c02 100644 --- a/map65/main.cpp +++ b/map65/main.cpp @@ -19,7 +19,7 @@ int main(int argc, char *argv[]) QApplication a {argc, argv}; // Override programs executable basename as application name. a.setApplicationName ("MAP65"); - a.setApplicationVersion ("3.0.0-rc7"); + a.setApplicationVersion ("3.0.0"); // switch off as we share an Info.plist file with WSJT-X a.setAttribute (Qt::AA_DontUseNativeMenuBar); MainWindow w;