Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-27 | cmake: cleanup | Stanislaw Halik | |
Don't install any source code components. | |||
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-25 | spline: simplify | Stanislaw Halik | |
- don't copy-paste signal disconnection - bundle and settings are never null after ctor | |||
2018-10-25 | options/bundle: fix signals not firing | Stanislaw Halik | |
The check for ini modified happens after ini modified flag is already cleared. Was breaking spline. | |||
2018-10-25 | options/value: remove pointless conditional | Stanislaw Halik | |
std::decay doesn't have enum-specific behavior. | |||
2018-10-25 | options/value-traits: fix bool storage | Stanislaw Halik | |
Using int as `stored_type' for bool made Qt signals not work. Evident when ticking the "asymmetric mapping" checkboxes in the mapping window. Remove some std::decay_t usage, there's no need for either decay or remove_cvref. In `value<t>::get()', `bundle::get_variant' of an undefined key will fall back to `return def' so remove the duplicate logic. | |||
2018-10-25 | cleanup only | Stanislaw Halik | |
- replace warn_unused_result with [[nodiscard]] - remove some redundant w_a_r - replace std::decay with remove_cvref_t - simplify compat/math.hpp | |||
2018-10-25 | proto/ft: fix GCC warns | Stanislaw Halik | |
2018-10-25 | tracker/wii: fix for mingw-w64 | Stanislaw Halik | |
The module loses auto-pairing functionality, but it's at least useful to see GCC warnings. I don't intend to use GCC for actually running the module. Fix some warnings emitted by GCC, such as - memset(3) of non-POD struct - depending on "new T[0]" to return a null pointer - dependence on MSVC-specific pragmas for external libraries - lack of header guards - unintended usage of trigraph syntax Disable some GCC warnings for the "wiiyourself" library. It's not possible to patch it up, the code quality is that awful. Disable the builtin debug functionality since it depends on non-standard __VA_OPT__ (due in C++20). It's not possible to disable the warning emitted on the __VA_ARGS__ usage in GCC. | |||
2018-10-25 | cleanups only | Stanislaw Halik | |
2018-10-20 | gitattributes | Stanislaw Halik | |
2018-10-20 | cmake/msvc: fix CRT .pdb link | Stanislaw Halik | |
2018-10-12 | logic/modules: help debug more failure cases | Stanislaw Halik | |
2018-10-12 | tracker/pt: add more robust camera retry | Stanislaw Halik | |
Some cameras can't produce frames right after the capture is opened. Adjust the delay to something more sane. It has a strange effect of not crashing PS3 Eye as often, but that needs more testing (and crashes). | |||
2018-10-12 | tracker/pipeline: try help frame variance | Stanislaw Halik | |
While we're keeping 250 Hz in the tracker pipeline, the frame variance isn't optimal, as per `backlog_time' values. Try a different magic number. | |||
2018-10-12 | logic/pipeline: attempt adjust thread priority | Stanislaw Halik | |
Calling QThread::setPriority twice in a succession means: 1. if you can, set high priority a) if not allowed, highest won't work either b) if allowed, see below 2. if you can, set highest priority a) if highest is allowed, happy happy joy joy b) if not, at least high priority is successful Note that we don't have any return value from QThread::setPriority(). | |||
2018-10-12 | logic/pipeline: cleanup only | Stanislaw Halik | |
2018-10-12 | logic/pipeline: fix duplicate d2r | Stanislaw Halik | |
2018-10-12 | variant/trackmouse: copy-paste from default on short notice | Stanislaw Halik | |
2018-10-12 | pt/settings: make header-only | Stanislaw Halik | |
2018-10-08 | proto/mouse: fix fraction | Stanislaw Halik | |
2018-10-08 | dinput: fix mingw-w64 | Stanislaw Halik | |
2018-10-08 | cmake: fix mingw-w64 | Stanislaw Halik | |
2018-10-08 | cmake/msvc: fix warning on preview | Stanislaw Halik | |
2018-10-07 | fix GCC build errors | Stanislaw Halik | |
Issue: #726 | |||
2018-10-05 | logic/pipeline: probably fix remaining bugs | Stanislaw Halik | |
2018-10-05 | main-window: shutup temp warning on maintainer mode | Stanislaw Halik | |
2018-10-05 | compat/linkage-macros: fix template exports on mingw-w64 | Stanislaw Halik | |
2018-10-05 | qxt-mini: try fix osx shortcut snafu | Stanislaw Halik | |
2018-10-05 | gui/init: handle -msse2 -mno-sse3 | Stanislaw Halik | |
2018-10-05 | cv/tcal: don't count separate roll as sample | Stanislaw Halik | |
2018-10-05 | tracker/pt: dynpose default to off | Stanislaw Halik | |
2018-10-05 | silly busywork | Stanislaw Halik | |
2018-10-05 | options: don't use typeindex w/ lambdas | Stanislaw Halik | |
Rename traits' functions to be more explicit. Most of the changes are pretty old and I can't read them at this time, sorry. Adjust usages. Issue: #825 Reported-by: @DanielKinsman | |||
2018-10-05 | use attributes only at declaration, not definition | Stanislaw Halik | |
2018-10-05 | api: delete pointless delete move ctor | Stanislaw Halik | |
2018-10-05 | cmake: fix mingw-w64 | Stanislaw Halik | |
2018-10-05 | gitignore | Stanislaw Halik | |
2018-10-05 | clang-tidy another warning | Stanislaw Halik | |
2018-08-31 | don't consider everything text (like png files) otherwise git converts them | Daniel Kinsman | |
2018-08-27 | ext/bms: what the hell was that?work-20180827 | Stanislaw Halik | |
2018-08-27 | spline/widget: fix min point distance logic | Stanislaw Halik | |
- rename the function - return min distance value in position of `x', not pixels - add some DPI scaling for point size and line length - use snap logic where it was ignored | |||
2018-08-27 | tracker/hatire: appease analyzer | Stanislaw Halik | |
2018-08-27 | tracker/hatire: appease clang analyzer | Stanislaw Halik | |
2018-08-27 | spline: modernize | Stanislaw Halik | |
2018-08-27 | proto/ft: fix hack for falcon bms | Stanislaw Halik | |
2018-08-27 | compat/timer: fix integer literal type suffixes | Stanislaw Halik | |
2018-08-27 | compat/linkage-macros: simplify | Stanislaw Halik | |