Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-11 | opentrack: don't wait on exit with no video feed | Stanislaw Halik | |
2019-02-11 | cv/video-widget: make it work without opencv | Stanislaw Halik | |
2019-02-10 | cmake: link version static library to the right target | Stanislaw Halik | |
2019-02-09 | random nonsense only | Stanislaw Halik | |
2019-02-09 | options, opentrack: fix migrations with tie_setting | Stanislaw Halik | |
Migrations only ran after `tie_setting()' handlers were done, clobbering the settings that were about to be migrated. Applying QSignalBlocker to few comboboxes isn't enough as it affects everything touched by `tie_setting()'. Split reload and notify phases in the options system. | |||
2019-02-09 | use consistent naming for `profile' | Stanislaw Halik | |
2019-02-09 | opentrack: fix profile list storage | Stanislaw Halik | |
The authoritative source for profile names is now a vector rather than a user interface element. Add some sanity checks to `main_window::set_profile'. Remove the `config_listed' abomination. | |||
2019-02-09 | opentrack: move module list to base class | Stanislaw Halik | |
2019-02-09 | opentrack: rename, reorder, add `static' | Stanislaw Halik | |
2019-02-09 | opentrack: move members around in header | Stanislaw Halik | |
2019-02-03 | opentrack: use in-header initializer | Stanislaw Halik | |
2019-02-03 | opentrack: get rid of Q_OBJECT | Stanislaw Halik | |
More work toward mixins. | |||
2019-02-03 | [TEST] opentrack: separate components a bit | Stanislaw Halik | |
This can cause regressions, but is a step toward mixin support. | |||
2019-01-24 | gui, opentrack: simplify std::function/unique_ptr usage | Stanislaw Halik | |
Reported by: ElDesalmado | |||
2019-01-18 | opentrack: fix use-after-free (?) | Stanislaw Halik | |
2019-01-18 | opentrack: fix typo | 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 | opentrack: reformat | Stanislaw Halik | |
2019-01-16 | opentrack: make sure tracking stop pose is shown | Stanislaw Halik | |
2019-01-16 | opentrack: don't hang in foreground | Stanislaw Halik | |
This only affects quitting the program. It doesn't affect regular tracking stop procedure, sadly. | |||
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 | {opentrack,trackmouse}: fix ps3eye led workaround | Stanislaw Halik | |
2018-12-24 | trackmouse: copy-paste changed code | Stanislaw Halik | |
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-24 | cruft | Stanislaw Halik | |
2018-12-08 | clean up a bit | Stanislaw Halik | |
2018-11-14 | trackmouse: update keys | Stanislaw Halik | |
2018-11-05 | trackmouse: fix toggle tracker shortcut | Stanislaw Halik | |
2018-11-03 | opentrack: pull in EXIT_{SUCCESS, FAILURE} | Stanislaw Halik | |
2018-11-03 | opentrack: move unistd.h stuff to end of file | Stanislaw Halik | |
2018-11-02 | trackmouse: fix settings | Stanislaw Halik | |
2018-10-27 | trackmouse: avoid recursive exit | Stanislaw Halik | |
2018-10-27 | trackmouse: reorder includes | Stanislaw Halik | |
2018-10-27 | trackmouse: fix the freeze hotkey | Stanislaw Halik | |
2018-10-27 | trackmouse: connect slider to mouse sensitivity | Stanislaw Halik | |
2018-10-27 | cleanup | Stanislaw Halik | |
2018-10-27 | trackmouse: lang files keep changing | Stanislaw Halik | |
2018-10-27 | trackmouse: fix build | Stanislaw Halik | |
2018-10-27 | trackmouse: add Mini Clip Right sizes | Stanislaw Halik | |
2018-10-12 | variant/trackmouse: copy-paste from default on short notice | Stanislaw Halik | |
2018-10-05 | silly busywork | Stanislaw Halik | |
2018-07-24 | WIP | 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-09 | cleanup only | 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-02 | opentrack/main-window: use more aggregate initialization | Stanislaw Halik | |
This is new in C++17, cf. P0017R1. |