Preparing for the oncoming 1.2.13 release.

This commit is contained in:
Marat Fayzullin 2023-04-28 18:50:10 -04:00
parent c1314cba2a
commit 0c06d5bf4d
3 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,11 @@
**1.2.13**
- Added synchronous AM demodulator (SAM).
- Added 12.5kHz and 25kHz tuning steps.
- Extended default FAX page length to 1400 lines.
- Fixed bandpass bounds resetting after any frequency change.
- Fixed file browser, restricting all shots to 32% width.
- Fixed several bugs in the background FAX decoder.
**1.2.12**
- Added FAX decoder, tested on weather fax transmissions.
- Added FAX background decoding service.

11
debian/changelog vendored
View File

@ -1,3 +1,14 @@
openwebrx (1.2.13) bullseye jammy; urgency=low
* Added synchronous AM demodulator (SAM).
* Added 12.5kHz and 25kHz tuning steps.
* Extended default FAX page length to 1400 lines.
* Fixed bandpass bounds resetting after any frequency change.
* Fixed file browser, restricting all shots to 32% width.
* Fixed several bugs in the background FAX decoder.
-- Marat Fayzullin <luarvique@gmail.com> Sat, 29 Apr 2023 16:12:00 +0000
openwebrx (1.2.12) bullseye jammy; urgency=low
* Added FAX decoder, tested on weather fax transmissions.

View File

@ -1,5 +1,5 @@
from distutils.version import LooseVersion
_versionstring = "1.2.12"
_versionstring = "1.2.13"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)