Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-14 | gui/correlation-calibrator: fix i18n for real this time | Stanislaw Halik | |
2018-03-14 | gui/correlation-calibrator: fix i18n | Stanislaw Halik | |
2018-03-12 | gui/i18n: update | Stanislaw Halik | |
2018-03-10 | gui/correlation-calibrator: add stub widget | Stanislaw Halik | |
2018-02-27 | add Chinese Lang | Wei Shuai | |
2018-02-16 | gui/init: fix translations even harder | Stanislaw Halik | |
Issue: #748 | |||
2018-02-16 | Merge branch 'unstable' of https://github.com/opentrack/opentrack into unstable | mrsanchos | |
2018-02-16 | Add new translation strings | mrsanchos | |
2018-02-16 | gui/init: shorten to `OTR_FORCE_LANG'opentrack-2.3.49-pipeline-fix-backup | Stanislaw Halik | |
2018-02-16 | gui/init: allow forcing locale via env | Stanislaw Halik | |
Issue: #748 | |||
2018-02-16 | gui: attach parent console harder | Stanislaw Halik | |
2018-02-15 | clean up "static" and "constexpr" types | Stanislaw Halik | |
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates. | |||
2018-02-12 | cmake: add zh_CN | Stanislaw Halik | |
cf. #746 | |||
2018-02-12 | modules: stop saving line information | Stanislaw Halik | |
Now i18n regen won't make a mess. | |||
2018-02-09 | update translation source files -- #743 | Stanislaw Halik | |
2018-02-08 | Update nl_NL.ts | Mathijs Groothuis | |
Updated some incorrect words and Russian pieces in the file. | |||
2018-01-26 | gui: add missing header | Stanislaw Halik | |
2018-01-20 | rename our Qt .png icon | Stanislaw Halik | |
facetracknoir.png -> opentrack.png | |||
2018-01-18 | logic: change relative translation triggering | Stanislaw Halik | |
Relative translation mode now has three states: - disabled - always enabled - enabled when not aiming In the third mode, looking very close to center disables reltrans. The exact values aren't final. | |||
2018-01-18 | compat/util: retire | Stanislaw Halik | |
Adjust usages. | |||
2018-01-17 | gui/init: remove logspam | Stanislaw Halik | |
2018-01-17 | fix build (4) | Stanislaw Halik | |
Issue: #721 | |||
2018-01-17 | fix build (3) | Stanislaw Halik | |
2018-01-17 | gui/settings: fix variant build | Stanislaw Halik | |
2018-01-16 | cleanup | Stanislaw Halik | |
2018-01-16 | gui, variant/default: move default UI | Stanislaw Halik | |
2018-01-16 | gui: fix paths prior to moving into variant/default | Stanislaw Halik | |
2018-01-16 | gui: don't export the main window | Stanislaw Halik | |
2018-01-16 | gui/main-window: sysexists(3) isn't appropriate | Stanislaw Halik | |
2018-01-16 | gui/main-window: fix more build errors on non-win32 | Stanislaw Halik | |
Issue: #721 | |||
2018-01-16 | add missing copyright statement | Stanislaw Halik | |
2018-01-16 | logic, spline: get rid of using namespace in header | Stanislaw Halik | |
2018-01-16 | gui/main-window: reformat max right column | Stanislaw Halik | |
2018-01-14 | gui/main-window: don't crash with no tray | Stanislaw Halik | |
2018-01-14 | gui/keyboard: fix Linux/OSX build | Stanislaw Halik | |
Class renaming broke this. Reported: https://github.com/opentrack/opentrack/issues/721#issuecomment-357457084 | |||
2018-01-14 | gui: fix tray | Stanislaw Halik | |
2018-01-14 | gui/spline: change horizontal/vertical guide count | Stanislaw Halik | |
The amount depends on the max value on X/Y scales. | |||
2018-01-13 | gui/spline: reduce spline widget snap to grid | Stanislaw Halik | |
Issue: #722 | |||
2018-01-13 | cmake, main: work toward introducing alternative UI | Stanislaw Halik | |
We're going to base opentrack derivatives on the same branch. Previously merges were a living hell. Modularizing the UI code and having continuously-built executables will do a lot. First opentrack variant in progress is a TrackHat device for mouse and scrolling control for people with spine and hand/arm disabilities. | |||
2018-01-12 | main: fix build | Stanislaw Halik | |
2018-01-11 | cmake, gui, main: make user interface reusable | Stanislaw Halik | |
The work isn't complete. We need moving out all non-reusable parts away and only keeping user interface logic in a class. | |||
2018-01-10 | many: get rid of trailing type specifiers | Stanislaw Halik | |
2018-01-10 | gui/main: disable denormals on win32 | Stanislaw Halik | |
2018-01-04 | main: workaround crash on exit without terminating process | Stanislaw Halik | |
2018-01-04 | gui: move checkbox to top | Stanislaw Halik | |
Users don't see it. | |||
2018-01-03 | gui/settings: allow reltrans position only | Stanislaw Halik | |
Works also for "dynamic neck". Meant to ignore tracker position output but allow reltrans to output. | |||
2018-01-03 | gui/process-detector: change separator characters | Stanislaw Halik | |
Prevent common characters from breaking the saved list. Use unprintable characters. Add migration. | |||
2017-12-18 | cmake: const correctness | Stanislaw Halik | |
2017-12-10 | gui: fix spline snap value harder | Stanislaw Halik | |
Was checking wrong variable. Issue: #707 | |||
2017-12-10 | gui: fix setting spline snap value | Stanislaw Halik | |
value<t>::valueChanged didn't fire on exact same value anymore. |