summaryrefslogtreecommitdiffhomepage
path: root/tracker-s2bot
AgeCommit message (Collapse)Author
2018-02-15clean up "static" and "constexpr" typesStanislaw Halik
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates.
2018-02-12cmake: add zh_CNStanislaw Halik
cf. #746
2018-02-12modules: stop saving line informationStanislaw Halik
Now i18n regen won't make a mess.
2018-02-09update translation source files -- #743Stanislaw Halik
2018-01-20rename our Qt .png iconStanislaw Halik
facetracknoir.png -> opentrack.png
2018-01-18compat/util: retireStanislaw Halik
Adjust usages.
2017-12-09many: use otr_tr for non-qobject translationStanislaw Halik
I haven't even compile-tested Linux and OSX-specific bits.
2017-12-04api: add status check for modulesStanislaw Halik
2017-09-23use std::sizeStanislaw Halik
2017-07-21tracker/s2bot: fix few bugsStanislaw Halik
- Received values got converted to integers. I find this hard to believe. Even if this is so, converting to double leaves forward-compatibility if the sender software gets its act together. - There was a buffer overflow when indexing the "indices" array. - Mutex scope bigger than necessary. The code is copy-pasted from the FreePIE tracker. Perhaps if its own code was easier to understand, there wouldn't be any buffer overflows to begin with.
2017-07-21tracker/s2bot: reformat to indent as 4 spacesStanislaw Halik
2017-07-20tracker/s2bot: fix stopping trackerStanislaw Halik
- need use QThread::exit to stop the event loop - QObject::moveToThread works when passed a working thread - stop QTimer in its thread
2017-07-18tracker/s2bot: fix -WerrorStanislaw Halik
2017-07-16tracker/s2bot: add clean i18n filesStanislaw Halik
Related-to: #650
2017-07-16tracker/s2bot: fix qt's lrelease barfingStanislaw Halik
Files had strings from the FreePIE tracker copied. Related-to: #650
2017-07-16tracker/s2bot: reduce logspamStanislaw Halik
Related-to: #650
2017-07-16tracker/s2bot: fix dead code warningStanislaw Halik
Related-to: #650
2017-07-11documentation and attributionattila-csipa
2017-07-11clean up code, remove ugly file loggingAttila Csipa
2017-07-07s2bot trackingAttila Csipa