summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2018-02-17variant/default: fix close button with trayStanislaw Halik
Using the close button must exit the program regardless of whether the tray is enabled. Restore that behavior. Reported-by: @albertolg Issue: #750
2018-02-16opentrack: fix ru_RU after move to variant/defaultStanislaw Halik
2018-02-16contrib/npclient: fix sizeof usageStanislaw Halik
2018-02-16gui/init: fix translations even harderStanislaw Halik
Issue: #748
2018-02-16logic/pipeline: simplifyStanislaw Halik
The pipeline code is hard to understand for programmers due to the practice of putting all logic into a single function. Split it up into logical components. This needs more testing and bug reports. It's a big change with possibly many regressions all over the place. Issue: #688
2018-02-16Merge branch 'unstable' of https://github.com/opentrack/opentrack into unstablemrsanchos
2018-02-16Add new translation stringsmrsanchos
2018-02-16gui/init: shorten to `OTR_FORCE_LANG'opentrack-2.3.49-pipeline-fix-backupStanislaw Halik
2018-02-16proto/ft: fix idempotent dataid for freetrackclientStanislaw Halik
It can cause problems for `freetrackclient.dll' consumers. This fix is better than modulo rand().
2018-02-16gui/init: allow forcing locale via envStanislaw Halik
Issue: #748
2018-02-16gui: attach parent console harderStanislaw Halik
2018-02-16cmake/i18n: unbreak translationsStanislaw Halik
Issue: #748
2018-02-16tracker/pt: add new stringStanislaw Halik
2018-02-16tracker/wii: fix Chinese translationStanislaw Halik
The file must be in tracker-pt/ since it translates .ui file located there. Issue: #748
2018-02-16tracker/{pt,wii}: simplify apiStanislaw Halik
Remove useless abstract member functions, simplify some. Issue: #718
2018-02-16cmake/i18n: oops, fix lupdate invocationStanislaw Halik
Some options weren't working, like -silent Issue: #748
2018-02-16api: fix potential logic errors with module initStanislaw Halik
2018-02-16compat/macros: cleanupStanislaw Halik
Remove cruft, adjust usages.
2018-02-15contrib/npclient: simplify C codeStanislaw Halik
- move static variables into block scope if used in only one function - simplify control flow
2018-02-15contrib/npclient: change {C,LD}FLAGSStanislaw Halik
- reproducible builds; -Wl,--no-insert-timestamp - add HIGHENTROPYVA for 64-bit builds Reducing code size is a pointless exercise, still: - remove .eh_frame that only GNU uses - reduce 32-bit code size; -march=pentium4 - add few feel-good CFLAGS. maybe reduces code size, maybe doesn't do anything
2018-02-15qt.conf: hidpi support snafuStanislaw Halik
Qt dpiawareness=1 doesn't look like it's messing up after resolution changes. Use it for now.
2018-02-15proto/ft: work with npclient logicStanislaw Halik
DataID can be idempotent. It's "static unsigned frameno" in npclient that's used in place of DataID.
2018-02-15clean up "static" and "constexpr" typesStanislaw 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-14filter/accela: revert deadzone test codeStanislaw Halik
Looks strange ingame.
2018-02-14opentrack: prevent buggy resize with hidpiStanislaw Halik
This can be reproduced with hidpi, playing Falcon BMS in a resolution lower than the desktop resolution. The windows got resized to way more than as if they were maximized. This is a workaround, from the Qt API perspective it doesn't make sense.
2018-02-13tracker/wii: fix uninitialized memory accessStanislaw Halik
Causes a warning in Visual Studio. Rightly so.
2018-02-13cmake/i18n: workaround msbuild dependency breakageStanislaw Halik
Visual Studio runs "lrelease" targets without their "lupdate" dependencies. Add a crude workaround. Spotted by: @cpuwolf Issue: #748
2018-02-12compat/macros: fix Linux build before anyone noticesStanislaw Halik
2018-02-12cmake: remove cotire due to breakagesStanislaw Halik
2018-02-12cmake: remove otr_prop()Stanislaw Halik
It's too complex to be understood when written in CMake. Replace with explicit calls to set_property(). This hasn't been tested on OSX.
2018-02-12cmake/i18n: cull unused variableStanislaw Halik
2018-02-12tracker/wii: silence #pragma deprecatedStanislaw Halik
Also downcase win32 api header name. This fixes building for Windows from Linux.
2018-02-12compat/macros: fix otr_tr and _ macrosStanislaw Halik
cf. #748 cf. #746
2018-02-12Merge pull request #746 from cpuwolf/chStanisław Halik
tracker/wii: add lang chinese && BT optimization
2018-02-12tracker/wii: fix conflict for #746Stanislaw Halik
2018-02-12cmake: change my defaultsStanislaw Halik
2018-02-12contrib: don't install source codeStanislaw Halik
2018-02-12contrib: remove some old stuffStanislaw Halik
2018-02-12cmake: add zh_CNStanislaw Halik
cf. #746
2018-02-12modules: stop saving line informationStanislaw Halik
Now i18n regen won't make a mess.
2018-02-12proto/simconnect: fix i18n warningStanislaw Halik
2018-02-12cmake/i18n: fix `make i18n'Stanislaw Halik
Also remove disabling i18n regen cf. #746
2018-02-10tracker/wii: optimize BT enumeration timeWei Shuai
2018-02-10tracker/wii: add lang chineseWei Shuai
2018-02-09filter/accela: euthanize "smoothing"Stanislaw Halik
It only confuses users. Rename "sensitivity" to "smoothing". Update i18n source as per #743
2018-02-09update translation source files -- #743Stanislaw Halik
2018-02-09tracker/hatire: clamp rotation to (-180)->180Stanislaw Halik
Some devices have numeric stability problems.
2018-02-09tracker/wii: fix lang pack on NL and RUWei Shuai
2018-02-09tracker/wii: wiiyourself bug: no where to release write thread handleWei Shuai
2018-02-09Merge pull request #743 from MathijsG/patch-8Stanisław Halik
Update nl_NL.ts