Age | Commit message (Collapse) | Author |
|
cf. #746
|
|
Now i18n regen won't make a mess.
|
|
facetracknoir.png -> opentrack.png
|
|
|
|
|
|
|
|
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.
|
|
It's not annoying having to type it anymore. Also
"otr_boilerplate" -> "otr_module".
|
|
Polish speakers typically know English well enough and translations are
awkward.
|
|
|
|
@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>
|
|
|
|
|
|
|
|
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.
|
|
|
|
- adjust usages
- add support for QList signals and metatype
|
|
Adjust usages.
|
|
We can't depend on M_PI existing after including cmath.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
|
Closes #224
|