Fldigi Changelog

What's new in Fldigi 4.1.20

Aug 5, 2021
  • Update release to both fldigi and flarq
  • Cosmetic changes:
  • Fix cosmetic issues reported by Bob, VK2YQA
  • Fix parse of macro
  • Gleam scheme:
  • add fltk 'gleam' UI scheme
  • xmlrpc id:
  • add client ID to client requests
  • add client ID to server parsing
  • cw tracking:
  • adjust tracking filter constants to improve power detection
  • Navtex modem:
  • make single bit flip correction guess a little smarter
  • The flip_smallest_bit code was written with the assumption that the discriminator has equal weights for mark and space, that we are equally likely to get things wrong in each direction, and that flipping the bit with the smallest absolute value is likely to get us what might have been transmitted.
  • However, in the face of selective fading and QRM, the assumption of symmetry proved to be wrong. This is "helped" by the 3/4 framing of SITOR-B, where every character has 3 marks and 4 spaces, resulting in the mark value consistently getting a lower envelope estimation than the space value, even when both are the exact same signal level!
  • Make the bit flip guessing a little smarter by correcting towards the 3/4 framing, but only if this character is only one off from a valid character.
  • This seems to result in slightly better message decoding in marginal circumstances.
  • Smeter Pwr_meter:
  • correction to xmlrpc procedure to get smeter and power out meter from flrig
  • My Callsign:
  • modify edit code to maintain cursor position
  • Contest fields:
  • Change to Rx text field parsing
  • Change to cut number parsing
  • gpio ptt:
  • fix for pi3/4 gpio h/w UDRC-II operation
  • Add OFDM modes for NBEMS:
  • OFDM-500F for HF SSB:
  • survives HF NVIS/long path
  • 4-carriers of 62.5-baud 4PSK = 250 bps
  • 1/2 rate K=15 FEC with 4sec interleaver
  • OFDM-750F for HF SSB:
  • survives HF NVIS/long path
  • 3-carriers of 125-baud 8PSK = 562 bps
  • 1/2 rate K=13 FEC with 3.2sec interleaver
  • OFDM-2000F for HF-SSB/FM:
  • 8 carriers of 125-baud 8PSK = 2000bps
  • 2/3 rate K=13 FEC with 3.2sec interleaver
  • OFDM-2000 for HF-SSB/FM:
  • 4 carriers of 250-baud 8PSK = 3000bps
  • NO FEC, meant for line-of-sight
  • OFDM-3500 for FM 9600-port:
  • 7 carriers of 250-baud 8PSK = 5250bps
  • NO FEC, meant for line-of-sight
  • Requires Signalink made-after 2018 connected to the 9600-jack
  • OFDM-2000F CPU-load fix:
  • FEC of previous mode too heavy for some CPUs
  • Reduced to: K=11 FEC with 1600msec interleaver
  • Other mode parameters unchanged:
  • Added Vestigial-carrier based AFC to OFDM modes
  • Increases robustness and tolerance to drift
  • OFDM 2000F hold:
  • commented out OFDM 2000 and 2000F modes for bugfixes
  • OFDM 500F, 750F, and 3500 are complete

New in Fldigi 4.1.15 (Oct 19, 2020)

  • David Freese :
  • fb6be0c2d: Doxygen cleanup
  • 80394e316: documentation update
  • 7f246f123: VUmeter
  • ab69c22f4:

New in Fldigi 4.1.14 (Jul 14, 2020)

  • fonts:
  • modify start up font enumeration
  • sort system fonts with qsort
  • enumerate fixed fonts
  • add fixed/all selector to font selector
  • use static class members []
  • . instantiated and initialized on first instance
  • . deleted when all instances deleted
  • change FreqControl width sizing to one based on widest numeral for selected font.
  • debug statements to assist in resolving Arch Linux startup hangs. To test with debug active
  • uncomment FBDEBUG in Font_Browser.cxx
  • uncomment FCDEBUG in FreqControl.cxx
  • Navigator:
  • Fix missing initialization code for Windows OS
  • hamlib:
  • changes driven by hamlib 4.0
  • Build scripts:
  • remove -lregex from mingw cross compile scripts
  • localtime_r:
  • add timeops.h to n3fjp_logger.cxx
  • Freq Analysis:
  • Add Rx RIT control
  • apply as linear correction to observed frequency
  • Disable rxppm corrections when frequency analysis modem is active
  • Field Day Logger:
  • Fix reconnect to server when changing bands/modes
  • flarq update:
  • Replace text widgets with fl_input2 and F_Edit widgets. Adds UTF-8 character handling.
  • Add restoration of beacon after cessation of ARQ exchanges
  • Modify fldigi to correctly display UTF-8 characters during both transmit and reception of flarq text
  • Navtex:
  • Fix crash in navtex code
  • When neither the alpha nor rep character are valid, the navtex code tries to average both characters and see whether that results in a valid character.
  • Unfortunately, it uses the value of the character rather than its position in the array as an array offset, and can crash in this location.
  • Fix that by using the position like the code was meant to do.
  • Found with Valgrind.
  • remove the NOSIGNAL state.
  • Since the SYNC code is quite picky nowadays, requiring several valid characters in a 1 second interval before switching to READ_DATA mode, the NOSIGNAL state is just
  • not useful any more, and it can be removed.
  • * make early/prompt/late detector able to lock onto more signals
  • - When the early/prompt/late detector was totally out of phase,
  • it sometimes totally failed to lock onto signals.
  • - Fix by making the detectors jump the entire distance between
  • them if the prompt detector is at a lower average than both
  • the early and late detectors, and limit that to one jump by
  • copying over the average values.
  • Sound Record
  • * Insure that audio recordings have .wav extension
  • Freq Control
  • * change to use unsigned long to represent the frequency value
  • maximum value increased to 4294967295 (2^32-1)
  • MinGW64
  • * build MinGW 64bit without requiring -fpermissive.
  • Cabrillo logs
  • * correct Cabrillo report MODE entry
  • sound.cxx warning
  • * fix compile warning on indentation
  • SNDFILE
  • * change SNDFILE to a required library
  • FSK HELL
  • * invert video reversal on HELL 80
  • * rename FSK_HELL -> FSKH245
  • - enable RsID encode/decode for FSKH245
  • * set default filter bandwidth for each mode
  • Store/Recall
  • * Change Store/Recall menu items to mode_info[].name vice
  • mode_info[].sname
  • - sname strings for Contestia and Olivia contained '/'
  • causing an item selection failure.
  • . fltk widget interprets the '/' as a submenu item
  • - bug has been lurking for many versions
  • wefax
  • * Change bandwidth selections
  • Rx Monitor
  • * Add test for existence of filter in monitor playback
  • - prevents segmentation fault with start up conditions:
  • . Rx Monitor enabled
  • . Rx Filter enabled
  • . Audio alerts disabled

New in Fldigi 4.1.13 (May 28, 2020)

  • doxygen:
  • add new documentation files
  • cw prosign:
  • fix loss of prosign AA
  • conflict with Northern European accented characters
  • Analysis mode:
  • Add Zulu time readout to status bar
  • Debug Sources:
  • remove bMOREINFO
  • add "Data Load" toggle to Debug sources
  • add "Synop" toggle to Debug sources
  • add "KML" toggle to Debug sources
  • remove deprecated command line parameters
  • debug-pskmail, use debug source ARQ
  • debug-audio, use debug source AUDIO
  • redesign Event Log dialog to make selection of level and sources more intuitive
  • wefax:
  • Modify phasing algorithm to measure, analyze and act upon ratio of white and black intervals.
  • Change default center frequency to 1900. Allows detection of start tone @ 300 Hz, stop tone @ 450 Hz.
  • Simplify FM detector. Use complex functions vice I/Q logic
  • Redesign user interface
  • always use internal Rx panel
  • always use external Tx dialog
  • move infrequently used controls to configuration dialog
  • Rewrite pic and image classes
  • Add user correlation control to config panel
  • Correct transmit methods
  • Start/Stop signals not in spec
  • Transmit duration computation resulted in very long transmission
  • update documentation
  • README update:
  • update reference to winfldigi
  • fedora 64 build:
  • remove Fl::wake calls that require void* data
  • replace with REQ qrunner calls
  • Code cleanup:
  • remove extraneous debugging lines from code
  • fsq sounder:
  • restore sounder when starting FSQ from another modem
  • Default event log level:
  • restore INFO as default
  • change socket events to VERBOSE
  • rx_extract:
  • imrove behavior servicing multiple instances of flmsg

New in Fldigi 4.1.12 (Apr 24, 2020)

  • TX auto RST-sent:
  • add control-shift-s for inserting RST sent value in TX stream
  • wwv:
  • fix segmentation fault on Windows platform
  • Win10 Socket debug:
  • Added event level recording in socket class
  • CW/DTR/RTS:
  • restore missing Nordic characters on DTR-CW
  • enable PTT during CWIO processing
  • allow user to calibrate DTR-CW timing at nominal WPM
  • fractional computed values rounded to nearest integer i.e. round(0.5) => 1
  • update documentation
  • File/Audio:
  • File selection caused cessation of audio processing while waiting for user selection. Results in cessation of signal processing including keep alive signals to flamp and flmsg if linked.
  • move all UI interaction to main thread
  • trx testing:
  • replace compiler macros with in-line code to aid in debugging
  • AFTER macro:
  • add AFTER tag to repeat macro after a delay of NN seconds
  • CWID button:
  • One more time to wrestle the wayward CWID button to the mat
  • fluid definition file "confdialog.fl" OK
  • needed to execute "make flgen" to create new confdialog.cxx/h files

New in Fldigi 4.1.11 (Apr 2, 2020)

  • Bug fix release:
  • cwio_morse:
  • segmentation fault fix:
  • change cwio_morse to *cwio_morse
  • AWOL CW id button:
  • Fixed "hidden" state of CW ID button
  • macOS:
  • update build.m4 for Xcode 11
  • Macros:
  • Restore execution code for

New in Fldigi 4.1.08 (Aug 16, 2019)

  • Greek translation files updated by Haris SV1GRB
  • xmlrpc

New in Fldigi 4.1.07 (Aug 5, 2019)

  • FL_LOCK:
  • Remove deprecated code
  • wf mods:
  • update to waterfall redraw to reduce cpu usage

New in Fldigi 4.1.05 (Jul 4, 2019)

  • LoTW fllog:
  • add fllog update for LoTW sent date
  • Modem macro:
  • for UI display and RsID transmission
  • translate generic:
  • CONTESTIA:bw:tones
  • OLIVIA:bw:tones
  • to equivalent:
  • Cont-tone/bw
  • OLIVIA-tones/bw
  • Close Logbook:
  • force write of logbook on closing program
  • insure action occurs in main thread
  • add date/time/line# annotation to all logged events
  • eQSL:
  • add 5 second wait for response to eQSL post and other remote network queries
  • added aging to network log file, 'network_debug.txt' last 5 log files retained
  • all external network events logged to aid in debugging network failures.
  • cty.dat:
  • update cty-dat.cxx internal data file

New in Fldigi 4.1.04 (Jun 20, 2019)

  • MacOS high-DPI:
  • enable high-DPI on macOS and Microphone on macOS 10.14
  • enable highDPI on retina display
  • request microphone usage on macOS 10.14 (mojave)
  • timeops:
  • fix for OS-X Xcode < 7.2
  • log server:
  • add debug statements to track access to remote log server
  • xmlrpc

New in Fldigi 4.1.03 (Apr 22, 2019)

  • a6923d1: wf updates
  • 377a7fa: WinKeyer emulators
  • 53a06da: New install macros
  • 9a0124d: MACRO

New in Fldigi 4.1.02 (Apr 15, 2019)

  • 055bbbc: Xmlrpc Rig control
  • c04d2c5: notifier dialog
  • 2f24966: wfall only tests
  • c2dd5f8: waterfall process
  • 2dcd586: Language update
  • 07f3b66: Documentation update
  • 6fa7cb8: N3FJP ACL
  • 791f084: CQzone
  • 4670875: trx_xmit_wfall_draw
  • 933f6b8: Log rotation
  • 5c6d04e: Secure METAR
  • 6b86a02: lgbook File:
  • 2ca145a: qrz malloc
  • 1593939: Rx Panel clicking
  • ef4ecf3: myCall
  • 5224d09: QTE-QRB
  • 7944d44: Olivia modes
  • 6dfac39: logbook-backups
  • 43a4c74: ARQ server
  • aeb0ff4: fllog eQSL/LoTW
  • d756b06: XmlRpc Log Dup Check
  • db20208: flrig ptt
  • b01c3b6: DxCluster/N3FJP i/o
  • 22735f4: eQSL / LoTW submission
  • a0bd33b: mbedtls CFLAGS
  • 590181b: lookup call
  • c29f732: MODE export
  • 582f98b: flarq socket
  • ef6456f: eQSL export
  • f15f71c: tod clock start
  • 14c092d: ARQ socket i/o
  • 4886d58: analysis mode

New in Fldigi 4.1.01 (Apr 15, 2019)

  • 1d4798c: CW h/w ptt
  • ca3e777: nanoIO
  • a943ae3: NAVTEX abort
  • ce586b8: dup-check
  • 57cc6ea: ADIF submode
  • 96e1f05: WF only bug fix
  • 06c56b3: LotW
  • c5af7e0: Pedantic warnings
  • 892336b: SD counties
  • 044dd29: QRZ.com
  • aeed471: SV1GRB test report

New in Fldigi 4.1.0 (Apr 15, 2019)

  • 39a76e8: po update
  • 79c67d3: WWV doc
  • 04e53b5: Winkeyer FSK
  • b8ca88e: Contests
  • b197c75: arq-override
  • 8572f35: flmsg-dir
  • 02c66eb: contest-docs
  • 9d85169: fldigi_def.xml
  • 20e2c02: socket_mods
  • e1c2d80: Fltk 1.4 mod
  • 5ffd6f5: wefax
  • fb1fd67: nanoIO
  • 7d604b8: CW SOM table
  • 4eec8f2: flrig: macro
  • 99b0a01: Audio adjust docs
  • 146bd7e: feldhell
  • 6b5c93a: C-11 fixes
  • ccbd52f: nano FSK
  • ed6a7db: Mint-19/Mate
  • e9c0f2d: Signal Browser documentation
  • fbb0654: flrig seg fault

New in Fldigi 4.0.18 (Aug 13, 2018)

  • 2fef9cb: CPS testing
  • aa757af: ipv6 addressing
  • c62662c: MT63 centering
  • 9460c00: fsq mods
  • 5a7377f: IFKP/THOR greyscale image
  • 51e2829: Hamlib bug fix
  • 58c6362: Tooltip
  • 47d2c6c: nanoIO
  • a253603: THROB adif
  • f46cb9b: RigCAT dialog

New in Fldigi 4.0.17 (Jun 13, 2018)

  • 88fd54d: flarq idtimer
  • d58b0b7: Greek language update
  • 4c3ca8f: tmpfile
  • 87cb7e1: xmlrpc cat string
  • 4f72635: Modem start frequency
  • dc68d02: Serial port discovery
  • 55aa627: Log entries
  • 2fea354: flarq appdir
  • c480982: rx/tx
  • 56553fa: RTTY Quick pick
  • 79aa5d6: quick pick rtty baud
  • d1f91ea: Documentation Update
  • e4a5cec: CW/FSK I/O on start
  • a9df13f: WinKey PTT
  • 6de7360: Navigator
  • fa8e53e: nanoIO
  • 202ad12: Default Lighted Button
  • dfd1b0b: ST/PR macro tags
  • 490f683: K2/K3/KX3 data modes
  • c39a88b: Logbook read
  • 6cb1e5a: 8pskF
  • 89ff7c8: fsq/ifkp audit logs
  • cd7e502: RTTY browser decode

New in Fldigi 4.0.17.65 Alpha (May 19, 2018)

  • Fixed issues:
  • 4f72635: Modem start frequency
  • 41685d4: tmpfile
  • 7fe9872: Serial port discovery
  • 1f2c9a1: Log entries
  • 2fea354: flarq appdir
  • fe24f4d: rx/tx
  • 56553fa: RTTY Quick pick
  • 79aa5d6: quick pick rtty baud
  • 2c7a765: Documentation Update
  • e4a5cec: CW/FSK I/O on start
  • a9df13f: WinKey PTT

New in Fldigi 4.0.17 Alpha (Mar 4, 2018)

  • Fixed issues:
  • 2b2d3e8: Navigator
  • 065cb37: Logbook read
  • f357621: Modem start frequency
  • 62f5902: tinyFSK
  • 6cb1e5a: 8pskF
  • 89ff7c8: fsq/ifkp audit logs
  • cd7e502: RTTY browser decode

New in Fldigi 4.0.16 (Feb 12, 2018)

  • Fixed issues:
  • 54c63f9: wo seg fault
  • 8fa88c7: 8psk lockup problem
  • 45a8991: Miscellaneous menu
  • 8ff1cd6: pskrep autostart
  • 4a78b53: OS X build script
  • 487db95: Grid Square Contest
  • 8c36d5f: Logbook Export
  • 6c19a62: Greek translation update
  • dc384c6: Alert timeouts
  • af04127: video

New in Fldigi 4.0.16.07 Alpha (Jan 30, 2018)

  • 216dd6a: Grid Square Contest
  • 8c36d5f: Logbook Export
  • 6c19a62: Greek translation update
  • dc384c6: Alert timeouts
  • af04127: video

New in Fldigi 4.0.15 (Jan 20, 2018)

  • e87f41a: ARQ server
  • 5ab6914: Signal gain

New in Fldigi 4.0.14 (Jan 16, 2018)

  • 29593c8: remote logbook
  • 4e87d16: ARQ exit seg fault
  • e09d167: WEFAX auto center behavior
  • be34220: WEFAX phasing change button
  • 2dee90e: RTTY configure initializers
  • a5e88af: File aging
  • f028159: OS X shutdown
  • 38b294a: PSK IMD
  • a7d67d8: Spectrum Display
  • daa6d43: Warnings in sound.cxx
  • eb0caa4: OS X app paradigm

New in Fldigi 4.0.14.06 Alpha (Jan 8, 2018)

  • Fixed issues:
  • 2c9346d: OS X shutdown
  • c8f01b0: PSK IMD
  • 890551b: Spectrum Display
  • daa6d43: Warnings in sound.cxx
  • eb0caa4: OS X app paradigm

New in Fldigi 4.0.13 (Dec 28, 2017)

  • 4c5c168: Language Translation
  • 13ef81d: cw t/r - doc update
  • c4099e1: Spectrum Analyzer
  • 2e7f681: TS990 tune feedback
  • 43cc1b2: OS X CW
  • 8d156c6: FSQ/IFKP clear tx panel
  • f62c96a: deadman
  • 80f52a8: Image transmit
  • fb4797b: flrig race
  • 1b01276: CW Sweepstakes
  • 5ef93f4: CW no tx char
  • a044193: timeops

New in Fldigi 4.0.12 (Oct 29, 2017)

  • abb522d: Farnsworth timing
  • 408a01b: PSK sinc filter
  • 8cfc154: ACL interface
  • 792b152: Text capture
  • dd2c8ef: OSX start process

New in Fldigi 4.0.12.3 Alpha (Oct 24, 2017)

  • c74c7ec: Text capture
  • b944f84: OSX start process
  • 46d50d1: PSK sinc filter

New in Fldigi 4.0.11 (Oct 24, 2017)

  • 3302f0d: Text Capture
  • 35387db: FreeBSD mod
  • 6e94d54: Documentation update
  • e4abdbf: PSK filter
  • cd36a46: Audio Stream
  • 5a9322f: printf cleanup
  • e8651ed: CW Multichannel
  • 89b5207: QSY multi

New in Fldigi 4.0.11.5 Alpha (Oct 4, 2017)

  • Fixed issues:
  • 88ef0d4: PSK filter
  • f2aa3b7: PulseAudio Start
  • 31a7c36: printf cleanup
  • ada29f8: CW Multichannel
  • 27a0ed8: QSY multi

New in Fldigi 4.0.10 (Sep 26, 2017)

  • WX HAMQTH BUG FIX:
  • Fixed access to remote data for Metar and HamQth queries
  • WIN7 MINGW BUILD FIXES:
  • PRI?SZ format specifiers not recognized on all build platforms
  • WEFAX UI MODS:
  • wefax_map:
  • Create unique wefax mapping widget based on pre 3.23 picture widget resolution of new picture widget resize fault during wefax Rx
  • auto start:
  • add delays to allow sufficient time for external process to become stable

New in Fldigi 4.0.9 (Sep 4, 2017)

  • cc95f0a: clock_gettime
  • 5d4008a: spectrum display
  • 6021e18: Test Signal Dialog
  • ccd3a2e: dxcluster fonts
  • 08aa8f7: smod
  • 6c05fe9: Spot buffer
  • deb4392: Winkeyer clones
  • ee3d420: PSK s/n imd
  • ba2305c: RX Text capture
  • 3229581: PSK viewer

New in Fldigi 4.0.9.8 Alpha (Jul 31, 2017)

  • Fixed issues:
  • f99685b: PSK s/n imd
  • be811ae: RX Text capture
  • 3229581: PSK viewer

New in Fldigi 4.0.8 (Jul 24, 2017)

  • Fixed issues:
  • 38b65ea: Executable pathname
  • 2a3c38b: rigCAT metering
  • 37d78b1: OS X autostart
  • 0006904: RigCAT i/o
  • c0bf2f2: Doxygen build
  • 6e4f04c: Analysis modem
  • c438ba6: XMLRPC rx stream
  • 4a6e7ce: RX text paste
  • ef36e76: FSQ triggers
  • 8517451: FSQ image

New in Fldigi 4.0.7 (Jul 10, 2017)

  • ee6cc45: SCU-17 ptt
  • 964816a: bindUDP

New in Fldigi 4.0.6 (Jun 26, 2017)

  • 094ac3c: Documentation
  • 1715749: flmsg alert
  • b3dd76d: Time Macros
  • a3f27d2: Require PortAudio

New in Fldigi 4.0.5 (Jun 23, 2017)

  • bc29d97: Documentation update
  • 6164c26: TELNET timeout
  • 8922c5d: FD macros
  • b0928a0: N3FJP PTT
  • dcca120: Rx/Tx open/close
  • a49cf18: xmlrpc configuration
  • 36a7fce: FSQ macros
  • 6aaec34: Consistency check fail
  • 7bcd89c: Audio Alerts
  • 5f65d2e: Restore defaults
  • a9346cd: cw variable squelch
  • 8460fba: INSTALL/README/NEWS
  • c2c9f38: CW Extended char set
  • ad8e33e: County field
  • 64b397f: autostart on os x
  • 43b37fe: Rx Context Menu
  • 3aea3ca: Port Audio on Linux
  • f994b6a: NEWS update

New in Fldigi 4.0.4 (May 10, 2017)

  • e71dcfb: LOG area controls
  • 1da1562: CALL field size
  • dc9532c: CW QSY
  • 8fab963: Sound Card Output
  • 240f52a: cw scanner

New in Fldigi 4.0.4.6 Alpha (May 6, 2017)

  • cd40b8c: LOG area controls
  • 1da1562: CALL field size
  • dc9532c: CW QSY
  • 8fab963: Sound Card Output

New in Fldigi 4.0.4.1 Alpha (May 3, 2017)

  • d2f39a6: cw scanner

New in Fldigi 4.0.3.1 Alpha (Apr 20, 2017)

  • Fixed issues:
  • 7e552c4: CW wait

New in Fldigi 4.0.2 (Apr 15, 2017)

  • Fixed issues:
  • 7432793: Lotw Match
  • ed5850e: flrigi bw synch
  • 9723972: Clang 8.1.0
  • 97024a9: Sound card
  • 1549193: Revert "wefax"
  • c85b75e: IFKP image processing
  • ef39743: Macro Save
  • 4396c43: CW end-of-transmit
  • 2f1d709: Font Initialization
  • a1d4122: OS X socket connect
  • 835d823: Winkeyer exit process

New in Fldigi 4.0.1 (Mar 29, 2017)

  • f40e79d: Socket connect
  • 7efc9b2: OS X 10.12 build
  • ffd6f09: STATION_CALLSIGN
  • f0f3763: Free BSD mods
  • b163605: Logbook mods
  • 167f064: ru-po-update
  • 5354812: Default Tx Audio
  • fac5963: remove sprintf
  • a9db866: Documentation update
  • b522581: n3fjp logger search
  • c565b03: fopen -> fl_fopen
  • abd9554: 48 bar macro
  • 5f5776c: CW decoder
  • 9c0f906: DX cluster
  • 016799a: Logbook support
  • b4e227b: WinKeyer
  • 1fe26c1: fsq ifkp s/n computation
  • d576fd8: fltk version update
  • 2a1a8c3: Macro Date Time Formats
  • 627eb31: lotw addition
  • 0507110: THOR/IFKP Image transfers
  • 95b51b6: OSS bug fix
  • f462dd7: ifkp s/n update
  • 376f7f5: PSKMAIL PTT fault protection
  • bcec5aa: Logbook File Handling
  • cbdea29: n3fjp contest update
  • fccb4eb: fsq s/n update
  • 1786a5e: README update
  • 67bc122: Russian UTF-8 translation
  • 9decf04: Tooltips

New in Fldigi 3.23.22.16 Alpha (Feb 25, 2017)

  • ae9a5e9: Macro Date Time Formats
  • 627eb31: lotw addition
  • 0507110: THOR/IFKP Image transfers
  • 95b51b6: OSS bug fix
  • f462dd7: ifkp s/n update
  • 376f7f5: PSKMAIL PTT fault protection
  • bcec5aa: Logbook File Handling
  • cbdea29: n3fjp contest update
  • fccb4eb: fsq s/n update
  • 1786a5e: README update

New in Fldigi 3.23.22.8 Alpha (Feb 20, 2017)

  • Fixed issues:
  • cede8a8: Russian UTF-8 translation
  • 325d920: Tool-tips

New in Fldigi 3.23.22.4 Alpha (Feb 14, 2017)

  • Fixed issues:
  • 96ee35d: New Log File
  • 134e348: n3fjp serial no
  • 8f005b6: Hamlib/RigCAT/XMLRPC Interface

New in Fldigi 3.23.21 (Jan 30, 2017)

  • Fixed issues:
  • 880720b: Documentation
  • 228950f: Logbook update
  • 35d74af: kml auto_ptr deprecated
  • 2042371: build flags
  • a3bc5e3: PSKMAIL beacon faults
  • 5b970cc: N3FJP record rejections

New in Fldigi 3.23.21.6 Alpha (Jan 16, 2017)

  • Fixed issues:
  • 4ed5205: build flags
  • e38799b: New Log Fields
  • ef9092d: PSKMAIL beacon faults
  • 9dd4d13: Logbook blunders
  • 5b970cc: N3FJP record rejections

New in Fldigi 3.23.20 (Jan 6, 2017)

  • Fixed issues:
  • 5c45632: N3FJP Winter FD
  • 3119c92: FELD raster display
  • ca8daf3: ARQ PTT
  • de339d7: NEW micro modes
  • 1a8f982: Socket connect
  • 6219ac9: pskreporter query

New in Fldigi 3.23.19 (Dec 23, 2016)

  • Fixed issues:
  • 8dc6202: DX cluster improvements
  • 1412352: Text highlight
  • 996bb3f: N3FJP generic contest

New in Fldigi 3.23.18 (Dec 12, 2016)

  • Fixed:
  • 782204c: DXcluster sort
  • 73c2d1e: LoTW
  • dc9c107: Socket Connect State

New in Fldigi 3.23.17 (Dec 7, 2016)

  • Fixed:
  • e0eaaef: dxcluster update
  • a81372a: GPIO update
  • 99b0d1b: LoTW documentation
  • 214a782: Time Of Day Clock
  • 839eb0f: FSQ Heard parser

New in Fldigi 3.23.17 Alpha (Nov 29, 2016)

  • DXCLUSTER UPDATE:
  • Modified user interface
  • added configurable macro buttons
  • added ability to save and recall cluster host address/port/logon triads
  • added local html command help for DX Spider, AR cluster and CC cluster hosts
  • changed stream display from browser to text view control
  • moved DX cluster access to the View menu
  • allow user to select report lines time ordering
  • GPIO UPDATE:
  • Added pulse triggering to gpio pins
  • width controlled by pulse width setting
  • single pulse used to both set and clear PTT
  • for use with PiHpSDR interface board
  • LOTW DOCUMENTATION:
  • Updated documentation for LoTW interface
  • TIME OF DAY CLOCK:
  • Changed ztimer triggering to a pthread loop
  • FSQ HEARD PARSER:
  • Fix bug that caused failure to correctly parse the Heard response.

New in Fldigi 3.23.16 (Nov 11, 2016)

  • Fixed issues:
  • 3d60e20: N3FJP rounding
  • fff0baf: Resident help
  • 6b3e9a7: lotw/eqsl interface
  • 52278a5: GPIO PTT
  • 9c0ed51: ARQ Client vector
  • 0e7feae: Rx Extract

New in Fldigi 3.23.15 (Oct 17, 2016)

  • Fixed issues:
  • 7732982: Translation file
  • 153ae9a: N3FJP command sequencing
  • 300624a: BARTG vice BART
  • 0ac4bb3: speed test
  • 0476267: XP fault on failure
  • c426649: Default Logbook widget sizing
  • e58b039: Mono / Stereo wav file
  • 7cacca6: ARQ thread
  • 2937696: N3FJP logged frequency
  • bdb408d: update check
  • 005f10a: DX cluster
  • 72d0f38: CQWW zone/state
  • 914b60c: Contest fields
  • 79fa4c8: OSX Clang build
  • 9db7e7b: flrig default

New in Fldigi 3.23.15-02 Alpha (Oct 12, 2016)

  • Fixed issues:
  • 0476267: XP fault on failure.

New in Fldigi 3.23.15-01 Alpha (Oct 10, 2016)

  • Fixed issues:
  • 6c88a3b: Default Logbook widget sizing
  • e58b039: Mono / Stereo wav file
  • 7cacca6: ARQ thread
  • 2937696: N3FJP logged frequency
  • bdb408d: update check
  • 005f10a: DX cluster
  • 72d0f38: CQWW zone/state
  • 914b60c: Contest fields
  • 79fa4c8: OSX Clang build
  • 9db7e7b: flrig default

New in Fldigi 3.23.14 (Sep 19, 2016)

  • Fixed issues:
  • 9e6e34a: Documentation update
  • 6c5ad4b: PSK IMD Emulator
  • e6980a6: Wave file
  • ff2265b: trx inhibit
  • 0fc2f5e: Log Reports
  • 01bd367: N3FJP application interface
  • ccbd5e8: Field Day
  • 4fc8b12: UTF8 file access
  • c6e1f29: logbook merge
  • 570d3bf: Initialize Macros
  • d9d12f4: NOAA wx access
  • 0552fc6: Revert "logbook read"

New in Fldigi 3.23.14 Alpha 3 (Aug 9, 2016)

  • Fixed issues:
  • e7995e1: Initialize Macros
  • d6ed5cb: logbook merge
  • a220ea2: Revert "logbook read"

New in Fldigi 3.23.13 (Aug 6, 2016)

  • Fixed issues:
  • 8a0204d: flmsg auto start
  • e569d56: Documentation Update
  • 0f237ba: KPSQL PSM
  • e6b1743: m4 updates
  • 3520065: xmlrpc mod
  • fafaa7c: Main User Interface
  • 360d6a2: fl_digi.cxx whitespace
  • bdb3afb: xmlrpc tx queue
  • 33be65f: QRUNNER BUG FIX
  • f02228e: logbook read
  • 1f6d966: flrig xmlrpc client
  • 4ddae1f: Title bar
  • 9777cfa: Macro tag PUSH/POP
  • 73ea18b: G4 build warnings
  • e8e3b89: winsock2 error flag
  • 8f8d6be: xmlrpc error warnings
  • 302fca5: Port Audio Index
  • 988ee57: Squeeze Play
  • a9d3ec1: Documentation
  • 8fa2f92: FSQ allcall relay
  • 055a180: FTextTX: fix menu_cb default case behavior
  • 93ca237: status: fix override_data_io_enabled behavior
  • 10eaf9d: logbook: do not write empty string to ADIF
  • 5609415: wefax
  • d43951e: fix warnings: misleading-indentation (no functional changes)
  • 1ecf952: fix warning: unused variable 'call_file'
  • 9e9139e: fix warning: C11 requires spaces around string macro
  • 0531e5c: fix warning: format '%d' vs size_t
  • 1e888d1: XmlRpc tm_mday fix

New in Fldigi 3.23.13 Alpha 10 (Jul 24, 2016)

  • m4 fixes
  • PSM Documentation Update
  • KPSQL PSM

New in Fldigi 3.23.13 Alpha 3 (Jul 4, 2016)

  • Fixed issues:
  • e0393e0: Title bar
  • 6084764: FSQ allcall relay

New in Fldigi 3.23.12 (Jun 22, 2016)

  • Fixed issues:
  • fa831b2: xmlrpc add_tx
  • 177a8f1: mfsk xmt filter
  • 2b57556: FSQ msg append
  • de187d9: FSQ IFKP heard lists
  • 76cf0e6: waterfall group
  • 5f762f0: thor image
  • 8cd6f83: RxID button

New in Fldigi 3.23.11 (Jun 13, 2016)

  • Fixed issues:
  • b657227: flmsg-arq autostart
  • c6ac0f1: Resize bug
  • 3c7392e: Hell Raster Display
  • 4841f10: Exit processing
  • 274d500: Polish translation update
  • 9c959af: xmlrpc add tx text
  • 01245fe: Native Select Save-As dialogs
  • 5209286: FLDIGI User Manual Update
  • 4b2005e: KISS IO Bug fixes/Additions and C++11 Test

New in Fldigi 3.23.10 (May 30, 2016)

  • logger
  • Restore focus
  • RsID button
  • flmsg keepalive
  • 4bars
  • ASCII ctl chars
  • Suppress dockable macros
  • Packet Prep
  • Portaudio Mono
  • FSQ message files
  • KISS, 8PSK, FLARQ icon Modifications
  • FLARQ
  • focus behavior
  • PTT delays

New in Fldigi 3.23.10.10 Alpha (May 27, 2016)

  • dc9a071: Native Select Save-As dialogs
  • 41674aa: FLDIGI User Manual Update
  • cc84443: KISS IO Bug fixes/Additions and C++11 Test
  • ecc1655: logger
  • 19e7bad: Restore focus
  • 0a99bef: RsID button
  • aa6592c: flmsg interface
  • 5b367fb: 4bars
  • b4b8df4: ASCII ctl chars

New in Fldigi 3.23.09 (May 23, 2016)

  • Fixed issues:
  • fc97b4a: FSQ variable Rx
  • 58b3940: Export ADIF_NAME
  • 91ddd6c: WF only
  • 92c3c36: DnD Image
  • 0ebcc2a: Frequencies2 use string
  • 20ac527: Documentation
  • 8eb05e6: View noise
  • 7cd0d8d: About
  • 9ed6cc3: NAVTEX update
  • 6da8d51: Sanitize tile_x, tile_y startup values
  • b1d12b8: RxID enhancement
  • f7662df: TX timer
  • 4e055b4: rigcat mod
  • 4c9f140: PSK IMD

New in Fldigi 3.23.10.07 Alpha (Apr 17, 2016)

  • 2737738: Suppress dockable macros
  • 3e2e015: Packet Prep
  • 76f8d6f: Portaudio Mono
  • ed23bfb: KISS, 8PSK, FLARQ icon Modifications
  • 84b46d2: FLARQ
  • 9c04f07: focus behavior

New in Fldigi 3.23.10.06 Alpha (Apr 9, 2016)

  • 74eacce: FSQ message files
  • 4e6360c: ARQ kill
  • b3c4b7c: FLARQ auto i/o
  • b0287e5: focus pocus
  • 2a3f4d4: PTT delays

New in Fldigi 3.23.09.15 Alpha (Mar 29, 2016)

  • Export ADIF_NAME
  • WF only
  • DnD Image
  • Frequencies2 use string
  • Documentation
  • View noise
  • About
  • NAVTEX update
  • Sanitize tile_x, tile_y startup values
  • RxID enhancement
  • TX timer
  • rigcat mod
  • PSK IMD

New in Fldigi 3.23.09.14 Alpha (Mar 26, 2016)

  • Fixed issues:
  • 0425cc9: MFSK DnD Image.

New in Fldigi 3.23.09.11 Alpha (Mar 12, 2016)

  • Fixed issues:
  • 8282ba4: Frequencies2 use string
  • 1652cf8: Documentation
  • 8eb05e6: View noise
  • 7cd0d8d: About
  • 9ed6cc3: NAVTEX update
  • 6da8d51: Sanitize tile_x, tile_y startup values
  • b1d12b8: RxID enhancement

New in Fldigi 3.23.09.06 Alpha (Mar 5, 2016)

  • Fixed issues:
  • e6620ca: TX timer
  • 0f40b68: rigcat mod
  • 580f1f0: PSK IMD

New in Fldigi 3.23.08 (Feb 29, 2016)

  • NAVTEX UPDATE:
  • low pass mark & space individually
  • Use ATC and fft-filters adapted from RTTY modem
  • Correct display metric
  • Widen afc filter for 'jump 90 Hz' code
  • Use exact bit length
  • Calculated sync modification
  • see src/navtex/navtex.cxx for design analysis
  • SAVE LOGBOOK:
  • Change system dialog invoked when saving logbook to system save-as vice save.
  • Analysis mode:
  • Restore

New in Fldigi 3.23.08.01 Alpha (Jan 23, 2016)

  • 0d3df22: No rig control

New in Fldigi 3.23.07 (Jan 22, 2016)

  • Fixed issues:
  • 10266d2: Exit delays
  • e821e49: Contest fields
  • ebc00ed: OS-X start_process
  • f5e3186: LOG RECORD exports
  • c0281ee: HAMLIB CW RTTY
  • ddb084c: PSKR metric
  • 68c5a6a: PSKR/8
  • 397f570: Audio adjust
  • 4280903: WEB query
  • 8af53b6: Mode Set
  • e756d93: Tab key docs
  • 2fb5648: hamlib PTT_ON_DATA
  • 22514a5: Macro Tool Bar
  • 94f8362: XmlRpc client update
  • 2652387: Log Notes
  • e9e8b36: Misc Updates
  • 78baf6c: Set Frequency
  • 14a2618: Rx SaveAs
  • 16ede08: flrig xmlrpc

New in Fldigi 3.23.07.19 Alpha (Jan 19, 2016)

  • 6ee952a: EXPORT LIST
  • c0281ee: HAMLIB CW RTTY
  • ddb084c: PSKR metric
  • 68c5a6a: PSKR/8

New in Fldigi 3.23.07.15 Alpha (Jan 14, 2016)

  • 15d6bbd: PSK4 metric
  • cbf6615: PSKR/8
  • cdf4f78: Audio adjust
  • fe14f9a: WEB query

New in Fldigi 3.23.07.14 Alpha (Jan 11, 2016)

  • 5228552: Mode Set
  • 18ca362: Tab key docs

New in Fldigi 3.23.07.13 Alpha (Jan 8, 2016)

  • 6978c84: hamlib PTT_ON_DATA

New in Fldigi 3.23.07.11 Alpha (Jan 6, 2016)

  • f19d8d8: Macro Tool Bar

New in Fldigi 3.23.07.08 Alpha (Jan 3, 2016)

  • cf9ca71: XmlRpc client update
  • f38dd80: Log Notes
  • 2abe9ae: Misc Updates
  • 78baf6c: Set Frequency
  • 14a2618: Rx SaveAs
  • 16ede08: flrig xmlrpc

New in Fldigi 3.23.05 (Nov 19, 2015)

  • cf7a199: dock macros
  • 30e6eda: kml disable
  • 2e2c9e9: ADIF record repairs
  • 93342e4: gpio ptt
  • d6a34a4: NAVTEX/SYNOP/KML
  • 51535ff: Add 8PSK 125FL 250FL

New in Fldigi 3.23.04 (Oct 15, 2015)

  • 345e7c0: CW filter
  • 7f23f3f: Update Check
  • 4862141: fsq abort
  • 3bed0e3: log merge

New in Fldigi 3.23.03 (Sep 30, 2015)

  • c3b610b: FSQ trigger bug

New in Fldigi 3.23.02 (Sep 28, 2015)

  • 0424764: fsq cqcqcq
  • 198c5a0: fsq sounder/heard-aging
  • dbb169b: FSQ directive
  • d47b1e3: rigcat delayed startup
  • e6ebe70: OS-X serial
  • f75b92a: asciidoc timezone

New in Fldigi 3.23.01 (Sep 23, 2015)

  • 8ad0a8b: WX configure
  • 0caa5ea: PA debug
  • 838e112: WFALL-ONLY
  • f472a17: Logbook read
  • 7cb4c66: ifkp avatar depth
  • ea18942: IFKP image slant

New in Fldigi 3.23.00 (Sep 15, 2015)

  • Major revison release:
  • new modem types
  • change to MXE cross compiler version
  • Clear Tx Panel:
  • clear entire Tx panel when executing a ^r or ^R sequence.
  • Olivia/Contestia start stop tones:
  • add ability to disable start/stop tones in Olivia and Contestia
  • macro bug:
  • fix timer seg fault when Tx contains trash text
  • ifkp modem:
  • Incremental Frequency Keyed + modem
  • wide band, moderate speed differential MFSK signal with offset +1.
  • sample rate 16000 - symbol length 4096
  • 33 tones spaced 3xSR/symlen apart approximately 398 Hz bandwidth.
  • multiple image transfer formats similar to FSQ . Avatar (59x74 WxH pixel) image transfers
  • tunable modem subcarrier (center freq) . may be configured fixed at 1500 Hz or . set to Psk sweet spot
  • raw data received written to audit log - if enabled
  • heard list entries written to heard log - if enbled
  • assigned fldigi secondary RSID code, (56, 1171)
  • Macros:
  • Added @WAIT macro
  • Added disable macro timer when changing modems
  • WEFAX hang on INFO:
  • WEFAX rx becomes unresponsive when writing to INFO log
  • MXE update:
  • code changes for update to mxe suite
  • QSO rec:
  • Changed qsorec data store to an arrary of string pointers vice an array of strings.
  • new mxe implementation string handler changes from standard gnu string template
  • MS Read logbook:
  • change to "rb" for correct reading of logbook file - do not allow M$ to make changes to CR/LF counts
  • Nu opBW combos:
  • commit db696170c8d0b1f73d656c5742436e319414f3b2
  • Author: David Freese
  • Date: Mon Jul 27 08:25:38 2015 -0500
  • LSB modes:
  • Add recognition of flrig LSB modes - adjust waterfall for LSB - correct logging frequency for LSB
  • Doxygen help:
  • Update to doxgen to 1.8.10 - Corrected various doxygen parse errors
  • FSQ updates:
  • Fix copy all on heard list
  • change default color scheme as requested by ZL1BPU - added user configuration items for RX text colors
  • remove "MONITOR" text from RX panel as requested by ZL1BPU
  • added fsq tx text queue to handle case when user tries to force a second transmit sequence when modem is already in TX state.
  • last_command updated to include both queued and transmitted text string. - allows recall of queued command even if transmit timed out
  • last_command changed to a stack of commands - allows recall of up to last 10 commands - each press of F2 recalls one deeper in stack - rotates back to beginning after recall of most ancient
  • add call to logbook using right click on heard entry
  • Fix erroneous date in audit log when fsq is default modem during program start - change format of date entry to make it easier to find when reviewing the log.
  • Added video text at beginning of transmit - also adds ability to transmit pretone for amplifier carrier detect for FM repeater operation
  • Add code to force center frequency to 1500 when switching from another modem
  • Fix to avoid time out errors
  • Macintosh OSX thread management - submitted by KK5VD - Ensure FSQ TX routines are called in the main thread.

New in Fldigi 3.22.13 (Jul 22, 2015)

  • 7bdf051: FSQ bug fix
  • 9319676: XMLRPC commands

New in Fldigi 3.22.12 (Jul 20, 2015)

  • 1579ef6: FSQ heard parser
  • f61f7d7: fsq modem
  • dfb9318: FreqControl focus
  • e477621: trx exit

New in Fldigi 3.22.10 (Jun 23, 2015)

  • Fixed issues:
  • dfc430f: FTextView styles bug
  • dac5bf4: Fl_Text_Display
  • c34a613: Cabrillo/Export dialogs

New in Fldigi 3.22.08 (Apr 27, 2015)

  • Fixed issues:
  • 2bda963: Analysis
  • 967e7c5: rx/tx queues
  • b5aa6a3: flxmlrpc
  • 28839d7: call focus
  • a4d4faa: 599 update
  • 41beca0: US units
  • 91ab73f: olivia cxx
  • a45006d: fldigi-shell
  • ee19668: Write log
  • 8d4f0ef: Config dialog

New in Fldigi 3.22.07 (Apr 8, 2015)

  • Fixed issues:
  • b3dea10: Macro edit
  • 97d02a7: Multi-psk
  • 9942993: Vista SignaLink driver
  • c79bfd7: Image update
  • 3c264e2: Command line
  • 68f88ee: SSB default signal
  • 5ca7182: Digiscope resize
  • b522d83: FSF address

New in Fldigi 3.22.06 (Mar 23, 2015)

  • Fixed issues:
  • a36bd6d: UTF-8 Rx display
  • a14b825: 8psk modes
  • e48c2fe: Macro Editor Fonts
  • 2424904: R-L channel input
  • e5148c0: QSY documentation
  • f219812: Sound File Generate
  • 35ef2ed: devices_text mutex
  • aedc628: Bug fixes/Comments
  • cbc9975: Check IO and delay prior to autoexec prgs
  • 003707f: Rename local variables
  • edee64a: pa names
  • 4ba7b78: Main dialog resize
  • 279115c: Rig Viewer Frame
  • 3eb8e41: Code merge/PortAudio Script return error
  • b15f5d9: Update translation files
  • 31e231b: Exit trx loop
  • 1155d8d: Documentation Update
  • 814bed3: Configure Script Engine
  • ad52857: Macros
  • fffc57c: French po
  • 375e98f: CW QSK Tune
  • 3ebf3db: flrig xml client
  • 423ac70: TimeOn button
  • 3041a20: QSY clickable

New in Fldigi 3.22.05 (Jan 10, 2015)

  • Fixed issues:
  • 2c9b493: TX Lock
  • 7c95822: video ID
  • b93ea4e: fftfilt
  • ed4f49d: Port audio index
  • 645e7f9: CW output level
  • 7cc119d: Documentation
  • 93d2da8: MFSK squelch
  • 9c8d515: Rx display
  • b1ac562: Log fields
  • d67d1ab: Native file chooser
  • 6d11c02: ADIF temp log

New in Fldigi 3.22.04 (Dec 27, 2014)

  • Fixed issues:
  • 2c3b965: xmlrpc

New in Fldigi 3.22.03 (Dec 27, 2014)

  • Fixed issues:
  • d47ef8a: Berlios
  • b986d9d: CW configuration
  • 3ff2301: DTMF
  • 0a8f4a3: FFT filter
  • 3c7b69e: CW xmt filter

New in Fldigi 3.22.02 (Dec 22, 2014)

  • Fixed issues:
  • d84edfd: Freq Control
  • aba750e: HTML strings
  • aa0bc26: CW
  • 990e546: PO files
  • 8b81020: Clang globals fix
  • 068f030: RTTY
  • 75c2f79: nu rigctl area
  • 2e2ce97: channel width
  • 1fb74a1: cty.dat confusion
  • ac1befb: KISS log overflow
  • 8c49c64: New install crash
  • 4371ed3: EmComm 8PSK modes
  • bf41f90: MT63 doc
  • 55ff390: viewers
  • 91674b8: psk pskr squelch
  • 3dfbfba: Listbox initializers
  • 4118783: Info Macro Tags
  • 9293e55: Analysis update
  • 90dd8f1: v21 v22 synch
  • 10cc3c5: Modem tests
  • da27f0b: Button colors
  • b16672f: Modes Menu
  • cba4a01: Delayed Bandwidth
  • 29af73c: embedded browser

New in Fldigi 3.20.34 (Jan 13, 2011)

  • ADIF format fault:
  • Corrected formatting fault of ADIF output. Fault caused when field data string exceeded 100 characters. Fault prevalent on Windows platform by virtue of temporary ADIF file used to populate external log files.

New in Fldigi 3.20.12 (May 31, 2010)

  • Modems:
  • Added new PSK-500 mode
  • Added "robust PSK" modes: PSK-125R, PSK-250R, PSK-500R
  • Added PSK63F mode, compatible with MultiPsk PSK63FEC
  • Added Contestia mode
  • Added MT63 modem preamble tones to aid signal acquisition
  • Added selectable filter widths for Hellschreiber modes
  • Added AGC and S/N detector for FM-HELL modes
  • Added Olivia noise estimator
  • Improved THOR and DominoEX squelch responsiveness
  • Improved Olivia squelch detection
  • Improved Feldhell AGC and S/N detector
  • Improved RTTY decoder
  • Removed THOR soft decoding
  • RSID now works at the same time as modem decoding
  • The HELL-80 tone spacing was changed to 300 Hz
  • Macros:
  • Added macro to enable/disable/toggle the transmit lock
  • Added macro to transmit tuning tone for nn seconds
  • Added and macros
  • Added macro to delay macro expansion by nn seconds
  • Added , , , macros to search for a signal up and down in frequency, go to the "sweet spot frequency", and set the current modem frequency to nnnn
  • Added new contest macros to allow faster capture of outgoing exchange
  • User interface:
  • The main window's QSO and waterfall toolbar are now much more configurable
  • The QSO toolbar can now be set to Contest mode, Minimal mode, Full mode, and some combinations thereof
  • The docked digiscope can be hidden and shown without a restart
  • Is is now possible to select the modes for which to transmit RSID, VideoID and CWID
  • The Op Modes menu can now be customised
  • Removed the floating rig control window
  • Removed various Alt- shortcuts
  • Added a simple "wizard" for first-time users
  • Added a waterfall-only mode; enabled with --wfall-only
  • Other changes:
  • The XML-RPC server now supports HTTP/1.1 keep-alive connections
  • Added several new XML-RPC methods
  • Renamed various main.set_rig_NNN XML-RPC methods to rig.set_NNN
  • Removed obsolete command line switches: --twoscopes, --experimental
  • Improved support for PulseAudio, now also the default backend on Linux
  • The ^R string is no longer treated like ^r; it is now ignored unless at the end of the text to be transmitted
  • The Portaudio playback stream is no longer kept open in receive mode; this fixes a problem with certain rig interfaces that generate a PTT signal even when the audio is complete silence
  • Improved win32 serial port support
  • Bug fixes:
  • The MT63 transmit buffer is now correctly initialized
  • Fixed random exceptions-related crashes on win32
  • Stabilized AFC for all PSK baud rates
  • Improved sensitivity of RSID implementation
  • Pulse audio tx/rx flush blocking eliminated on Ubuntu
  • RSID - Disabled signal search on init of psk modem, prevents jumping off of RSID detected frequency
  • RSID - Resolve DominoEX / DominoEX-FEC modes
  • Implement CLOCK_MONOTONIC on OS X

New in Fldigi 3.12.5 (Nov 9, 2009)

  • d31fd3e: Fix threads/exceptions bugs on mingw32
  • 32933c0: Fix guide generation
  • e0888f6: Restrict FLTK API version check
  • 5e39669: PSK250-AFC
  • 34fc880: Stop Timer Bug
  • f4b53ef: Feld Hell Mod
  • a451d6a: TX Control Code fix
  • 9cc86ad: Browser Discovery
  • a2eb274: Do not use -rdynamic on win32
  • fa277b9: Thor squelch mod
  • 6ff8838: Dom/Thor mod
  • 005cc4f: QRZ lookup
  • abe4784: Update README
  • 9324725: Handle nested qrunner calls
  • 2168f74: Fix notifier TX text handling
  • 61bccfa: Fix log/manual spotting
  • c43efcc: Add missing include
  • 49bb77a: PSK post DCD signal
  • b3e1efa: flarq mod
  • 92e7ec1: Fix benchmark mode output