summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2017-09-22cmake: disable cpu-heavy msvc debug featuresStanislaw Halik
2017-09-22cmake/msvc: disable frame pointer omissionStanislaw Halik
2017-09-08pose-widget: fix race on startupStanislaw Halik
2017-08-25cmake: fix typoStanislaw Halik
2017-08-25gitignoreStanislaw Halik
2017-08-25cmake: move to separate fileStanislaw Halik
2017-08-25compat/util: use std::decay for overload resolutionStanislaw Halik
2017-08-25compat/util: split macros headerStanislaw Halik
2017-08-25cmake: fix make clean for i18n filesStanislaw Halik
`make clean' was deleting .ts files. Thanks to @MrCapone for diagnosing this issue. Fixes: #677
2017-08-19tracker/{pt,aruco}: simplifyStanislaw Halik
2017-08-19pose-widget: clamp floatsStanislaw Halik
We can't expect bounds check to work, if depending on floating-point dot product.
2017-08-19compat/util: implement clamp specialization for floatsStanislaw Halik
2017-08-19Revert "pose-widget: remove badly-looking shadow"Stanislaw Halik
The shadow's not at fault. cf. https://github.com/opentrack/opentrack/issues/664#issuecomment-322397835
2017-08-14cmake/msvc: fix buildopentrack-2.3.9Stanislaw Halik
Dunno what was wrong otherwise.
2017-08-14cmake: some small quality-of-life improvementsStanislaw Halik
2017-08-14cmake: preliminary support for clang with vc++ codegenStanislaw Halik
2017-08-14cmake: drop executable bit from installed normal filesStanislaw Halik
2017-08-14some style fixesStanislaw Halik
2017-08-14tracker/pt: move Affine class to cv/Stanislaw Halik
2017-08-14cmake: fix installed qt dlls locationStanislaw Halik
2017-08-14use c++14 featuresStanislaw Halik
2017-08-14cmake: get lupdate/lrelease pathnamesStanislaw Halik
cf. #669
2017-08-05Merge pull request #668 from MrCapone/macos_build_fixStanisław Halik
fixed macos build
2017-08-05fixed macos buildDmitry Lukianov
2017-08-05spline: fix std::abs(int) import missingStanislaw Halik
Submitted-by: @MrCapone in #668 v2: we need <cmath>. Include <cinttypes> for the overload.
2017-08-05Merge pull request #669 from MrCapone/linux_build_fixStanisław Halik
fixed qt binaries location for linux
2017-08-04fixed qt binaries location for linuxDmitry
2017-08-03pose-widget: remove badly-looking shadowStanislaw Halik
2017-08-01gui: don't hook QEvent::ShowStanislaw Halik
It's pointless actually. It's not emitted before WindowActivate at all.
2017-07-31options/metatype: pass exact same name for slidersStanislaw Halik
That made sliders from 2.3.7 still incompatible. Apparently QVariant cares a lot about the difference between "options::slider_value", "::options::slider_value", and "slider_value".
2017-07-29gui: refresh mapping window even if main window is hiddenStanislaw Halik
2017-07-29tracker/pt: revert most 2.3.8 changesStanislaw Halik
Remove contour usage. They're less precise than flood fill. Keep sensible changes.
2017-07-29filter/accela: make gain more conservativeStanislaw Halik
Issue: #665
2017-07-29compat: fix Linux buildStanislaw Halik
Issue: #661
2017-07-29cmake: fix Linux buildStanislaw Halik
Issue: #661
2017-07-29proto/{libevdev,wine}: add stub i18nStanislaw Halik
Was breaking make(1). Issue: #661
2017-07-29compat/check-visible: fix non-win32 buildStanislaw Halik
Issue: #661 Reported-by: @ljgdasfhk
2017-07-28options/tie: kill warningsStanislaw Halik
2017-07-28gui: don't update the main window if it's hiddenStanislaw Halik
2017-07-28cmake: fix mingw-w64 llvm buildStanislaw Halik
2017-07-28proto/freetrack: fix build with mingw-w64 with llvmStanislaw Halik
2017-07-26tracker/pt: scale min/max radius with resolutionStanislaw Halik
For 320x240 frames auto threshold min value of 2.5 was too big. Scale it linearly with frame size.
2017-07-26options: organize metatype declarationsStanislaw Halik
2017-07-25spline: repaint() is cheaperStanislaw Halik
2017-07-25tracker/pt: fix overlayStanislaw Halik
The "fract_bits" constant wasn't used consistently in the 2nd cv::circle invocation. Drop the invocation.
2017-07-25tracker/pt: fix weight formulaStanislaw Halik
2017-07-25compat/math: export logarithmic functionsStanislaw Halik
2017-07-25tracker/pt: reduce pose reuseStanislaw Halik
It could cause microstutter.
2017-07-25tracker/pt: compute blob weightStanislaw Halik
The formula is total brightness over sqrt(radius).
2017-07-24csv: show only existing idStanislaw Halik