summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2018-10-29cmake: add target for doing only ui/moc filesStanislaw Halik
This is helpful when running under CLion, due to the lack of support for the Ninja generator.
2018-10-29cmake: add include guardsStanislaw Halik
2018-10-29gitignore: fix win32 symlinksStanislaw Halik
2018-10-27trackmouse: avoid recursive exitStanislaw Halik
2018-10-27trackmouse: reorder includesStanislaw Halik
2018-10-27trackmouse: fix the freeze hotkeyStanislaw Halik
2018-10-27trackmouse: connect slider to mouse sensitivityStanislaw Halik
2018-10-27cleanupStanislaw Halik
2018-10-27cmake: cleanupStanislaw Halik
Don't install any source code components.
2018-10-27trackmouse: lang files keep changingStanislaw Halik
2018-10-27trackmouse: fix buildStanislaw Halik
2018-10-27trackmouse: add Mini Clip Right sizesStanislaw Halik
2018-10-25spline: simplifyStanislaw Halik
- don't copy-paste signal disconnection - bundle and settings are never null after ctor
2018-10-25options/bundle: fix signals not firingStanislaw Halik
The check for ini modified happens after ini modified flag is already cleared. Was breaking spline.
2018-10-25options/value: remove pointless conditionalStanislaw Halik
std::decay doesn't have enum-specific behavior.
2018-10-25options/value-traits: fix bool storageStanislaw 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-25cleanup onlyStanislaw 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-25proto/ft: fix GCC warnsStanislaw Halik
2018-10-25tracker/wii: fix for mingw-w64Stanislaw 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-25cleanups onlyStanislaw Halik
2018-10-20gitattributesStanislaw Halik
2018-10-20cmake/msvc: fix CRT .pdb linkStanislaw Halik
2018-10-12logic/modules: help debug more failure casesStanislaw Halik
2018-10-12tracker/pt: add more robust camera retryStanislaw 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-12tracker/pipeline: try help frame varianceStanislaw 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-12logic/pipeline: attempt adjust thread priorityStanislaw 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-12logic/pipeline: cleanup onlyStanislaw Halik
2018-10-12logic/pipeline: fix duplicate d2rStanislaw Halik
2018-10-12variant/trackmouse: copy-paste from default on short noticeStanislaw Halik
2018-10-12pt/settings: make header-onlyStanislaw Halik
2018-10-08proto/mouse: fix fractionStanislaw Halik
2018-10-08dinput: fix mingw-w64Stanislaw Halik
2018-10-08cmake: fix mingw-w64Stanislaw Halik
2018-10-08cmake/msvc: fix warning on previewStanislaw Halik
2018-10-07fix GCC build errorsStanislaw Halik
Issue: #726
2018-10-05logic/pipeline: probably fix remaining bugsStanislaw Halik
2018-10-05main-window: shutup temp warning on maintainer modeStanislaw Halik
2018-10-05compat/linkage-macros: fix template exports on mingw-w64Stanislaw Halik
2018-10-05qxt-mini: try fix osx shortcut snafuStanislaw Halik
2018-10-05gui/init: handle -msse2 -mno-sse3Stanislaw Halik
2018-10-05cv/tcal: don't count separate roll as sampleStanislaw Halik
2018-10-05tracker/pt: dynpose default to offStanislaw Halik
2018-10-05silly busyworkStanislaw Halik
2018-10-05options: don't use typeindex w/ lambdasStanislaw 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-05use attributes only at declaration, not definitionStanislaw Halik
2018-10-05api: delete pointless delete move ctorStanislaw Halik
2018-10-05cmake: fix mingw-w64Stanislaw Halik
2018-10-05gitignoreStanislaw Halik
2018-10-05clang-tidy another warningStanislaw Halik
2018-08-31don't consider everything text (like png files) otherwise git converts themDaniel Kinsman