Preparing for the next release.
This commit is contained in:
parent
f44e5e191d
commit
2b5051b821
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,3 +1,14 @@
|
||||||
|
**1.2.76**
|
||||||
|
- Refactored SSTV decoder code.
|
||||||
|
- Eliminated FFTW3 race condition in SSTV decoder.
|
||||||
|
- Disabled AVT-90 SSTV mode due to quality concerns.
|
||||||
|
- Fixed Scottie DX VIS code.
|
||||||
|
- Improved CW skimmer sensitivity.
|
||||||
|
- Not clearing CW skimmer when frequency changes.
|
||||||
|
- Settings page shows EIBI schedule download time.
|
||||||
|
- Settings page shows repeaters list download time.
|
||||||
|
- Using degree sign for temperatures on the map.
|
||||||
|
|
||||||
**1.2.75**
|
**1.2.75**
|
||||||
- Added profile-specific transceiver rig control setting.
|
- Added profile-specific transceiver rig control setting.
|
||||||
- Added CLEAR button to CW skimmer.
|
- Added CLEAR button to CW skimmer.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
openwebrx (1.2.76) bullseye jammy; urgency=low
|
||||||
|
|
||||||
|
* Refactored SSTV decoder code.
|
||||||
|
* Eliminated FFTW3 race condition in SSTV decoder.
|
||||||
|
* Disabled AVT-90 SSTV mode due to quality concerns.
|
||||||
|
* Fixed Scottie DX VIS code.
|
||||||
|
* Improved CW skimmer sensitivity.
|
||||||
|
* Not clearing CW skimmer when frequency changes.
|
||||||
|
* Settings page shows EIBI schedule download time.
|
||||||
|
* Settings page shows repeaters list download time.
|
||||||
|
* Using degree sign for temperatures on the map.
|
||||||
|
|
||||||
|
-- Marat Fayzullin <luarvique@gmail.com> Mon, 20 Jan 2025 16:12:00 +0000
|
||||||
|
|
||||||
openwebrx (1.2.75) bullseye jammy; urgency=low
|
openwebrx (1.2.75) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added profile-specific transceiver rig control setting.
|
* Added profile-specific transceiver rig control setting.
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Depends: adduser,
|
||||||
python3-pkg-resources,
|
python3-pkg-resources,
|
||||||
python3-distutils-extra,
|
python3-distutils-extra,
|
||||||
owrx-connector (>= 0.6.5),
|
owrx-connector (>= 0.6.5),
|
||||||
python3-csdr (>= 0.18.26),
|
python3-csdr (>= 0.18.27),
|
||||||
${python3:Depends},
|
${python3:Depends},
|
||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
Recommends: python3-digiham (>= 0.6),
|
Recommends: python3-digiham (>= 0.6),
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ modeNames = {
|
||||||
59: "SC2 60",
|
59: "SC2 60",
|
||||||
60: "Scottie 1",
|
60: "Scottie 1",
|
||||||
63: "SC2 120",
|
63: "SC2 120",
|
||||||
68: "AVT 90",
|
|
||||||
76: "Scottie DX",
|
76: "Scottie DX",
|
||||||
93: "PD 50",
|
93: "PD 50",
|
||||||
94: "PD 290",
|
94: "PD 290",
|
||||||
|
|
@ -52,6 +51,7 @@ modeNames = {
|
||||||
15: "Robot BW36B",
|
15: "Robot BW36B",
|
||||||
41: "Martin HQ1",
|
41: "Martin HQ1",
|
||||||
42: "Martin HQ2",
|
42: "Martin HQ2",
|
||||||
|
68: "AVT 90",
|
||||||
85: "FAX480",
|
85: "FAX480",
|
||||||
90: "FAST FM",
|
90: "FAST FM",
|
||||||
100: "Proskan J120",
|
100: "Proskan J120",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue