aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.c
AgeCommit message (Collapse)AuthorFilesLines
2022-08-17Use a consistent interface for error/warning/debug loggingDavid Robillard1-27/+27
Towards the ability to hook the log into other things (for display in a UI, for example). The implementation still just prints to stderr, although now with consistent formatting.
2022-08-17Print status information consistently to stdoutDavid Robillard1-10/+6
2022-08-17Reduce dependence on jalv_internal.hDavid Robillard1-0/+1
2022-08-17Remove Jalv back pointer from WorkerDavid Robillard1-4/+11
2022-08-17Move Port definition to its own headerDavid Robillard1-0/+1
2022-08-17Separate options.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Move JalvURIDs and JalvNodes to their own headersDavid Robillard1-0/+2
2022-08-17Remove Jalv back pointer from ControlIDDavid Robillard1-6/+15
Bit of a kludge, but this unblocks further cleanup and modularization. The Gtk static data / signal issues can be addressed later.
2022-08-17Clean up includesDavid Robillard1-2/+2
2022-08-17Clearly separate frontends from common internalsDavid Robillard1-10/+10
2022-08-17Separate control.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Separate ui.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Separate backend.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Separate state.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Separate log.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
2022-05-31Fix build on MacOSDavid Robillard1-0/+2
2022-05-30Fix MSVC buildDavid Robillard1-7/+7
2022-05-30Remove use of VLAsDavid Robillard1-7/+13
2022-05-29Fix build on MacOSDavid Robillard1-0/+2
2022-05-27Add Gtk plugin selector UIAlexandros Theodotou1-0/+4
2022-05-27Remove double semicolonsDavid Robillard1-1/+1
2022-05-27Clean up URI initialization codeDavid Robillard1-79/+76
2022-05-27Remove redundant conditionalsDavid Robillard1-6/+2
2022-05-27Add version option to console executableDavid Robillard1-2/+3
2022-05-27Fix crash when exiting without having set up a backendDavid Robillard1-2/+6
2022-05-27Use consistent comment stylesDavid Robillard1-77/+76
2022-05-27Format all code with clang-formatDavid Robillard1-1051/+1085
2022-05-27Avoid "else" after "return"David Robillard1-4/+4
2021-02-15Pass ui:scaleFactor option to UIsAlexandros Theodotou1-0/+12
This option was added in LV2 1.18.0.
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-18Fix warning messageDavid Robillard1-1/+2
2020-12-18Ignore ports with nonsense lv2:control designationsDavid Robillard1-1/+8
2020-12-14Update zixDavid Robillard1-1/+1
2020-12-14Remove Jack session supportDavid Robillard1-5/+0
2020-10-11Explicitly support lv2:inPlaceBrokenDavid Robillard1-1/+2
I believe this is true for both Jack and PortAudio, though neither document it as a guarantee.
2020-09-27Clean up includesDavid Robillard1-5/+15
2020-07-21Fix incorrect printf format specifiersDavid Robillard1-4/+4
2020-04-05Add a command line argument to select a specific UIHanspeter Portner1-0/+9
2020-04-05Factor out UI selectionDavid Robillard1-16/+64
2020-04-05Add lv2:extensionData and ui:showInterface nodesDavid Robillard1-0/+2
2020-03-17Implement ui:requestValueDavid Robillard1-0/+5
2019-11-03Use screen refresh rate with Gtk3 and Qt5David Robillard1-2/+1
2019-11-03Fix crash with QtDavid Robillard1-7/+7
Qt requires that the argc and argv pointers passed to QApplication are valid for the lifetime of the application.
2019-10-17Make jalv_update return intDavid Robillard1-3/+3
This avoids some warnings about conversion between incompatible function pointer types.
2019-10-17Clean up includesDavid Robillard1-22/+17
2019-05-04Fix incorrect type for sample rate optionDavid Robillard1-4/+4
2019-04-21Use modern LV2 includesDavid Robillard1-14/+14
2018-12-27Remove garbage element from features arrayDavid Robillard1-1/+0
2018-11-10Free LilvNodes when no longer requiredTimo Wischer1-0/+14
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>