summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2019-02-13proto/vjoystick: simplifyStanislaw Halik
2019-02-13fix signedness/conversion warningsStanislaw Halik
2019-02-13Merge pull request #872 from opentrack/opentrack-2.3.11-beta2Stanislaw Halik
tracker/pt: fix evil typo
2019-02-11opentrack: don't wait on exit with no video feedStanislaw Halik
2019-02-11proto/vjoystick: fix threading issueStanislaw Halik
Acquiring given joystick id must be done on the same thread as the feeder apparently. Provide diagnostics on failure. Issue: #860
2019-02-11video/widget: externalize opencv codeStanislaw Halik
2019-02-11cmake: reindentStanislaw Halik
2019-02-11video: remove Patrick's copyrightStanislaw Halik
The file was completely rewritten some time ago.
2019-02-11video: less namespace pollutionStanislaw Halik
2019-02-11fix editorconfigStanislaw Halik
2019-02-11dos2unixStanislaw Halik
2019-02-11tracker/kinect: remove tracker/test codeStanislaw Halik
2019-02-11compat/simple-mat: more constexprStanislaw Halik
2019-02-11less header namespace pollutionStanislaw Halik
2019-02-11cv/video-widget: make it work without opencvStanislaw Halik
2019-02-11cv/video-widget: fixesStanislaw Halik
- don't copy pointlessly on ARGB32 input. - add stride argument to QImage. - don't do pointless stuff during painting on the main thread.
2019-02-11compat/macros: define unreachable() more sensiblyStanislaw Halik
2019-02-11compat/macros: remove prefixStanislaw Halik
Let's not be concerned about global namespace pollution. These identifiers aren't exposed in the api/ directory.
2019-02-11clang-tidy: less krapStanislaw Halik
2019-02-11add dot.editorconfigStanislaw Halik
2019-02-11cmake: require v3.13 for target_{compile,link}_optionsStanislaw Halik
2019-02-10tracker/kinect: add CRT dependenciesStanislaw Halik
2019-02-10dinput: fix debug logicStanislaw Halik
2019-02-10cmake: use target_{compile,link}_optionsStanislaw Halik
2019-02-10tracker/kinect: no need for public compile optionStanislaw Halik
2019-02-10proto/fsuipc: switch to `target_*_options'Stanislaw Halik
2019-02-10proto/foohid: add missing .tsStanislaw Halik
2019-02-10installer: use build/Stanislaw Halik
2019-02-10cmake: remove build type suffixStanislaw Halik
2019-02-10gitignore build symlinkStanislaw Halik
2019-02-10cmake: link version static library to the right targetStanislaw Halik
2019-02-10cmake: fix warning with new versionStanislaw Halik
2019-02-10cmake: small cleanupStanislaw Halik
2019-02-10cmake: improve quotemeta for CStanislaw Halik
2019-02-09cmake: wrap around for function var scopeStanislaw Halik
2019-02-09cmake: try not use leading underscore in header nameStanislaw Halik
2019-02-09options/base-value: remove stale commentStanislaw Halik
2019-02-09tracker/kinect: pass msvc -W4Stanislaw Halik
Let's not change the code unnecessarily.
2019-02-09tracker/kinect: fix cmakeStanislaw Halik
- fix bogus sdk warning - quote paths that can contain spaces - use opentrack-{intel,64bit,hier-pfx} - shorten module name - don't use EXISTS with pathname, it should fail at build time
2019-02-09cmake: add kinect to my SDK pathsStanislaw Halik
2019-02-09proto/simconnect: regen translationStanislaw Halik
2019-02-09clang-tidy: more krapStanislaw Halik
2019-02-09api: fix identifierStanislaw Halik
2019-02-09proto/simconnect: don't hang so long on exitStanislaw Halik
Issue: #804
2019-02-09dinput: fix api usageStanislaw Halik
Issue: #871 - don't sleep with a lock held - fix Acquire() return value check - remove needless Unacquire() calls - always use Poll(), even for keyboard - fix HRESULT debug output
2019-02-09proto/simconnect: fix p3dStanislaw Halik
Issue: #804 Prepar3d was not working due to sending RECV_ID_EXCEPTION on startup.
2019-02-09proto/simconnect: cleanupStanislaw Halik
Issue: #804 - don't call simconnect_close without a valid handle - remove magic numbers - fix event handle logic. only use it for checking whether we're timing out. - add more informative stderr output - don't hardcode QFunctionPointer type alias - remove awful VirtPos/Rot...
2019-02-09proto/simconnect: move activation context to compatStanislaw Halik
2019-02-09random nonsense onlyStanislaw Halik
2019-02-09options, opentrack: fix migrations with tie_settingStanislaw 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.