Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-08-18 | Use a consistent style for empty braces | David Robillard | 29 | -79/+41 | |
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 | 61 | -279/+467 | |
2022-08-18 | Use default member initialization | David Robillard | 113 | -497/+277 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 17 | -29/+42 | |
2022-08-18 | Fix control binding value computation | David Robillard | 4 | -8/+8 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 34 | -175/+156 | |
2022-08-18 | Switch to meson build system | David Robillard | 48 | -872/+2257 | |
2022-08-18 | Clean up includes | David Robillard | 8 | -4/+13 | |
2022-08-18 | Separate export macro definitions between modules | David Robillard | 19 | -41/+102 | |
2022-08-18 | Remove unused ingen:Option class | David Robillard | 1 | -9/+3 | |
The idea here was so that options can be enumerated, but at the moment, it just complicates the schema for no benefit. So, drop it for now, since it can always be added again later without breaking any data. | |||||
2022-08-18 | Fix clang-tidy header filter regex | David Robillard | 3 | -3/+3 | |
2022-08-18 | Clean up includes | David Robillard | 24 | -36/+24 | |
2022-08-17 | Fully declare special member functions | David Robillard | 1 | -1/+6 | |
2022-08-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 3 | -0/+43 | |
2022-08-17 | Use eg-metro in tests instead of eg-sampler | David Robillard | 1 | -3/+3 | |
This plugin doesn't have external dependencies (like libsndfile), so is more likely to be present. | |||||
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 | 11 | -177/+258 | |
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-07 | Update autowaf | David Robillard | 1 | -0/+0 | |
2021-01-07 | Remove deprecated Doxygen configuration values | David Robillard | 1 | -22/+1 | |
2021-01-07 | Fix building documentation | David Robillard | 1 | -4/+1 | |
2021-01-02 | Pass by value and use std::move | David Robillard | 8 | -17/+15 | |
2021-01-02 | Update for latest raul | David Robillard | 141 | -597/+615 | |
2020-12-15 | Use separate clang-tidy configurations for server and GUI | David Robillard | 3 | -1/+124 | |
2020-12-15 | Suppress all Android cloexec clang-tidy warnings | David Robillard | 1 | -1/+1 | |
2020-12-15 | Sort mapping files | David Robillard | 1 | -2/+2 | |
2020-12-15 | Clean up includes in gui | David Robillard | 62 | -237/+903 | |
2020-12-15 | Fix include guard | David Robillard | 1 | -3/+3 | |
2020-12-15 | Clean up includes in client library | David Robillard | 16 | -32/+89 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 92 | -95/+346 | |
2020-12-14 | Enable clang-analyzer-webkit.NoUncountedMemberChecker | David Robillard | 2 | -3/+5 | |
2020-12-14 | Use emplace_back() | David Robillard | 2 | -3/+2 | |
2020-12-14 | Fix unnecessary parameter copying overhead | David Robillard | 29 | -141/+163 | |
2020-12-14 | Don't check for null before deleting pointer | David Robillard | 2 | -5/+5 | |
2020-12-14 | Fix redundant calls to smart pointer get() methods | David Robillard | 4 | -4/+3 | |
2020-12-14 | Don't use size() to check emptiness | David Robillard | 2 | -2/+1 | |
2020-12-14 | Fix inconsistent parameter name | David Robillard | 2 | -2/+1 | |
2020-12-14 | Isolate and initialize variable declarations | David Robillard | 3 | -4/+4 | |
2020-12-14 | Use range-based loops for module ports | David Robillard | 3 | -11/+10 | |
2020-12-14 | Use "auto" to avoid redundancy | David Robillard | 6 | -23/+25 | |
2020-12-14 | Avoid "using namespace" | David Robillard | 29 | -177/+244 | |
2020-12-14 | Suppress new clang-tidy warnings | David Robillard | 1 | -8/+35 | |
2020-12-14 | Fix include order | David Robillard | 2 | -3/+3 | |
2020-12-14 | Remove Jack session support | David Robillard | 3 | -71/+0 | |