summaryrefslogtreecommitdiffhomepage
path: root/tracker-hydra
AgeCommit message (Collapse)Author
2022-04-19fix i18n generationStanislaw Halik
2020-03-07cmake: make install prefix path variables more clearStanislaw Halik
Pointed out by: @rvt
2019-01-16tracker/hydra: fix scary logic errorStanislaw Halik
The sixense library checks for the `WIN32` (no underscore). Define that macro in case `_WIN32` is defined.
2018-12-26cruftStanislaw Halik
2018-12-19modules: build on Intel arch onlyStanislaw Halik
2018-10-25cleanups onlyStanislaw Halik
2018-07-08modernize onlyStanislaw Halik
2018-04-05modules: now use i18nStanislaw 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-01-20rename our Qt .png iconStanislaw Halik
facetracknoir.png -> opentrack.png
2017-12-04api: add status check for modulesStanislaw Halik
2017-10-29static constexpr -> constexprStanislaw Halik
2017-08-14cmake: drop executable bit from installed normal filesStanislaw Halik
2017-06-18get rid of "volatile" abuseStanislaw Halik
We heavily used "volatile bool" to check if the thread loop should stop. But this functionality is already provided by Qt5's QThread::requestInterruption. In other cases, "volatile" is wonderfully underspecified so it's better to ditch its usage in favor of std::atomic<t>. At the time we don't appear to be using the "volatile" keyword except when calling win32's Interlocked*() family of functions as necessary. In freetrackclient's header the "volatile" qualifier was used as part of a typedef. This doesn't work. Use it as part of data declaration.
2017-03-27cmake: rename project's function prefixStanislaw Halik
It's not annoying having to type it anymore. Also "otr_boilerplate" -> "otr_module".
2017-02-27remove unfinished polish translation filesStanislaw Halik
Polish speakers typically know English well enough and translations are awkward.
2017-02-21modules: add .ts filesStanislaw Halik
2016-11-29tracker/{hydra,rift-{025,042,080,140}}: license the codeStanislaw Halik
@mm0zct granted permission as per: Return-Path: <mm0zct@gmail.com> Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by nilaya.lain.pl (Postfix) with ESMTPS id EA0663FEB9 for <sthalik@misaki.pl>; Fri, 18 Nov 2016 19:35:16 +0100 (CET) Message-ID: <CALeTJ=dHprFe_SepvYR7ioc+wdR4zr9gJibt3rujQw8DuasKxA@mail.gmail.com> From: chris thompson <mm0zct@gmail.com> Subject: Re: small rift copyright issue To: Stanislaw Halik <sthalik@misaki.pl> [...] his email hereby grants you permission to re-license that code however suits you best. [...] Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
2016-11-05delete empty .tsStanislaw Halik
2016-11-04modules: make names uniqueStanislaw Halik
2016-11-04modules: add autogenerated translation filesStanislaw Halik
2016-09-21many: remove compat/pi-constant.hppStanislaw Halik
With -D_USE_MATH_DEFINES MSVC defines the standard M_PI and friends. Since this preprocessor definition is now always passed as part of the build system for MSVC. We can use M_PI as if on a mission.
2016-08-23add missing #pragma onceStanislaw Halik
2016-08-17move options framework into its own libraryStanislaw Halik
- adjust usages - add support for QList signals and metatype
2016-08-12all: rename modules s#^opentrack-##. and opentrack -> apiStanislaw Halik
Adjust usages.
2016-07-19some: replace hardcoded pi values with the same pi constantStanislaw Halik
We can't depend on M_PI existing after including cmath.
2016-07-18some: adjust install paths and invocationsStanislaw Halik
2016-07-07cmake: check word sizeStanislaw Halik
2016-07-06tracker/hydra: fix another typoStanislaw Halik
2016-07-06tracker/hydra: fix typo (osx)Stanislaw Halik
2016-07-06hydra: fix cmake brainoStanislaw Halik
2016-07-06cmake/hydra: try fix osx sixense linkStanislaw Halik
2016-06-09tracker/hydra: fix float/double promotionsStanislaw Halik
2016-05-26many modules: trivial cleanups onlyStanislaw Halik
- Remove "this->" where it's not needed. Possibly rename shadowed vars. - Don't reload the options bundle manually since `options::opts' exists for that very reason. - Remove '^ \+$' whitespace - :retab
2015-11-01all: adjust options.hpp move to compatStanislaw Halik
2015-10-30cmake: cleanup hydraStanislaw Halik
2015-10-30move to subdirectory-based build systemStanislaw Halik
Closes #224