Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-17 | Clean up includes and forward declarations | David Robillard | 1 | -1/+0 | |
According to include-what-you-use 0.22 on LLVM 18, anyway. Most of the changes seem vaguely reasonable, so as usual, just go with what the tool says because it's most useful when reports are typically clean. | |||||
2024-07-17 | Avoid return with void value | David Robillard | 1 | -1/+1 | |
2024-07-17 | Remove unused local variable | David Robillard | 1 | -1/+0 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 1 | -2/+0 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 1 | -9/+8 | |
2022-12-14 | Use std::filesystem and std::make_unique | David Robillard | 1 | -4/+6 | |
2022-08-18 | Use consistent brace wrapping for struct definitions | David Robillard | 1 | -2/+1 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 1 | -2/+1 | |
2022-08-18 | Use default member initialization | David Robillard | 1 | -4/+2 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 1 | -1/+1 | |
2021-06-04 | Switch to C++14 and fix build with GCC 10 | David Robillard | 1 | -70/+75 | |
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-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 | Update for latest raul | David Robillard | 1 | -10/+10 | |
2020-11-11 | Fix memory leak on save | David Robillard | 1 | -0/+2 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 1 | -25/+30 | |
2020-08-02 | Rename memory utility header | David Robillard | 1 | -1/+1 | |
2020-08-02 | Clean up URI map interface | David Robillard | 1 | -2/+2 | |
2020-08-02 | Fix incorrect strncmp length | David Robillard | 1 | -1/+1 | |
2020-08-02 | Make member functions const or static where possible | David Robillard | 1 | -2/+2 | |
2020-08-01 | Use modern casts | David Robillard | 1 | -10/+20 | |
2019-12-08 | Cleanup: Add missing explicit initialisations | David Robillard | 1 | -0/+1 | |
2019-12-08 | Cleanup: Remove redundant string initialisations | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Add missing copy and assignment method declarations | David Robillard | 1 | -0/+5 | |
2019-12-08 | Cleanup: Use "default" for default constructors and destructors | David Robillard | 1 | -2/+1 | |
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 1 | -28/+28 | |
2019-03-09 | Make start_to_file() take a FilePath for type safety | David Robillard | 1 | -1/+1 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 1 | -9/+17 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 1 | -3/+3 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 1 | -4/+2 | |
2018-09-23 | Allow context to be passed for serialisation | David Robillard | 1 | -4/+3 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -3/+3 | |
2018-09-22 | Use new LV2 include paths | David Robillard | 1 | -2/+2 | |
2018-09-04 | Remove dynamic exception specifications | David Robillard | 1 | -5/+2 | |
2018-01-21 | Clean up URI and path handling in Serialiser | David Robillard | 1 | -25/+22 | |
2018-01-21 | Add FilePath class and remove use of glib path utilities | David Robillard | 1 | -46/+31 | |
2018-01-21 | Use C++ style includes for standard language headers | David Robillard | 1 | -3/+2 | |
2018-01-21 | Add URI class and remove use of Raul::URI | David Robillard | 1 | -27/+25 | |
2018-01-21 | Replace insert(make_pair(...)) with emplace | David Robillard | 1 | -1/+1 | |
2017-12-25 | Remove superfluous using namespace declarations | David Robillard | 1 | -3/+1 | |
2017-12-25 | Always use braces | David Robillard | 1 | -5/+10 | |
2017-12-25 | Use nullptr | David Robillard | 1 | -3/+3 | |
2017-12-25 | Fix inconsistent parameter names | David Robillard | 1 | -11/+11 | |
2017-12-24 | Clean up includes in public headers | David Robillard | 1 | -0/+1 | |
2017-02-15 | Move Properties out of Resource | David Robillard | 1 | -9/+7 | |
2016-10-06 | Add plugin state saving | David Robillard | 1 | -1/+15 | |
This only works with a server-side save, so the GUI now uses that if the server is not running remotely, where "remotely" is defined as "via TCP". This isn't perfect, since running ingen via TCP locally is a perfectly valid thing to do, but it will do for now. | |||||
2016-10-02 | Fix saving and loading subgraphs | David Robillard | 1 | -3/+4 | |
2016-10-02 | Fix default doap:name of saved graphs | David Robillard | 1 | -3/+10 | |
2016-08-17 | Rename main graph and control/notify ports | David Robillard | 1 | -18/+17 | |
2016-07-29 | Save bundled graphs to graph.ttl by default | David Robillard | 1 | -11/+6 | |
This avoids a lot of hassle with filename construction and renaming, while ensuring that the internal structure of any graph bundle is the same. | |||||
2015-12-04 | Omit extension from default doap:name for graphs | David Robillard | 1 | -1/+2 | |