summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-09-09gui/main-window: only tie and connect options after migration is doneStanislaw Halik
Otherwise tied version overwrites given migration before it's run.
2016-09-09migration: type aliases confuse IDE so let's notStanislaw Halik
2016-09-09migration: new - move to module sectionStanislaw Halik
2016-09-09migration: reword individual namesStanislaw Halik
2016-09-09migrations: rename for 2-digit serialStanislaw Halik
2016-09-09proto/mouse: remove wrong commentStanislaw Halik
2016-09-09migration: try prevent developer naming migrations badlyStanislaw Halik
2016-09-09tracker/rifts: show descriptive error messages, if anyStanislaw Halik
2016-09-09migration: add axis sign migration from rc10Stanislaw Halik
2016-09-09gui: fix after 77cf67d61c8f6ae7ec00fd069b0e6586927069a3Stanislaw Halik
2016-09-09api/is-window-visible: fix warn on non-win32Stanislaw Halik
2016-09-09migration: prevent string printed with double-quotes in qDebug()Stanislaw Halik
2016-09-09options/{bundle,group}: don't create QSettings all the timeStanislaw Halik
2016-09-09migration: less logspamStanislaw Halik
2016-09-09spline-widget: simplify alpha calculationStanislaw Halik
2016-09-09migrations: add stub for mapping/settings separationStanislaw Halik
2016-09-09add migration from mappings <= rc11Stanislaw Halik
2016-09-09add support for migrationsStanislaw Halik
They're run from the UI thread so can even be interactive.
2016-09-09spline-widget: emit vtable in a single unitStanislaw Halik
2016-09-09options/bundle: whitespace onlyStanislaw Halik
2016-09-09spline-widget: fix uninitialized accessStanislaw Halik
Found-by: valgrind
2016-09-09gui: fix default tabStanislaw Halik
2016-09-09options/bundle: lessen logspamStanislaw Halik
2016-09-08gui/main: terminate before main ends on msvcStanislaw Halik
2016-09-08compat: remove empty sourcesStanislaw Halik
2016-09-08options/value: move from headerStanislaw Halik
2016-09-08Merge pull request #448 from DaMichel/less-intrusive-logging-guiStanisław Halik
tracklogging: begone file selector gui
2016-09-08tracklogging: begone file selector gui. Now a file select dialog will pop up ↵DaMichel
when the tracker starts.
2016-09-06cmake: oops, fix version in headerStanislaw Halik
2016-09-06logic/shortcuts: fix "held" not initialized for joysticksStanislaw Halik
Reported-by: @Sone989 Issue: #440
2016-09-06tracker/pt: lessen logspamStanislaw Halik
2016-09-06cmake/msvc: change flags in toolchain fileStanislaw Halik
- Always disable some useless warnings - Disable exception support fully now - Use /Gm for minimal rebuilds - Use /Gw for data section lto - Use exactly c++14 - Use incremental LTO
2016-09-06cmake: don't link against highguiStanislaw Halik
It can be linked against qt4 leading to runtime crash.
2016-09-06gui/main-window: cleanupStanislaw Halik
2016-09-06gui, logic: add shortcut for "translation compensation off while held"Stanislaw Halik
Requested-by: @Sone989 Issue: #440
2016-09-06{dinput,logic,..}: cleanupStanislaw Halik
2016-09-06Merge pull request #443 from DaMichel/kf-parameter-tuningStanisław Halik
filter-kalman parameter tuning
2016-09-06filter-kalman: (parameter tuning) decreased adaption time scale; increased ↵DaMichel
deadzone size
2016-09-06Merge pull request #442 from DaMichel/unstableStanisław Halik
Build issue on MSVC
2016-09-06cmake: checking for some env var is not the way to validate the proper build ↵DaMichel
environment
2016-09-05options/slider: adjust eps, simplifyStanislaw Halik
2016-09-05gui/{main,mappings}: fix tab stopsStanislaw Halik
2016-09-05tracker/{aruco,pt}: remove camera settings buttonStanislaw Halik
It's broken and users complain on the issue tracker. Also fix tab stops.
2016-09-05spline-widget: oops, fix tooltip before clicking on widgetStanislaw Halik
2016-09-05spline-widget: stop dragging when alt-tabbing awayStanislaw Halik
Unfortunately now spline widgets grab keyboard focus. Qt doesn't seem to have a better way to detect whether some other application gained focus.
2016-09-05cmake: switch back to c++14Stanislaw Halik
Lambdas with explicit return values are fun.
2016-09-05gui/mappings: set smaller snap for XYZ splinesStanislaw Halik
Reported-by: @olegiy Issue: #436
2016-09-05spline-widget: add tooltips, refactorStanislaw Halik
Tooltip shows current cursor/point position. Factor out common functions. Use QPoint/QPointF appropriately. Remove rounding that led to snapping to integral values. Allow for non-integral snapping amounts. Issue: #436
2016-09-05spline-widget: fix rounding for short splinesStanislaw Halik
This was especially visible with XYZ spline widgets.
2016-09-05spline-widget: add point count getterStanislaw Halik