Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-31 | proto/freetrack: game data update | Stanislaw Halik | |
2016-08-31 | tracker/rs: revert accidental reformat in 9040b187 | Stanislaw Halik | |
2016-08-31 | dinput: allow immediate button "unhold" | Stanislaw Halik | |
Reported-by: @MathijsG Issue: #434 | |||
2016-08-29 | add eigen license, and make sure we're not using any GPL bits whatsoever | Stanislaw Halik | |
2016-08-29 | tracker/rs: don't export from a static library | Stanislaw Halik | |
Actually generates symbols. | |||
2016-08-29 | cmake/msvc: /EHscr generates epilogues, do /EHsc for no checking | Stanislaw Halik | |
2016-08-29 | cmake/msvc: add useful debug flags | Stanislaw Halik | |
2016-08-29 | cmake/msvc: only add -Werror= when building opentrack | Stanislaw Halik | |
2016-08-28 | Update README.md | Stanisław Halik | |
2016-08-28 | Update README.md | Stanisław Halik | |
2016-08-28 | Update README.md | Stanisław Halik | |
2016-08-28 | tracker/rs: connect rs_impl to build | Stanislaw Halik | |
Pinging @ph0b. | |||
2016-08-28 | tracker/pt: merge 2 variables used exactly the same way | Stanislaw Halik | |
2016-08-28 | tracker/aruco: shutup MSVC /W3 warns in aruco include files | Stanislaw Halik | |
2016-08-28 | gui/main: fix MSVC crash on exit | Stanislaw Halik | |
Qt loads plugins from its install prefix and after main() exits it unloads qgif which has a crash. So disable the Qt install prefix plugins and only use our own directory's contents. | |||
2016-08-28 | fixup! cmake/msvc: add warning flag logic to toolchain def | Stanislaw Halik | |
2016-08-28 | gui/cmake: be less verbose | Stanislaw Halik | |
2016-08-28 | dinput: shutup MSVC warning | Stanislaw Halik | |
2016-08-28 | cmake/msvc: add warning flag logic to toolchain def | Stanislaw Halik | |
2016-08-28 | cmake: boilerplate stuff | Stanislaw Halik | |
- add SOURCES param for extra sources - NO-QT will skip moc invocation entirely | |||
2016-08-26 | fix linux build: missing symbol N_POINTS | DaMichel | |
2016-08-25 | options/value: remove outdated comment | Stanislaw Halik | |
2016-08-25 | options/value: always use Qt::AutoConnection | Stanislaw Halik | |
QSlider and value<t> messed up the value in a feedback loop. Incidentally, for our use cases QSlider and value<t> are on the same thread and they'll connect directly. Issue: #427 Reported-by: @DaMichel | |||
2016-08-25 | options: use non-generic comparison for bundle modification check | Stanislaw Halik | |
The generic QVariant comparison works badly for QList<QPointF>. Create a comparator between two QVariants for base_value in value<tp> ctor, using QVariant::value<tp> which returns right results once it's converted to tp. If a value was registered for a name in a bundle, use that comparator as the comparator for that name. In case conflicting value types were registered always use generic comparison for that name. std::type_index needs to be used here since value<t> can be instantiated in different modules (libraries), resulting in different value for the comparator function pointer. Move group::operator== to bundle type to avoid circular include for connector.h. Also use element_type more consistently in value<tp>. | |||
2016-08-25 | tracker/rs: disable nodefaultlib. we're using /MT globally now for msvc. | Stanislaw Halik | |
2016-08-25 | gui: add fixups for qt5 .dll's in msvc build | Stanislaw Halik | |
2016-08-25 | cmake/msvc: disable /MP, we're using jom | Stanislaw Halik | |
2016-08-24 | tracker/rs: fix MSVC link warning | Stanislaw Halik | |
2016-08-24 | gui: fix install location on win32 | Stanislaw Halik | |
2016-08-24 | remove make-tar, unused | Stanislaw Halik | |
2016-08-23 | cmake/msvc: typo | Stanislaw Halik | |
2016-08-23 | cmake: remove debug code | Stanislaw Halik | |
2016-08-23 | gui/main: fix link error on msvc++ | Stanislaw Halik | |
2016-08-23 | logic/tracker: minor nonsense | Stanislaw Halik | |
2016-08-23 | tracker/udp: minor fixes | Stanislaw Halik | |
- use clamp util function - only sleep until the next datagram arrives - check data for NaN before accepting | |||
2016-08-23 | compat/util: move typical "clamp" function here | Stanislaw Halik | |
2016-08-23 | cmake/mingw-w64: adjust path for my convenience only | Stanislaw Halik | |
2016-08-23 | gui/main-window: fix build on some Debian Qt5 | Stanislaw Halik | |
2016-08-23 | x-plane-plugin: fix build | Stanislaw Halik | |
2016-08-23 | dinput: lessen logspam | Stanislaw Halik | |
2016-08-23 | cmake: don't try to editbin static libraries. avoid warning. | Stanislaw Halik | |
2016-08-23 | cmake/msvc: prevent warning when passing shared flags to static libs | Stanislaw Halik | |
2016-08-23 | cmake: refactor boilerplate for projects | Stanislaw Halik | |
Don't rely on a macro that shouldn't be necessary. The information "opentrack_boilerplate" retrieves is now factored out to be easily available to projects themselves. opentrack_boilerplate can now also build executables. When appropriate, target properties are now concatenated rather than replaced. | |||
2016-08-23 | cmake/mingw-w64: switch to -std=c11 for pure C mode | Stanislaw Halik | |
2016-08-23 | forced commit to note include fix credit | Stanislaw Halik | |
Found by: generating precompiled header with the "cotire" cmake library. The plugin can be found at <https://github.com/sakra/cotire> It didn't work due to GNU toolchain bug anyway. | |||
2016-08-23 | cmake: don't force stuff for msvc link | Stanislaw Halik | |
2016-08-23 | cmake: go back to c++11 | Stanislaw Halik | |
We don't use c++14 features yet, and GNU 5.3.0 has missing make_unique anyway. | |||
2016-08-23 | add missing #pragma once | Stanislaw Halik | |
2016-08-23 | gui/process-detector: fix circular include | Stanislaw Halik | |
2016-08-23 | filter/accela: fix MSVC ODR bug | Stanislaw Halik | |