From 6673565837c4bc214b14029fa94687050127838e Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Tue, 15 Aug 2023 20:21:36 -0700 Subject: [PATCH 1/3] Revert BETA back to prior 1.9.0 value. --- src/defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/defines.h b/src/defines.h index f458fa7bf..2909a6b99 100644 --- a/src/defines.h +++ b/src/defines.h @@ -30,7 +30,7 @@ #define MIN_MAG_DB -40.0 // min of spectrogram/waterfall magnitude axis #define MAX_MAG_DB 0.0 // max of spectrogram/waterfall magnitude axis #define STEP_MAG_DB 5.0 // magnitude axis step -#define BETA 0.75 // constant for time averaging spectrum data +#define BETA 0.95 // constant for time averaging spectrum data #define MIN_F_HZ 0 // min freq on Waterfall and Spectrum #define MAX_F_HZ 3000 // max freq on Waterfall and Spectrum #define STEP_F_HZ 500 // major (e.g. text legend) freq step on Waterfall and Spectrum graticule From 05877e4db48fac6ee2beaa7325e79ae3d28656e3 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Tue, 15 Aug 2023 20:24:31 -0700 Subject: [PATCH 2/3] Add PR #503 to changelog. --- USER_MANUAL.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/USER_MANUAL.md b/USER_MANUAL.md index 3e33772a1..d6f4f7cde 100644 --- a/USER_MANUAL.md +++ b/USER_MANUAL.md @@ -895,6 +895,11 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes # Release Notes +## V1.9.1 TBD 2023 + +1. Bugfixes: + * Revert BETA back to prior 1.9.0 value for waterfall. (PR #503) + ## V1.9.0 August 2023 1. Bugfixes: From d7a68eb84d797dc089b729426d3382e32195ea7d Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Wed, 16 Aug 2023 22:41:01 -0700 Subject: [PATCH 3/3] Increment to 1.9.1-devel. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f4fe01a1..0cda5715c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ endif() set(CMAKE_OSX_DEPLOYMENT_TARGET "10.11" CACHE STRING "Minimum OS X deployment version") set(PROJECT_NAME FreeDV) -set(PROJECT_VERSION 1.9.0) +set(PROJECT_VERSION 1.9.1) set(PROJECT_DESCRIPTION "HF Digital Voice for Radio Amateurs") set(PROJECT_HOMEPAGE_URL "https://freedv.org") @@ -42,7 +42,7 @@ endif(APPLE) # Adds a tag to the end of the version string. Leave empty # for official release builds. -set(FREEDV_VERSION_TAG "") +set(FREEDV_VERSION_TAG "devel") # Prevent in-source builds to protect automake/autoconf config. # If an in-source build is attempted, you will still need to clean up a few