diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2021-08-26 23:26:04 -0500 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2021-08-26 23:27:48 -0500 |
commit | 897652465e08f1623b4112168ba89e22cb343806 (patch) | |
tree | e14bdcab3158d5ddd0fbe992715b1f8bef1d47bd /comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp | |
parent | x11-toolkits/granite: update to 6.1.1 (diff) |
comms/wsjtz: New port: Clone of WSJT-X software with additional features
WSJT ("Weak Signal Communication, by K1JT") offers specific digital protocols
optimized for meteor scatter, ionospheric scatter, and EME (moonbounce)
at VHF/UHF, as well as HF skywave propagation. The program can decode
fraction-of-a-second signals reflected from ionized meteor trails and
steady signals 10 dB below the audible threshold.
WSJT-Z is a clone of WSJT-X software by Joe Taylor K1JT
Features
- Modified user interface, including a larger Band Activity window
- Extended filtering features
- Auto CQ and auto responding
- QRZ.COM integration
- Audio alerts
- DXCC / Continent Filtering
WWW: https://sourceforge.net/projects/wsjt-z/
Diffstat (limited to 'comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp')
-rw-r--r-- | comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp b/comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp new file mode 100644 index 000000000000..10b456242781 --- /dev/null +++ b/comms/wsjtz/files/patch-widgets_FrequencyLineEdit.cpp @@ -0,0 +1,11 @@ +--- widgets/FrequencyLineEdit.cpp.orig 2021-02-01 18:08:30 UTC ++++ widgets/FrequencyLineEdit.cpp +@@ -39,7 +39,7 @@ namespace + FrequencyLineEdit::FrequencyLineEdit (QWidget * parent) + : QLineEdit (parent) + { +- setValidator (new MHzValidator {0., std::numeric_limits<Radio::Frequency>::max () / 10.e6, this}); ++ setValidator (new MHzValidator {0., (float)std::numeric_limits<Radio::Frequency>::max () / 10.e6, this}); + } + + auto FrequencyLineEdit::frequency () const -> Frequency |