Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-16 | Update zix | David Robillard | 5 | -245/+257 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 22 | -35/+35 | |
2020-12-18 | Fix warning message | David Robillard | 1 | -1/+2 | |
2020-12-18 | Ignore ports with nonsense lv2:control designations | David Robillard | 1 | -1/+8 | |
2020-12-14 | Avoid use of strcat() | David Robillard | 1 | -2/+1 | |
2020-12-14 | Explicitly delete unused special member functions | David Robillard | 1 | -0/+6 | |
2020-12-14 | Make member variable private | David Robillard | 1 | -2/+1 | |
2020-12-14 | Use C++-style include | David Robillard | 1 | -1/+1 | |
2020-12-14 | Add missing member initialization | David Robillard | 1 | -5/+10 | |
2020-12-14 | Don't use C casts in C++ code | David Robillard | 1 | -5/+7 | |
2020-12-14 | Don't declare default arguments | David Robillard | 1 | -11/+15 | |
2020-12-14 | Use explicit constructors | David Robillard | 1 | -6/+6 | |
2020-12-14 | Fix inconsistent parameter name | David Robillard | 1 | -1/+1 | |
2020-12-14 | Isolate variable declarations | David Robillard | 1 | -1/+2 | |
2020-12-14 | Fix unused parameter warnings | David Robillard | 5 | -16/+19 | |
2020-12-14 | Use the appropriate math functions for the operand precision | David Robillard | 2 | -5/+5 | |
2020-12-14 | Remove meaningless const qualifiers in declarations | David Robillard | 1 | -6/+6 | |
2020-12-14 | Initialize all variables | David Robillard | 6 | -19/+25 | |
2020-12-14 | Clean up includes | David Robillard | 3 | -7/+14 | |
2020-12-14 | Update zix | David Robillard | 9 | -81/+104 | |
2020-12-14 | Remove Jack session support | David Robillard | 5 | -60/+0 | |
2020-10-11 | Explicitly support lv2:inPlaceBroken | David Robillard | 1 | -1/+2 | |
I believe this is true for both Jack and PortAudio, though neither document it as a guarantee. | |||||
2020-09-27 | Clean up includes | David Robillard | 13 | -28/+126 | |
2020-07-21 | Fix use of deprecated Qt API | David Robillard | 1 | -1/+1 | |
2020-07-21 | Remove unused macros | David Robillard | 1 | -5/+0 | |
2020-07-21 | Add missing override specifiers | David Robillard | 1 | -12/+12 | |
2020-07-21 | Use modern casts in C++ | David Robillard | 2 | -5/+7 | |
2020-07-21 | Add missing static specifier | David Robillard | 1 | -1/+1 | |
2020-07-21 | Use nullptr in C++ | David Robillard | 2 | -10/+10 | |
2020-07-21 | Fix unnecessary const cast | David Robillard | 1 | -1/+1 | |
2020-07-21 | Add format function annotations | David Robillard | 1 | -0/+8 | |
2020-07-21 | Fix incorrect printf format specifiers | David Robillard | 2 | -5/+5 | |
2020-07-08 | Revert "worker: Only add response when enough space" | David Robillard | 1 | -4/+0 | |
This reverts commit f831a1ebde048b4a19b380ff3794180152757efa. This was merged accidentally. | |||||
2020-07-08 | Revert "worker: Do not read response when not yet available" | David Robillard | 1 | -26/+7 | |
This reverts commit 411f0e67f495fb436ce13ba12c63d7cf874aabd7. This was merged accidentally. | |||||
2020-05-09 | Always call jalv_init_ui() | David Robillard | 2 | -0/+4 | |
2020-04-19 | Define _POSIX_C_SOURCE locally | David Robillard | 1 | -0/+2 | |
2020-04-05 | worker: Only add response when enough space | Timo Wischer | 1 | -0/+4 | |
for the complete response. Without this patch the size of the response might be added but not the response itself. This would corrupt the response queue because the previously added size will be used for the next response which will be added. Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2020-04-05 | worker: Do not read response when not yet available | Timo Wischer | 1 | -7/+26 | |
Without this patch the size of the response might be read successfully but the response will not be read. Therefore the while loop would exit and when entering the next time the size will be read again. But this second read of size will actually already read data from the response. Therefore the response will be corrupted and the response buffer cannot sync again. To avoid this issue it will first be checked if there is enough data available in the ring buffer to read the size and response. If not try again later. Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2020-04-05 | Add a command line argument to select a specific UI | Hanspeter Portner | 4 | -0/+19 | |
2020-04-05 | Factor out UI selection | David Robillard | 1 | -16/+64 | |
2020-04-05 | Add lv2:extensionData and ui:showInterface nodes | David Robillard | 2 | -0/+4 | |
2020-04-05 | Support port events for ui:showInterface UIs | Hanspeter Portner | 1 | -5/+9 | |
2020-03-17 | Allocate more space for command prompt commands | David Robillard | 1 | -1/+1 | |
2020-03-17 | Fix null termination of paths passed to plugins | David Robillard | 1 | -2/+2 | |
2020-03-17 | Fix buffer overrun with very long symbols in commands | David Robillard | 1 | -4/+4 | |
2020-03-17 | Implement ui:requestValue | David Robillard | 3 | -0/+46 | |
2019-11-10 | Ensure refresh rate is at least 30Hz | David Robillard | 1 | -1/+3 | |
Gdk can allegedly report zero on some systems. | |||||
2019-11-10 | Remove debug noise | David Robillard | 1 | -1/+0 | |
2019-11-10 | Support rdfs:label for port groups | David Robillard | 1 | -0/+6 | |
2019-11-03 | Use screen refresh rate with Gtk3 and Qt5 | David Robillard | 6 | -2/+40 | |