Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-10-02 | Fix custom UI port notifications | David Robillard | 1 | -1/+1 | |
2016-10-02 | Implement microsecond clock for Linux and OSX | David Robillard | 4 | -10/+65 | |
2016-10-02 | Fix default doap:name of saved graphs | David Robillard | 1 | -3/+10 | |
2016-10-02 | Fix properties of control/notify ports | David Robillard | 3 | -6/+9 | |
2016-10-02 | Improve test coverage | David Robillard | 3 | -0/+63 | |
2016-10-02 | Fix loading a graph by copying from the filesystem | David Robillard | 1 | -1/+1 | |
2016-10-02 | Fix unit test responses and ensure events succeed | David Robillard | 10 | -11/+15 | |
2016-10-02 | Defer graph compilation in atomic bundles | David Robillard | 36 | -81/+233 | |
This avoids situations like compiling a graph hundreds of times when it is loaded because it has hundreds of nodes and each event triggers a re-compile. This speeds things up dramatically, but exacerbates the theoretical problem of there not being enough time in a cycle to execute a bundle. As far as I can tell, the execute phase of events is very fast, so hundreds or thousands can easily run in a tiny fraction of the process cycle, but this still needs resolution to be truly hard real-time. What probably needs to happen is that all context and state used to process is moved to CompiledGraph and nodes do not access their own fields at all, but have some references into the CompiledGraph. This way, a compiled graph is separate from its "source code", and an old one could continue to be run while a new one is beng applied across several cycles. | |||||
2016-10-02 | Use more efficient std::lock_guard where possible | David Robillard | 6 | -6/+6 | |
2016-10-02 | Update man page | David Robillard | 1 | -4/+10 | |
2016-10-02 | Show audio and load information in status line | David Robillard | 15 | -55/+381 | |
2016-10-02 | Add parallel graph execution | David Robillard | 19 | -159/+470 | |
2016-10-02 | Add parallelism-aware graph traversal | David Robillard | 19 | -120/+433 | |
2016-10-02 | Replace Delay internal with simpler BlockDelay | David Robillard | 14 | -249/+173 | |
2016-10-01 | Fix OSX build | David Robillard | 8 | -8/+27 | |
2016-10-01 | Fix plugin versioning | David Robillard | 1 | -1/+1 | |
2016-10-01 | Fix flushing many message window lines at once | David Robillard | 1 | -15/+17 | |
2016-10-01 | Save global options to options.ttl | David Robillard | 2 | -10/+15 | |
2016-09-29 | Atomic bundle execution | David Robillard | 9 | -13/+95 | |
2016-09-20 | Use C++11 thread_local | David Robillard | 2 | -5/+4 | |
2016-09-20 | Bump required LV2 version | David Robillard | 1 | -1/+1 | |
2016-09-18 | Fix undo of large pastes | David Robillard | 1 | -0/+4 | |
2016-09-18 | Fix undo of deletions with both blocks and arcs | David Robillard | 1 | -3/+3 | |
Also probably other cases of dependent events that must be executed in the correct order for undo to make sense. | |||||
2016-09-18 | Fix undo after redo | David Robillard | 2 | -4/+6 | |
2016-09-18 | Clean up code | David Robillard | 9 | -25/+34 | |
2016-09-18 | Add fancy communication logging | David Robillard | 17 | -129/+396 | |
2016-09-18 | Factor out text writing from socket writing | David Robillard | 5 | -101/+186 | |
2016-09-13 | Fix misleading comment | David Robillard | 1 | -1/+5 | |
2016-09-11 | Remove last vestiges of multiple run contexts | David Robillard | 77 | -383/+315 | |
2016-09-11 | Clarify connect and disconnect logic | David Robillard | 2 | -3/+5 | |
2016-09-11 | Fix buffer copying for various types | David Robillard | 3 | -10/+13 | |
2016-09-11 | Use URIDs for prototypes | David Robillard | 3 | -10/+6 | |
2016-09-11 | Update documentation style | David Robillard | 1 | -56/+50 | |
2016-09-05 | Update man pages | David Robillard | 1 | -1/+1 | |
2016-08-27 | Update documentation style | David Robillard | 2 | -1270/+578 | |
2016-08-17 | Rename main graph and control/notify ports | David Robillard | 43 | -231/+231 | |
2016-08-02 | Make graph control ports support patch:Message | David Robillard | 2 | -0/+3 | |
2016-08-02 | Fix bundle delimiters in atom protocol | David Robillard | 1 | -0/+2 | |
2016-08-01 | Add missing includes | David Robillard | 4 | -0/+4 | |
2016-08-01 | Check for libdl | David Robillard | 2 | -2/+10 | |
2016-08-01 | Use consistent feature test macros | David Robillard | 2 | -2/+2 | |
2016-08-01 | Fix compilation on OSX | David Robillard | 3 | -6/+8 | |
2016-08-01 | Show colorized log output in messages window | David Robillard | 7 | -20/+133 | |
2016-08-01 | Implement LV2 log extension as host | David Robillard | 8 | -35/+160 | |
Only print color logs if output is a terminal. | |||||
2016-07-31 | Support thread-safe state restoration | David Robillard | 8 | -26/+80 | |
2016-07-31 | Reduce duplicated code | David Robillard | 4 | -23/+12 | |
2016-07-30 | Add undo support | David Robillard | 54 | -98/+1167 | |
2016-07-30 | Fix stall by making PreProcessor tick periodically | David Robillard | 1 | -1/+5 | |
I am not sure exactly what scenarios cause this to happen, every event should post to the semaphore, but having the PreProcessor thread tick idly doesn't hurt anything and resolves the issue. | |||||
2016-07-30 | Fix mismatched include guard | David Robillard | 1 | -3/+3 | |
2016-07-30 | Use consistent prefix order | David Robillard | 2 | -4/+4 | |