Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-08 | Make learned MIDI bindings channel specific | Loki Davison | 2 | -7/+38 | |
2022-08-18 | Fix whitespace | David Robillard | 1 | -2/+1 | |
2022-08-18 | Clean up special member functions | David Robillard | 2 | -2/+0 | |
2022-08-18 | Avoid using "static inline" for functions in headers | David Robillard | 1 | -3/+3 | |
2022-08-18 | Use "static inline" consistently over "inline static" | David Robillard | 2 | -2/+2 | |
2022-08-18 | Remove redundant "inline" specifiers | David Robillard | 17 | -96/+100 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 32 | -67/+70 | |
2022-08-18 | Use consistent brace wrapping for namespaces | David Robillard | 14 | -14/+42 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 19 | -23/+42 | |
2022-08-18 | Use consistent brace wrapping for struct definitions | David Robillard | 6 | -12/+6 | |
2022-08-18 | Fix overly long line comments | David Robillard | 4 | -7/+7 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 18 | -33/+33 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 27 | -75/+39 | |
2022-08-18 | Fix include order | David Robillard | 11 | -11/+21 | |
2022-08-18 | Clean up path construction | David Robillard | 4 | -7/+6 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 55 | -268/+449 | |
2022-08-18 | Use default member initialization | David Robillard | 104 | -473/+256 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 11 | -16/+28 | |
2022-08-18 | Fix control binding value computation | David Robillard | 3 | -7/+8 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 30 | -171/+152 | |
2022-08-18 | Switch to meson build system | David Robillard | 22 | -329/+661 | |
2022-08-18 | Clean up includes | David Robillard | 8 | -4/+13 | |
2022-08-18 | Separate export macro definitions between modules | David Robillard | 16 | -26/+57 | |
2022-08-18 | Fix clang-tidy header filter regex | David Robillard | 2 | -2/+2 | |
2022-08-18 | Clean up includes | David Robillard | 18 | -25/+12 | |
2022-08-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 2 | -0/+30 | |
2022-08-17 | Improve log output | David Robillard | 1 | -1/+3 | |
2022-05-27 | Fix build on systems without SSE | David Robillard | 1 | -1/+1 | |
2021-06-04 | Switch to C++14 and fix build with GCC 10 | David Robillard | 9 | -169/+257 | |
GCC was having problems with this make_unique overload, but I don't care about C++11 compatibility at this point anyway, so it's easiest to just remove it. | |||||
2021-04-01 | Fix deleting connected ports in subgraphs | David Robillard | 2 | -1/+13 | |
2021-04-01 | Factor out finding adjacent arcs for disconnection | David Robillard | 2 | -22/+32 | |
2021-04-01 | Fix invalid URI mapping when a property range is a blank node | David Robillard | 1 | -1/+3 | |
2021-03-15 | Fix clashing blank nodes with MIDI bindings | David Robillard | 1 | -1/+1 | |
This uses a different namespace for arc blank node IDs, which avoids clashes with MIDI bindings which are written with IDs like "b1", "b2", and so on. This is a symptom of a deeper issue where blank node generation isn't coordinated properly, but this fix avoids the problem for now and is nice anyway since it makes the role of blank nodes clearer when debugging. | |||||
2021-01-02 | Pass by value and use std::move | David Robillard | 8 | -17/+15 | |
2021-01-02 | Update for latest raul | David Robillard | 111 | -490/+502 | |
2020-12-15 | Use separate clang-tidy configurations for server and GUI | David Robillard | 2 | -0/+124 | |
2020-12-15 | Clean up includes in gui | David Robillard | 61 | -237/+900 | |
2020-12-15 | Fix include guard | David Robillard | 1 | -3/+3 | |
2020-12-15 | Clean up includes in client library | David Robillard | 8 | -10/+55 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 67 | -73/+267 | |
2020-12-14 | Enable clang-analyzer-webkit.NoUncountedMemberChecker | David Robillard | 1 | -2/+5 | |
2020-12-14 | Use emplace_back() | David Robillard | 1 | -2/+2 | |
2020-12-14 | Fix unnecessary parameter copying overhead | David Robillard | 28 | -140/+163 | |
2020-12-14 | Don't check for null before deleting pointer | David Robillard | 1 | -4/+5 | |
2020-12-14 | Fix redundant calls to smart pointer get() methods | David Robillard | 2 | -2/+2 | |
2020-12-14 | Don't use size() to check emptiness | David Robillard | 1 | -1/+1 | |
2020-12-14 | Fix inconsistent parameter name | David Robillard | 1 | -1/+1 | |
2020-12-14 | Isolate and initialize variable declarations | David Robillard | 2 | -2/+4 | |
2020-12-14 | Use range-based loops for module ports | David Robillard | 2 | -10/+10 | |
2020-12-14 | Use "auto" to avoid redundancy | David Robillard | 5 | -22/+25 | |