Open kyleboyle opened 5 days ago
Please, could you rebase it and send me only diff for you change ?
Not sure why qt5 is failing on that enum
it is because of Ubuntu 20.04. It contains qt 5.12. I already solved it in QLog. Try this:
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
const QStringList &commands = message.split(";", Qt::SkipEmptyParts);
#else /* Due to ubuntu 20.04 where qt5.12 is present */
const QStringList &commands = message.split(";", QString::SkipEmptyParts);
#endif
Ah, that makes sense. I was trying to replicate locally on 5.15 (the version of qt5 installed by homebrew on macos) and didn't see any difference :D
This enhancement completes our pota user experience. I've explained the pota experience and common workflow as a wiki entry here: https://github.com/kyleboyle/QLog/wiki/POTA-Activations
This PR is the missing functionality of the file export. There are various legacy and pota.app requirements which differentiates it from a generic adif export which I won't outline here but I describe briefly in the wiki and the full documentation is here:
https://docs.pota.app/docs/activator_reference/ADIF_for_POTA_reference.html