Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-29 | proto/{libevdev,wine}: add stub i18n | Stanislaw Halik | |
Was breaking make(1). Issue: #661 | |||
2017-07-29 | compat/check-visible: fix non-win32 build | Stanislaw Halik | |
Issue: #661 Reported-by: @ljgdasfhk | |||
2017-07-28 | options/tie: kill warnings | Stanislaw Halik | |
2017-07-28 | gui: don't update the main window if it's hidden | Stanislaw Halik | |
2017-07-28 | cmake: fix mingw-w64 llvm build | Stanislaw Halik | |
2017-07-28 | proto/freetrack: fix build with mingw-w64 with llvm | Stanislaw Halik | |
2017-07-26 | tracker/pt: scale min/max radius with resolution | Stanislaw Halik | |
For 320x240 frames auto threshold min value of 2.5 was too big. Scale it linearly with frame size. | |||
2017-07-26 | options: organize metatype declarations | Stanislaw Halik | |
2017-07-25 | spline: repaint() is cheaper | Stanislaw Halik | |
2017-07-25 | tracker/pt: fix overlay | Stanislaw Halik | |
The "fract_bits" constant wasn't used consistently in the 2nd cv::circle invocation. Drop the invocation. | |||
2017-07-25 | tracker/pt: fix weight formula | Stanislaw Halik | |
2017-07-25 | compat/math: export logarithmic functions | Stanislaw Halik | |
2017-07-25 | tracker/pt: reduce pose reuse | Stanislaw Halik | |
It could cause microstutter. | |||
2017-07-25 | tracker/pt: compute blob weight | Stanislaw Halik | |
The formula is total brightness over sqrt(radius). | |||
2017-07-24 | csv: show only existing id | Stanislaw Halik | |
2017-07-24 | gui/main: put TerminateProcess call back after app exits | Stanislaw Halik | |
2017-07-24 | Revert "options/metatype: nuke it" | Stanislaw Halik | |
This was making sliders unable to save at all. | |||
2017-07-24 | csv: output game id at right place | Stanislaw Halik | |
2017-07-24 | cmake/msvc: update | Stanislaw Halik | |
2017-07-24 | tracker/steamvr: fix friend decl for GNU | Stanislaw Halik | |
2017-07-24 | tracker/hatire: fix truncation warning only | Stanislaw Halik | |
2017-07-24 | tracker/aruco: fix lto warning | Stanislaw Halik | |
2017-07-24 | options: disable extern template on non-msvc | Stanislaw Halik | |
2017-07-24 | logic/shortcuts: fix signed vs unsigned comparison | Stanislaw Halik | |
2017-07-24 | dinput: less boilerplate | Stanislaw Halik | |
2017-07-24 | csv: add debug info | Stanislaw Halik | |
2017-07-24 | compat/util: fix recursive macro definition | Stanislaw Halik | |
2017-07-24 | cmake: pass /permissive- to MSVC++ 15.3+ | Stanislaw Halik | |
2017-07-23 | proto/freetrack: fix typo | Stanislaw Halik | |
2017-07-23 | gui/main-window: fix ps3 eye LED remaining litopentrack-2.3.8 | Stanislaw Halik | |
2017-07-23 | spline/widget: avoid drawing past the graph's end | Stanislaw Halik | |
2017-07-23 | Made several translation lines | Alexander Orokhovatskiy | |
2017-07-21 | tracker/freepie: cleanup | Stanislaw Halik | |
- indent - use clamp from util.hpp - rename vaguely-named variables | |||
2017-07-21 | tracker/s2bot: fix few bugs | Stanislaw Halik | |
- Received values got converted to integers. I find this hard to believe. Even if this is so, converting to double leaves forward-compatibility if the sender software gets its act together. - There was a buffer overflow when indexing the "indices" array. - Mutex scope bigger than necessary. The code is copy-pasted from the FreePIE tracker. Perhaps if its own code was easier to understand, there wouldn't be any buffer overflows to begin with. | |||
2017-07-21 | tracker/s2bot: reformat to indent as 4 spaces | Stanislaw Halik | |
2017-07-21 | compat/util: rename macro | Stanislaw Halik | |
2017-07-20 | options/tie: add overload with no format string | Stanislaw Halik | |
2017-07-20 | tracker/s2bot: fix stopping tracker | Stanislaw Halik | |
- need use QThread::exit to stop the event loop - QObject::moveToThread works when passed a working thread - stop QTimer in its thread | |||
2017-07-20 | options/metatype: nuke it | Stanislaw Halik | |
The code isn't necessary, and causes uninitialized memory access when playing with QVariant later. | |||
2017-07-20 | pose-widget: fix Qt use-after-free | Stanislaw Halik | |
Due to Qt's implicit sharing, something goes wrong when calling QImage::constBits(). It's likely related to to multithreading. Strangely enough, `constBits()' shouldn't perform a copy of the image according to Qt docs. While here, remove the "offset" defensive coding. Also, use a constant depth as to reduce confusion. | |||
2017-07-20 | tracker/pt: fix build on Linux | Stanislaw Halik | |
GNU expects ODR for `int' constexpr members. | |||
2017-07-20 | gui/main: rework forceful exit | Stanislaw Halik | |
- on MSVC, exit before destroying the window. Qt Creator plays nicer with that. - otherwise, don't perform a forceful exit. it seems unnecessary. I'll play with Valgrind some more to verify this. | |||
2017-07-18 | spline/widget: reduce needless redraws | Stanislaw Halik | |
2017-07-18 | tracker/pt: fix -Werror | Stanislaw Halik | |
2017-07-18 | pose-widget: fix build | Stanislaw Halik | |
2017-07-18 | tracker/s2bot: fix -Werror | Stanislaw Halik | |
2017-07-16 | compat/shm: reorder code | Stanislaw Halik | |
Hopefully prevent getting misdetected by an antivirus. Issue: #654 | |||
2017-07-16 | compat/math-imports: use it | Stanislaw Halik | |
2017-07-16 | tracker/s2bot: add clean i18n files | Stanislaw Halik | |
Related-to: #650 | |||
2017-07-16 | tracker/s2bot: fix qt's lrelease barfing | Stanislaw Halik | |
Files had strings from the FreePIE tracker copied. Related-to: #650 |