summaryrefslogtreecommitdiffhomepage
path: root/options
AgeCommit message (Collapse)Author
2020-01-17options: fix buildStanislaw Halik
2020-01-17try to fix build for qt 5.13Stanislaw Halik
2020-01-16compat/qhash: try fix older QtStanislaw Halik
2019-12-29Merge branch 'unstable' of https://github.com/opentrack/opentrack into ↵Ries van Twisk
osx-build-fix
2019-12-29fix std::hash<QString>Stanislaw Halik
Fixes #1015
2019-11-30OSX Build fixesR. van twisk
2019-10-30options: use ~/.config on UnixStanislaw Halik
Fixes #807
2019-10-27fix clang warningsStanislaw Halik
2019-07-05options: fix global ini not saving on LinuxStanislaw Halik
2019-06-20options: fix GCC linkage warningStanislaw Halik
2019-05-04options: remove stale commentStanislaw Halik
2019-04-28Merge pull request #937 from opentrack/easy-tracker-more-modelsStanislaw Halik
Easy tracker more models
2019-04-28Easy Tracker: UI rework for custom model with three, four or five vertices.Stéphane Lenclud
More settings can be changed live without have to restart the tracker. Fixing a few deadlock issues.
2019-04-24options/value: kill copy ctorStanislaw Halik
2019-04-24options: add missing value::is_null() checksStanislaw Halik
2019-03-28actually expand __COUNTER__Stanislaw Halik
2019-03-02options: ensure ini_directory is never emptyStanislaw Halik
2019-03-02options: consistently use rvalue referencesStanislaw Halik
2019-03-01options/metatype: mark static as unusedStanislaw Halik
2019-02-28options/slider: simplify, sprinkle constexprStanislaw Halik
2019-02-28options/metatype: simplify definitionStanislaw Halik
2019-02-21do less global memory fences in atomicsStanislaw Halik
2019-02-11less header namespace pollutionStanislaw Halik
2019-02-11compat/macros: remove prefixStanislaw Halik
Let's not be concerned about global namespace pollution. These identifiers aren't exposed in the api/ directory.
2019-02-09options/base-value: remove stale commentStanislaw Halik
2019-02-09options, opentrack: fix migrations with tie_settingStanislaw Halik
Migrations only ran after `tie_setting()' handlers were done, clobbering the settings that were about to be migrated. Applying QSignalBlocker to few comboboxes isn't enough as it affects everything touched by `tie_setting()'. Split reload and notify phases in the options system.
2019-02-09options: sprinkle some QStringLiteralStanislaw Halik
2019-02-09use consistent naming for `profile'Stanislaw Halik
2019-02-02options/globals: always return same document directoryStanislaw Halik
2019-01-16options/value: disallow const, volatile, and reference typesStanislaw Halik
2019-01-16options/slider: fix temporary constnessStanislaw Halik
2019-01-16options/value: add move assignment operatorsStanislaw Halik
2019-01-16spline: fix deadlock, logic errorStanislaw Halik
Tracking rarely deadlocked when saving mappings. Investigating it further also shown how a wrong bundle was used for Accela's splines.
2019-01-16cruft onlyStanislaw Halik
2019-01-16modernize onlyStanislaw Halik
- replace `static constexpr inline' with `static constexpr'. `inline' is implied. - use braced initializer lists where applicable - still missing `override' usages
2019-01-16cruft onlyStanislaw Halik
2019-01-16cruftStanislaw Halik
2019-01-16options/value: don't mark noinline so muchStanislaw Halik
Let's trust the compiler a bit shall we?
2019-01-16options/{value,connector}: workaround friend declarationStanislaw Halik
2019-01-16clang-tidy fixes onlyStanislaw Halik
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever.
2018-12-24style/quality onlyStanislaw Halik
No functional changes. - add `override' everywhere where missing - almost pass clang's `-Wweak-vtables' - avoid some float/double conversions - remove unused private members - make signedness conversions explicit - put stuff in right namespaces to aid analysis
2018-12-24remove const correctness violationsStanislaw Halik
This is possibly related to a livelock where several threads do const removal in their respective code paths. Use the `mutable' specifier for the mutexes and spline's cached data. Now using the `mutable' specifier, get rid of <optional> in compat/mutex.
2018-10-25options/bundle: fix signals not firingStanislaw Halik
The check for ini modified happens after ini modified flag is already cleared. Was breaking spline.
2018-10-25options/value: remove pointless conditionalStanislaw Halik
std::decay doesn't have enum-specific behavior.
2018-10-25options/value-traits: fix bool storageStanislaw Halik
Using int as `stored_type' for bool made Qt signals not work. Evident when ticking the "asymmetric mapping" checkboxes in the mapping window. Remove some std::decay_t usage, there's no need for either decay or remove_cvref. In `value<t>::get()', `bundle::get_variant' of an undefined key will fall back to `return def' so remove the duplicate logic.
2018-10-25cleanups onlyStanislaw Halik
2018-10-07fix GCC build errorsStanislaw Halik
Issue: #726
2018-10-05options: don't use typeindex w/ lambdasStanislaw Halik
Rename traits' functions to be more explicit. Most of the changes are pretty old and I can't read them at this time, sorry. Adjust usages. Issue: #825 Reported-by: @DanielKinsman
2018-10-05use attributes only at declaration, not definitionStanislaw Halik
2018-08-27compat/linkage-macros: simplifyStanislaw Halik