Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop

This commit is contained in:
Joe Taylor 2023-01-07 13:20:41 -05:00
commit 7f9a58483c
5 changed files with 40 additions and 8 deletions

View File

@ -45,7 +45,7 @@ if (POLICY CMP0075)
endif ()
project (wsjtx
VERSION 2.6.0.0
VERSION 2.6.1.0
LANGUAGES C CXX Fortran
)
set (PROJECT_DESCRIPTION "WSJT-X: Digital Modes for Weak Signal Communications in Amateur Radio")

18
NEWS
View File

@ -11,6 +11,22 @@
Copyright 2001 - 2023 by Joe Taylor, K1JT, and the WSJT Development Team
Release: WSJT-X 2.6.1
January 16, 2023
-------------------------
WSJT-X 2.6.1 is mostly a bug fix release for Q65. It has the following
changes since release 2.6.0:
- Fix a flaw in Q65 mode that prevented proper display of the T/R
period spinner.
- Correct the reference to "ARRL International Digital Contest" in the
Release Notes.
- Make the initialization of the decoded text font more robust.
Release: WSJT-X 2.6.0
January 6, 2023
-------------------------
@ -20,7 +36,7 @@ version 2.5.4. Its major enhancements include the following:
- Mode selection buttons on main window for FT4, FT8, JT65, MSK144,
Q65, and FT8's Hound mode
- Support for the ARRL International DX Contest
- Support for the ARRL International Digital Contest
- Performance enhancements for the FT8 and Q65 modes
- New features for EME Echo mode, including calibrated SNR reports
- Several new convenience features for Fox operators

6
README
View File

@ -11,9 +11,9 @@
Copyright (C) 2001 - 2021 by Joe Taylor, K1JT.
Copyright (C) 2001 - 2023 by Joe Taylor, K1JT.
WSJT-X Version 2.5 offers eleven different protocols or modes: FT4,
WSJT-X Version 2.6.1 offers eleven different protocols or modes: FT4,
FT8, JT4, JT9, JT65, Q65, FST4, MSK144, WSPR, FST4W, and Echo. The
first seven are designed for making reliable QSOs under weak-signal
conditions. They use nearly identical message structure and source
@ -99,7 +99,7 @@ https://wsjtx.groups.io/g/main email reflector.
Project web site:
https://www.physics.princeton.edu/pulsar/K1JT/wsjtx.html
https://wsjt.sourceforge.io/wsjtx.html
Project mailing list (shared with other applications from the same
team):

View File

@ -11,6 +11,22 @@
Copyright 2001 - 2023 by Joe Taylor, K1JT, and the WSJT Development Team
Release: WSJT-X 2.6.1
January 16, 2023
-------------------------
WSJT-X 2.6.1 is mostly a bug fix release for Q65. It has the following
changes since release 2.6.0:
- Fix a flaw in Q65 mode that prevented proper display of the T/R
period spinner.
- Correct the reference to "ARRL International Digital Contest" in the
Release Notes.
- Make the initialization of the decoded text font more robust.
Release: WSJT-X 2.6.0
January 6, 2023
-------------------------

View File

@ -663,9 +663,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
connect (ui->decodedTextBrowser2, &DisplayText::erased, this, &MainWindow::rx_frequency_activity_cleared);
// initialize decoded text font and hook up font change signals
// defer initialization until after construction otherwise menu
// fonts do not get set
QTimer::singleShot (0, this, SLOT (initialize_fonts ()));
// defer initialization until after construction otherwise menu fonts do not get set
// with 50 ms delay we are on the save side
QTimer::singleShot (50, this, SLOT (initialize_fonts ()));
connect (&m_config, &Configuration::text_font_changed, [this] (QFont const& font) {
set_application_font (font);
});