Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | |
2020-11-12 | Update warning flags | David Robillard | 1 | -0/+2 | |
2020-11-12 | Remove spurious semicolon | David Robillard | 1 | -1/+1 | |
2020-11-11 | Fix potential state memory leaks | David Robillard | 7 | -52/+101 | |
2020-11-11 | Fix memory leak on save | David Robillard | 1 | -0/+2 | |
2020-11-11 | Fix buffer memory leaks on shutdown | David Robillard | 1 | -4/+8 | |
2020-11-11 | Fix memory leak | David Robillard | 1 | -0/+2 | |
2020-09-27 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-27 | Fix include order | David Robillard | 1 | -4/+4 | |
2020-08-03 | Clean up includes | David Robillard | 86 | -88/+535 | |
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check. | |||||
2020-08-03 | Move misplaced import | David Robillard | 1 | -1/+1 | |
2020-08-02 | Remove Raul::managed_ptr alias | David Robillard | 27 | -203/+199 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 167 | -1195/+1365 | |
2020-08-02 | Remove redundant pointer get() calls | David Robillard | 11 | -22/+21 | |
2020-08-02 | Use nullptr for empty smart pointers | David Robillard | 24 | -39/+38 | |
2020-08-02 | Use auto with pointer casts to remove redundancy | David Robillard | 17 | -71/+71 | |