Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-01 | fix some GCC warnings | Stanislaw Halik | |
2022-04-19 | fix i18n generation | Stanislaw Halik | |
2022-01-26 | api: don't close a dialog that's already being closedopentrack-2022.1.1 | Stanislaw Halik | |
2022-01-26 | api, opentrack: fix the crash for real this time | Stanislaw Halik | |
2022-01-26 | api, gui: close options dlg on Esc inside inner dlg | Stanislaw Halik | |
2022-01-26 | api: remove unused include | Stanislaw Halik | |
2022-01-11 | api: unload dll's on program exit | Stanislaw Halik | |
This works with MSVC, as long as the simconnect dll isn't unloaded by its module. | |||
2021-12-19 | remove unfinished extension support | Stanislaw Halik | |
2021-12-16 | api, gui, opentrack: allow embedding proto, filter dialogs | Stanislaw Halik | |
2021-12-14 | api, gui: add types for embeddable module dialogs | Stanislaw Halik | |
2021-10-16 | api: fix warning | Stanislaw Halik | |
2019-10-28 | api: fix clang build error | Stanislaw Halik | |
2019-09-22 | api: expose raw data to protocols | Stanislaw Halik | |
Issue: #975 | |||
2019-05-05 | api: fix logic error loading video modules | Stanislaw Halik | |
2019-04-05 | api: fix gcc | Stanislaw Halik | |
Issue: #926 | |||
2019-03-28 | api: make plugin paths relative | Stanislaw Halik | |
2019-03-28 | api: cleanup | Stanislaw Halik | |
- add disable warnings at module load failure - add loading modules without looking for ctors, for the video module - get rid of QList | |||
2019-03-18 | video: add support for camera modules | Stanislaw Halik | |
Issue: #910 | |||
2019-03-15 | api: expand empty string to "No error" for trackers | Stanislaw Halik | |
2019-03-15 | api: add missing translation | Stanislaw Halik | |
2019-02-28 | api: kill useless cast | Stanislaw Halik | |
2019-02-28 | api: don't bother with qlatin1string | Stanislaw Halik | |
2019-02-28 | api: use multi-arg | Stanislaw Halik | |
2019-02-28 | api: fix clang-tidy false positive | Stanislaw Halik | |
2019-02-28 | api: don't even try to unload the library | Stanislaw Halik | |
2019-02-09 | api: fix identifier | Stanislaw Halik | |
2019-02-03 | proto/simconnect: fix activation context again | Stanislaw Halik | |
Issue: #804 | |||
2019-02-02 | api/plugin: add explicit to module_status error ctor | Stanislaw Halik | |
2019-01-20 | api: kill `static' in a header-only library | Stanislaw Halik | |
Also drop the unsigned suffix from magic constants, clang doesn't complain. | |||
2019-01-18 | api: fix harmless clang-tidy warnings | Stanislaw Halik | |
2019-01-18 | api: use braced initializers | Stanislaw Halik | |
2019-01-18 | api: running out of hex constants | Stanislaw Halik | |
2019-01-18 | fix selecting no filter | Stanislaw Halik | |
2019-01-16 | modernize only | Stanislaw Halik | |
- replace `static constexpr inline' with `static constexpr'. `inline' is implied. - use braced initializer lists where applicable - still missing `override' usages | |||
2019-01-16 | api/plugin: add helper members to `enum Axis' | Stanislaw Halik | |
2019-01-16 | clang-tidy fixes only | Stanislaw Halik | |
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever. | |||
2018-12-24 | style/quality only | Stanislaw Halik | |
No functional changes. - add `override' everywhere where missing - almost pass clang's `-Wweak-vtables' - avoid some float/double conversions - remove unused private members - make signedness conversions explicit - put stuff in right namespaces to aid analysis | |||
2018-12-08 | clean up a bit | Stanislaw Halik | |
2018-10-05 | api: delete pointless delete move ctor | Stanislaw Halik | |
2018-07-13 | appease analyzer | Stanislaw Halik | |
2018-07-09 | cleanup only | Stanislaw Halik | |
2018-07-02 | nothing important | Stanislaw Halik | |
2018-06-26 | modernize C++ syntax | Stanislaw Halik | |
No visible changes (hopefully). | |||
2018-06-26 | api: use RTLD_NOW | Stanislaw Halik | |
2018-04-05 | i18n: provide for non-QObject classes | Stanislaw Halik | |
See compat/tr.hpp for comment. | |||
2018-02-16 | api: fix potential logic errors with module init | Stanislaw Halik | |
2018-02-15 | clean up "static" and "constexpr" types | Stanislaw 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-12 | cmake: add zh_CN | Stanislaw Halik | |
cf. #746 | |||
2018-01-14 | meh | Stanislaw Halik | |
2018-01-11 | minor cleanup | Stanislaw Halik | |