Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-03-09 | Make start_to_file() take a FilePath for type safety | David Robillard | 4 | -4/+6 | |
2019-03-09 | Fix misleading connect window label | David Robillard | 1 | -1/+1 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 196 | -1049/+1524 | |
2019-03-09 | Remove clearlooks from style configuration | David Robillard | 1 | -5/+0 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 30 | -207/+185 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 20 | -166/+129 | |
2019-03-08 | Use smart pointers to manage World in programs | David Robillard | 1 | -1/+1 | |
2019-03-08 | Use smart pointers to handle FILE streams | David Robillard | 2 | -7/+10 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 58 | -454/+449 | |
2019-03-08 | Make parser take mandatory arguments by reference | David Robillard | 6 | -100/+100 | |
2019-01-09 | Remove debug noise | David Robillard | 1 | -2/+0 | |
2019-01-09 | Fix SocketWriter bundle delimiters | David Robillard | 1 | -10/+15 | |
In particular, this fixes ingenish. The old solution here was broken by changing to a single message() function since bundle_end() was no longer virtual. | |||||
2018-11-24 | Squashed 'waflib/' changes from 6e726eb1..5ea8f99f | David Robillard | 225 | -41856/+0 | |
5ea8f99f Improve test output spacing 0e23b29f Raise exception when test suite fails to ensure non-zero exit status d6de073b Show run time of unit tests 5b655541 Add short configure option for ultra-strict flags 4687ba6d Use gtest-like test output 258903d9 Fix failure count in test group summaries da07e738 Fix verbose tests with Python 3 git-subtree-dir: waflib git-subtree-split: 5ea8f99f6e1246079c1fe6bb590c38a53aadd40d | |||||
2018-09-29 | Use nullptr | David Robillard | 17 | -32/+39 | |
2018-09-23 | Clean up property parsing | David Robillard | 1 | -48/+30 | |
2018-09-23 | Parse overridden properties with a single PUT | David Robillard | 1 | -4/+10 | |
2018-09-23 | Fix copy/paste of ports | David Robillard | 3 | -6/+68 | |
2018-09-23 | Allow context to be passed for serialisation | David Robillard | 1 | -4/+3 | |
2018-09-23 | Enforce that arc buffer can only be accessed in run context | David Robillard | 3 | -6/+6 | |
2018-09-23 | Instantiate duplicated internals with correct parent graph | David Robillard | 1 | -1/+1 | |
2018-09-23 | Use override specifiers | David Robillard | 61 | -263/+271 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 213 | -1336/+1336 | |
2018-09-22 | Use new LV2 include paths | David Robillard | 42 | -78/+78 | |
2018-09-16 | Hide warnings from Gtk libraries | David Robillard | 1 | -4/+4 | |
2018-09-16 | Remove checks for ancient Gtkmm | David Robillard | 3 | -8/+0 | |
2018-09-16 | Fix accidental case fall-through | David Robillard | 1 | -0/+1 | |
2018-09-04 | Fix unintentional fall-through | David Robillard | 1 | -0/+1 | |
2018-09-04 | Fix catch of polymorphic exception by value | David Robillard | 1 | -1/+1 | |
2018-09-04 | Remove pointless type qualifiers | David Robillard | 2 | -5/+5 | |
2018-09-04 | Remove dynamic exception specifications | David Robillard | 2 | -8/+3 | |
2018-08-07 | Use serd_free | David Robillard | 1 | -1/+1 | |
2018-03-08 | Fix cut/copy/paste of arcs | David Robillard | 1 | -2/+4 | |
2018-01-22 | Speed up animation and update GUI at 30Hz | David Robillard | 3 | -7/+6 | |
2018-01-22 | Only enqueue messages when the engine is remote | David Robillard | 5 | -37/+53 | |
When the engine is local, messages are emitted in the Gtk thread and applied immediately. This should make the GUI more responsive. | |||||
2018-01-21 | Clean up URI and path handling in Serialiser | David Robillard | 1 | -25/+22 | |
2018-01-21 | Work around Jack returning NULL buffers | David Robillard | 2 | -3/+15 | |
2018-01-21 | Clean up Buffer class and factor out allocation | David Robillard | 2 | -35/+36 | |
2018-01-21 | Read port index if requested regardless of context | David Robillard | 1 | -1/+1 | |
2018-01-21 | Clean up URI and path handling in parser | David Robillard | 2 | -69/+61 | |
2018-01-21 | Fix newlines in parser error messages | David Robillard | 1 | -6/+6 | |
2018-01-21 | Remove glib dependency from engine and core library | David Robillard | 5 | -21/+44 | |
2018-01-21 | Move Glib::thread_init to GUI | David Robillard | 2 | -1/+1 | |
2018-01-21 | Replace glib quarks | David Robillard | 1 | -7/+21 | |
2018-01-21 | Replace Glib::Module | David Robillard | 3 | -25/+81 | |
2018-01-21 | Add FilePath class and remove use of glib path utilities | David Robillard | 15 | -183/+436 | |
2018-01-21 | Use C++ style includes for standard language headers | David Robillard | 25 | -40/+34 | |
2018-01-21 | Add URI class and remove use of Raul::URI | David Robillard | 99 | -436/+502 | |
2018-01-21 | Replace insert(make_pair(...)) with emplace | David Robillard | 28 | -108/+87 | |
2018-01-21 | Don't build libraries twice when testing is enabled | David Robillard | 2 | -31/+4 | |
2018-01-17 | Fix connecting value sequences to CV | David Robillard | 2 | -1/+1 | |