From 676a93585f719b16cbbd74d4ca5a569f014bba50 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Sat, 18 Feb 2023 16:43:27 -0500 Subject: [PATCH] Preparing for the release. --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ owrx/version.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19dd2d27..7ad39a99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +**1.2.6** +- Added SSTV decoder with user interface. +- Added background SSTV decoding to /tmp folder. +- Extended CB band up to 28MHz, as used in some countries. +- Added SSTV and RTTY frequencies to the bands layout. + +**1.2.5** +- Added RTTY decoder. +- Improved CW decoder. +- Fixed possible crash in CW chain. +- Switched both decoders to complex input. +- Can now use SHIFT with scroll wheel, as mouse button. + +**1.2.4** +- Added automated CW decoder (experimental). +- Added scroll wheel support to frequency scale. +- Added changing bandpass bounds with scroll wheel. +- Added optional HTTPS support. +- Fixed frequency jumping to last input value. +- Made tuning buttons bigger. + +**1.2.3** +- Added configurable session timeout option, with a default page. +- Made multiple user interface improvements for touch screens. +- Made touch-and-drag panning more reliable. +- Added zoom in/out with the stretch/pinch gesture. +- Added buttons for precisely touch-tuning the frequency. + +**1.2.2** +- Added noise filter based on spectral subtraction. +- Added configurable tuning step. +- Added support for panning on touch screens. +- Made OWRX tune to the CW frequency in the CW mode. +- Improved APRS information display. + **1.2.1** - FifiSDR support fixed (pipeline formats now line up correctly) - Added "Device" input for FifiSDR devices for sound card selection diff --git a/owrx/version.py b/owrx/version.py index 063c62fc..22c4a2bc 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.1" +_versionstring = "1.2.6" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)