Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-05-04 | Fix incorrect type for sample rate option | David Robillard | 3 | -6/+6 | |
2019-04-21 | Use modern LV2 includes | David Robillard | 7 | -31/+31 | |
2018-12-27 | Remove unused jalv_ui_resize() | David Robillard | 4 | -36/+0 | |
This function was added many years ago to support the UI resize feature, but has been dead code for a long time and nobody seems to have noticed, so it can't be that important. | |||||
2018-12-27 | Remove garbage element from features array | David Robillard | 1 | -1/+0 | |
2018-11-10 | Free LilvNodes when no longer required | Timo Wischer | 2 | -0/+17 | |
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2018-11-10 | Use distinct error codes for all cases in jalv_open | David Robillard | 1 | -3/+3 | |
2018-11-10 | Add support for running as an internal Jack client | Timo Wischer | 1 | -5/+89 | |
2018-11-10 | Move features to Jalv struct | Timo Wischer | 3 | -78/+124 | |
2018-11-10 | Remove unnecessary preallocation | David Robillard | 1 | -3/+0 | |
2018-11-10 | Move exit semaphore to Jalv struct | David Robillard | 7 | -20/+22 | |
2018-11-10 | Clean up properly after failing to open | David Robillard | 2 | -4/+17 | |
2018-11-10 | Factor out signal setup | David Robillard | 1 | -12/+18 | |
2018-11-10 | Separate the bulk of main code into jalv_open() and jalv_close() | David Robillard | 2 | -11/+32 | |
2018-11-10 | Separate Jack client creation from backend initialisation | David Robillard | 1 | -2/+12 | |
2018-09-27 | Split jalv_main() from main() | David Robillard | 1 | -224/+230 | |
This is just an interim commit to make the syntactic change of jalv becoming a pointer in isolation from the upcoming changes that require this. | |||||
2018-09-27 | Return distinct error codes for different error conditions | David Robillard | 1 | -8/+10 | |
2018-09-25 | Remove unused field | David Robillard | 1 | -1/+0 | |
2018-09-24 | Fix some unnecessary const casts | David Robillard | 3 | -5/+5 | |
2018-09-24 | Fix unused parameter warnings | Timo Wischer | 9 | -34/+44 | |
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2018-09-23 | Remove support for deprecated event and uri-map extensions | David Robillard | 8 | -210/+53 | |
2018-09-22 | Add commands to set and list presets | David Robillard | 1 | -0/+20 | |
2018-09-22 | Add commands to print control values | David Robillard | 1 | -0/+21 | |
2018-09-22 | Add command to set control values by port index | David Robillard | 1 | -4/+13 | |
2018-09-22 | Move control printing function to shared internal header | David Robillard | 3 | -10/+10 | |
2018-09-22 | Add rudimentary help to console interface | David Robillard | 1 | -3/+10 | |
2018-09-22 | Print error message on unknown command input | David Robillard | 1 | -0/+2 | |
2018-09-22 | Only print initial value for control inputs | David Robillard | 1 | -1/+1 | |
2018-09-22 | Simplify control display in console interface | David Robillard | 4 | -18/+9 | |
2018-09-22 | Print real JACK name instead of requested name | David Robillard | 1 | -1/+2 | |
2018-09-22 | Fix double backend activation | David Robillard | 1 | -3/+0 | |
2018-09-21 | Make Suil dependency optional | David Robillard | 2 | -0/+16 | |
2018-09-21 | Remove use of SuilController type in jalv_ui_port_index() interface | David Robillard | 2 | -2/+2 | |
Towards making Suil dependency optional, this type is just void* anyway, so no other changes are required. | |||||
2018-09-21 | Use jalv_ui_write() universally | David Robillard | 3 | -9/+8 | |
2018-09-21 | Factor out running show-interface UIs from the console front-end | David Robillard | 1 | -3/+13 | |
2018-09-20 | Use sigaction() instead of signal() | Laxmi Devi | 1 | -0/+10 | |
Issue is that even after ctrl+c, fgets is waiting for a newline. See signal(7) for details. We have to either use siginterrupt() together with signal(), or use sigaction() instead of signal() for registering the signal handler, in order to disable restarting a read() system call after a signal. Signed-off-by: Laxmi Devi <Laxmi.Devi@in.bosch.com> Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2018-09-19 | Add support for underscore in port names on command line | Jośe Fernando Moyano | 1 | -1/+1 | |
2018-09-18 | Fix a potential crash when closed with worker | JP Cimalando | 3 | -2/+15 | |
2018-08-07 | Fix closing JACK backend | David Robillard | 1 | -1/+1 | |
2018-08-01 | Make zix_ring_free() safe to call on NULL | Timo Wischer | 1 | -2/+4 | |
2018-08-01 | Avoid NULL dereference in JACK backend on startup failure | Timo Wischer | 1 | -4/+8 | |
Without this, there is a segmentation fault when the initialization of Jalv fails and it exits before the backend was initialized. | |||||
2018-08-01 | Remove non-standard include | David Robillard | 1 | -1/+0 | |
2018-08-01 | Remove unused control value variable | Timo Wischer | 1 | -1/+0 | |
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2018-08-01 | Use lilv_port_get_range() to get default, min, max of a control port | Timo Wischer | 1 | -3/+0 | |
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com> | |||||
2018-07-22 | Fix stepped logarithmic controls in generic Qt UIs | David Robillard | 1 | -4/+5 | |
2018-01-16 | Remove unnecessary includes | David Robillard | 2 | -3/+3 | |
2017-12-29 | Fix inconsistent parameter names | David Robillard | 1 | -1/+1 | |
2017-12-29 | Remove redundant casts | David Robillard | 1 | -2/+2 | |
2017-12-16 | Remove unused variable | David Robillard | 1 | -1/+0 | |
2017-12-16 | Use C11 memory barriers where available | David Robillard | 1 | -10/+14 | |
2017-05-07 | Fix Jack deactivation | David Robillard | 1 | -1/+1 | |