Restored missing code to accommodate changes in prefilter settings:
RECT, BLACKMAN, HAMMING, HANNING, TRIANGULAR
Support code lost during some earlier change
* Disabled creation of "Fldigi<datetime>.log" unless or
until the "File/Log/Log all RX/TX text" is enabled.
* Closes the log if the menu item is disabled.
* Prevents accumulation of unnecessary empty files
* Added default xml values. Only used to preset configuration
values if present in <rig>.xml file:
- <ECHO>bbb</ECHO> bbb = true or false
- <TIMEOUT>ttt</TIMEOUT> ttt = time in msec
- <RETRIES>n</RETRIES> n = number
- <WRITE_DELAY>ddd</WRITE_DELAY> ddd = delay in msec
- <POST_WRITE_DELAY>ddd</POST_WRITE_DELAY> ddd = delay in msec
- <BAUDRATE>rrr</BAUDRATE> rrr = 300, 600, 1200 ...
- <RTSCTS>bbb</RTSCTS> bbb = true or false
- <ECHO>bbb</ECHO> bbb = true or false
- <CMDPTT>bbb</CMDPTT> bbb = true or false
* Default values for the following variables are read from
the hamlib backend when a new rig is selected
baudrate, retries, timeout, write_delay, post_write_delay
The respective configuration controls are updated accordingly.
User may over ride the default settings.
* fixed corrupted file save bug
* added CONT, ITUZ, CQZ fields to logbook dialog
* rearranged to logbook dialog entry fields
* increased size of CALL field to 15
* Changed log date to the Time-On date
* Added hidden button (same as label) above the Time-On field
on main dialog. Button event updates Time On to current
date/time
* RigCAT - change method of controlling RTS/CTS handshake
* RigCAT - change method of controlling RTS ptt
* RigCAT - change method of controlling DTR ptt
* added separate UHrouter checkbox
* added separate PPort checkbox
* UHrouter/PPort widgets hidden if not available on system
The warning text is now appended to the buffer whose font became
proportional. We compare the font name to that saved in progdefaults to
avoid repeated warnings.
Also changed FL_SCREEN to FL_COURIER because FL_SCREEN may not be fixed
width on all platforms.
This command fetches the list of "best frequencies" from
http://pskreporter.info/cgi-bin/psk-freq.pl and calls the
main.set_frequency XML-RPC command.
Optional arguments can be given to select the frequency and override the
grid square, e.g.:
pskrqsy JO 1
uses the second frequency from the list for grid square JO. The defaults
are to use the first frequency (index 0) with no specific grid square,
which psk-freq.pl then estimates using IP address geolocation.
Here is how to change to the best frequency every 15 minutes:
while :; do fldigi-shell -c pskrqsy; sleep 900; done