Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-24 | compat/meta: fix for mixins | Stanislaw Halik | |
2018-07-24 | compat/macros: more decltype(auto) | Stanislaw Halik | |
2018-07-24 | add explicit | Stanislaw Halik | |
2018-07-24 | tracker/pt: remove unused typedef | Stanislaw Halik | |
Issue: #726 | |||
2018-07-24 | x-plane: cleanup, reformat | Stanislaw Halik | |
2018-07-24 | dinput: fix POV hats, spurious events | Stanislaw Halik | |
2018-07-14 | opentrack: move macros away from header file | Stanislaw Halik | |
2018-07-14 | opentrack: this can be private | Stanislaw Halik | |
2018-07-14 | opentrack: cleanup main_window::set_title | Stanislaw Halik | |
2018-07-14 | compat/meta: fixes | Stanislaw Halik | |
2018-07-14 | fix build | Stanislaw Halik | |
2018-07-14 | options/slider: remove constexpr | Stanislaw Halik | |
it implies inline | |||
2018-07-13 | appease analyzer | Stanislaw Halik | |
2018-07-11 | gui/init: sprinkle some `static' | Stanislaw Halik | |
2018-07-11 | compat/macros: fix return type | Stanislaw Halik | |
2018-07-11 | cmake: fix build | Stanislaw Halik | |
2018-07-10 | fix build | Stanislaw Halik | |
2018-07-10 | tidy: remove duplicates | Stanislaw Halik | |
2018-07-10 | tracker/aruco: simplify abi test | Stanislaw Halik | |
The issue was that with LTO enabled, the `try_compile' call took way too long for a simple compile test. Rather, add a #define to Aruco to avoid the slow link. Bump aruco ABI version. Please update your opentrack/aruco and/or opentrack/opentrack-depends repos. | |||
2018-07-10 | cmake/platform: cleanup | Stanislaw Halik | |
2018-07-10 | cmake: spew out effective flags | Stanislaw Halik | |
2018-07-10 | fixup! cmake: rename | Stanislaw Halik | |
2018-07-10 | cmake/msvc: fix flags duplicating themselves | Stanislaw Halik | |
2018-07-10 | tracker/tobii-eyex: working (?) prototype | Stanislaw Halik | |
2018-07-10 | move to dot.github | Stanislaw Halik | |
2018-07-09 | cmake: rename | Stanislaw Halik | |
2018-07-09 | tracker/tobii: add prototype support for accumulative mode | Stanislaw Halik | |
2018-07-09 | cleanup only | Stanislaw Halik | |
2018-07-08 | migration: actualy batch the updates | Stanislaw Halik | |
2018-07-08 | options: fix 2 issues | Stanislaw Halik | |
1. Calling valueChanged didn't invoke machinery in value<t>, only base_value aka value_. There's a fast path in value<t>::type() despite the pessimization. 2. Split global scope stuff into options::globals from the options::globals stuff 3. Adjust usages | |||
2018-07-08 | modernize only | Stanislaw Halik | |
2018-07-08 | cmake/msvc: fix building some other project | Stanislaw Halik | |
2018-07-08 | dot.clang-tidy | Stanislaw Halik | |
2018-07-06 | tracker/rift: euthanize old versions | Stanislaw Halik | |
No one uses them according to #781 | |||
2018-07-06 | tracker/hatire: remove explicit workaround optin | Stanislaw Halik | |
Tested-by: @Ec0nomist cf. https://github.com/opentrack/opentrack/issues/327#issuecomment-402288929 | |||
2018-07-06 | clang-tidy: remove duplicate test | Stanislaw Halik | |
2018-07-03 | filter/kalman: don't need operator new overload anymore | Stanislaw Halik | |
MSVC 15.0+ supports correct alignment | |||
2018-07-03 | cleanup | Stanislaw Halik | |
2018-07-03 | compat/calibrator: fix typo | Stanislaw Halik | |
2018-07-03 | clang-tidy: get rid of nonsense | Stanislaw Halik | |
2018-07-03 | compat/sleep: don't pull windows.h into the header | Stanislaw Halik | |
2018-07-03 | logic/shortcuts: destructure binding; avoid capture | Stanislaw Halik | |
wrt capture: If a lambda-expression [...] captures a structured binding (explicitly or implicitly), the program is ill-formed. -- P0588R1, Core issue 2313 Also it's unnecessary to make the removed lambda. | |||
2018-07-02 | add dot.clang-tidy | Stanislaw Halik | |
2018-07-02 | opentrack/main-window: use more aggregate initialization | Stanislaw Halik | |
This is new in C++17, cf. P0017R1. | |||
2018-07-02 | nothing important | Stanislaw Halik | |
2018-07-02 | compat/meta: try make usable | Stanislaw Halik | |
2018-06-26 | options/group: add comment | Stanislaw Halik | |
We'll be moving away from QSettings usage. The intent here is to: 1) get rid of this cruft 2) allow notifying all values with given name that their value changed in one of these values, i.e. `valueChanged()' without connector usage | |||
2018-06-26 | spline: split up spline API | Stanislaw Halik | |
2018-06-26 | spline: don't use cubic | Stanislaw Halik | |
Cubic shows incorrect values for control points close to each other. | |||
2018-06-26 | options/value: add missing dereference operator | Stanislaw Halik | |