Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-16 | cmake/i18n: unbreak translations | Stanislaw Halik | |
Issue: #748 | |||
2018-02-16 | tracker/pt: add new string | Stanislaw Halik | |
2018-02-16 | tracker/wii: fix Chinese translation | Stanislaw Halik | |
The file must be in tracker-pt/ since it translates .ui file located there. Issue: #748 | |||
2018-02-16 | tracker/{pt,wii}: simplify api | Stanislaw Halik | |
Remove useless abstract member functions, simplify some. Issue: #718 | |||
2018-02-16 | cmake/i18n: oops, fix lupdate invocation | Stanislaw Halik | |
Some options weren't working, like -silent Issue: #748 | |||
2018-02-16 | api: fix potential logic errors with module init | Stanislaw Halik | |
2018-02-16 | compat/macros: cleanup | Stanislaw Halik | |
Remove cruft, adjust usages. | |||
2018-02-15 | contrib/npclient: simplify C code | Stanislaw Halik | |
- move static variables into block scope if used in only one function - simplify control flow | |||
2018-02-15 | contrib/npclient: change {C,LD}FLAGS | Stanislaw 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-15 | qt.conf: hidpi support snafu | Stanislaw Halik | |
Qt dpiawareness=1 doesn't look like it's messing up after resolution changes. Use it for now. | |||
2018-02-15 | proto/ft: work with npclient logic | Stanislaw Halik | |
DataID can be idempotent. It's "static unsigned frameno" in npclient that's used in place of DataID. | |||
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-14 | filter/accela: revert deadzone test code | Stanislaw Halik | |
Looks strange ingame. | |||
2018-02-14 | opentrack: prevent buggy resize with hidpi | Stanislaw 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-13 | tracker/wii: fix uninitialized memory access | Stanislaw Halik | |
Causes a warning in Visual Studio. Rightly so. | |||
2018-02-13 | cmake/i18n: workaround msbuild dependency breakage | Stanislaw Halik | |
Visual Studio runs "lrelease" targets without their "lupdate" dependencies. Add a crude workaround. Spotted by: @cpuwolf Issue: #748 | |||
2018-02-12 | compat/macros: fix Linux build before anyone notices | Stanislaw Halik | |
2018-02-12 | cmake: remove cotire due to breakages | Stanislaw Halik | |
2018-02-12 | cmake: 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-12 | cmake/i18n: cull unused variable | Stanislaw Halik | |
2018-02-12 | tracker/wii: silence #pragma deprecated | Stanislaw Halik | |
Also downcase win32 api header name. This fixes building for Windows from Linux. | |||
2018-02-12 | compat/macros: fix otr_tr and _ macros | Stanislaw Halik | |
cf. #748 cf. #746 | |||
2018-02-12 | Merge pull request #746 from cpuwolf/ch | Stanisław Halik | |
tracker/wii: add lang chinese && BT optimization | |||
2018-02-12 | tracker/wii: fix conflict for #746 | Stanislaw Halik | |
2018-02-12 | cmake: change my defaults | Stanislaw Halik | |
2018-02-12 | contrib: don't install source code | Stanislaw Halik | |
2018-02-12 | contrib: remove some old stuff | Stanislaw Halik | |
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-12 | proto/simconnect: fix i18n warning | Stanislaw Halik | |
2018-02-12 | cmake/i18n: fix `make i18n' | Stanislaw Halik | |
Also remove disabling i18n regen cf. #746 | |||
2018-02-10 | tracker/wii: optimize BT enumeration time | Wei Shuai | |
2018-02-10 | tracker/wii: add lang chinese | Wei Shuai | |
2018-02-09 | filter/accela: euthanize "smoothing" | Stanislaw Halik | |
It only confuses users. Rename "sensitivity" to "smoothing". Update i18n source as per #743 | |||
2018-02-09 | update translation source files -- #743 | Stanislaw Halik | |
2018-02-09 | tracker/hatire: clamp rotation to (-180)->180 | Stanislaw Halik | |
Some devices have numeric stability problems. | |||
2018-02-09 | tracker/wii: fix lang pack on NL and RU | Wei Shuai | |
2018-02-09 | tracker/wii: wiiyourself bug: no where to release write thread handle | Wei Shuai | |
2018-02-09 | Merge pull request #743 from MathijsG/patch-8 | Stanisław Halik | |
Update nl_NL.ts | |||
2018-02-08 | Update nl_NL.ts | Mathijs Groothuis | |
Updated some incorrect words and Russian pieces in the file. | |||
2018-02-08 | tracker/wii: update preview window images for user guide | Wei Shuai | |
2018-02-08 | Merge pull request #742 from cpuwolf/autopair4 | Wei Shuai | |
tracker/wii: add WIImote auto-pair function | |||
2018-02-08 | tracker/wii: enhance friendly UI | Wei Shuai | |
1. add new status wii_cam_wait_for_dongle 2. show "insert USB dongle" in preview window | |||
2018-02-08 | tracker/wii: add UI image | Wei Shuai | |
insert Bluetooth USB dongle into your PC | |||
2018-02-08 | tracker/wii: sync and connect | Wei Shuai | |
remove useless disconnect function | |||
2018-02-07 | tracker/wii: optimize auto BT pair | Wei Shuai | |
1. reconnect wiiyourself 2. reduce wiimote power by reduce LEDs | |||
2018-02-07 | tracker/wii: enhance user friendly UI | Wei Shuai | |
1. add wii status wii_cam_wait_for_sync 2. add images show how user should do in preview window 3. reduce redundancy convertion about QImage by doing in WIIPreview Class | |||
2018-02-06 | tracker/wii: bluetooth auto pair speed optimization | Wei Shuai | |
2018-02-06 | traker/wii: add wiimote auto pair with Windows Bluetooth Stack | Wei Shuai | |
2018-02-05 | cv/calibrator: use constexpr inline | Stanislaw Halik | |