* Added scripts to generate Doxygen documentation from fldigi git repository / source
* Also executes "cppcheck" and includes those results on Doxygen page (if installed on system)
* Generates patches and log for the last 125 commits: includes links on Doxygen page
* Synop decoding in RTTY mode in reception buffer, in red.
* Creation of KML file for Synop data.
* Creation of KML file for Navtex messages.
* User locator displayed in KML.
* Multiline Synop and Navtex messages displayed in Adif logs.
* Added flsynop program as stand alone Synop decoder.
* Fixed Navtex default stations filename and Italian stations.
* Fixed Navtex frequency error.
* Added KML tab in configuration menu.
* Added parameters files for Synop decoding.
* Fixed CoordinateT type for different deserialization.
* Less logging messages from subthreads, because they might crash.
* Added try/catch blocks in main program.
* Can reload previous KML files at startup.
* Named WMO code tables in Synop decoding.
* Synop data can be logged to Adif files.
* flsynop can load kml files from one dir and save them elsewhere.
* Added strreplace and strcapitalize.
* Added Levenshtein distance for future use.
* Added class QsoHelper to ease Adif logging.
* East longitude positive, West negative. Fixes Navtex detection.
* Chars '=' or ';' used as a Synop end-of-section marker.
* Added option command in KML tab executed on KML file save.
* Reverse mode now saved in configuration.
* Comments in DOxygen syntax.
* Kml snippet stored once only per placemark.
* Code more compatible with Eclipse parsing.
* Synop decoded text can be interleaved with 5-digits groups.
* KML balloons can be in simple tables, matrices or plain text.
* Adif messages are saved in the main thread.
* Starts external command only if KML file was saved.
* Maximum KML data retention time is ten years, default 0 is no limit.
* Do not reload KML files when changing KML parameters.
* User kml file does not grow at each fldigi start.
* Relative humidity always parsed with Celsius temperature.
* Empty KML files are created on startup if not there.
* Prepared porting processes functions to Mingw.
* Added script for FTP transfer of KML files.
* Added synop_tool
* Navtex now has reverse mode.
* Data files can be updated from the Internet.
* HTTP load without anymore because crash in Wine
* Enable dynamic linking for pthreads-win32
* Add -mthreads to compiler and linker flags
* Modify nsis installer script to include pthreadGC2.dll and mingwm10.dll
* Add flarq to build system and installers
* Modify test scripts
* Add flarq manual page
* Add flarq command line argument handling
* Improve flarq's windowing system support
The win32 installer is generated by running scripts/mknsisinst.sh via
`make nsisinst'. This target is available only if `makensis' is present
on the build system.
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
Merge patch by Stephane Fillod <fillods@users.sourceforge.net>:
* gettextsize fldigi
* add initial French translation
Minor additional changes by me (sb):
* Remove bundled intl and associated m4 macros and compiler flags
* Move new m4 macros to m4/intl
* Move gettext.h to src/include and add to src/Makefile.am
* Modify setup_nls():
* Search for message catalogs in $PWD/locale and
$FLDIGI_LOCALE_DIR/locale, in addition to LOCALEDIR
* Do not call setlocale() for LC_NUMERIC, as this can break the
configuration read/write routines when handling floating point
numbers in locales that use a comma as the decimal point
* Fix static initialisation
* Add INTL_LIBS and INTL_CFLAGS configure variables that can be used
to override AM_GNU_GETTEXT
* Update po/Makevars
* Update po files
* Remove po/Makefile.in and po/remove-potcdate.sed
Long arguments without a space (--opt=arg) now work correctly.
Also, move sound initialisation to a separate function, add an
undocumented --exit-after SECONDS argument, and update mkversions.sh
to include CXXFLAGS in the --version output.