aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-02-23Preliminary native OSX workosxDavid Robillard10-204/+773
2017-02-12Update READMEDavid Robillard1-2/+5
2017-02-12Disable deprecation warnings with Gtk3David Robillard1-1/+20
2017-02-12Fix compilation with recent Gtkmm versions that require C++11David Robillard2-0/+9
2017-01-07Fix compilation with newer versions of Qt5David Robillard1-2/+2
2017-01-04Jalv 0.6.0v1.6.0David Robillard3-6/+6
2016-10-05Fix combo boxesDavid Robillard1-3/+3
2016-10-05Add PortAudio backendDavid Robillard4-19/+257
2016-10-05TidyDavid Robillard2-10/+7
2016-10-05Fix time stamp of UI events delivered to pluginDavid Robillard1-1/+1
2016-10-05Factor out UI communication from backendDavid Robillard3-65/+110
2016-10-05Factor out Jack backendDavid Robillard8-551/+988
2016-10-01Transition away from deprecated _BSD_SOURCEDavid Robillard1-1/+2
2016-09-20Bump required LV2 versionDavid Robillard1-1/+1
2016-09-18Update copyright datesDavid Robillard6-6/+6
2016-09-17Unify control port and parameter implementationsDavid Robillard5-220/+307
2016-09-16Fix memory error on preset saveDavid Robillard2-7/+9
2016-09-16Use cached URIs and fix pprops:rangeSteps nonsenseDavid Robillard3-25/+17
2016-09-16Fix incorrect man page optionDavid Robillard1-1/+1
2016-09-15Fix crash on changes for ports with no widgetDavid Robillard1-1/+3
This happens, for example, with latency ports with the notOnGUI property set.
2016-09-05Add project tag to release postsDavid Robillard1-1/+1
2016-09-05Tidy up man pagesDavid Robillard4-4/+4
2016-09-05Update NEWSDavid Robillard1-1/+2
2016-08-31Discover presence of UI before jack_activateHanspeter Portner6-5/+30
jalv.has_ui should be set before jack_activate. If not, patch:Get message may be without effect and parameter replies never be sent from within jack process callback, as the latter may run before the corresponding UI logic (e.g. with jalv.has_ui still being false).
2016-08-23Add --no-gtkmm configure optionDavid Robillard1-0/+4
2016-08-17Add target for generating release announcementsDavid Robillard3-8/+21
2016-08-16Fix potential use of uninitialized variableDavid Robillard1-2/+2
2016-08-01Add feature test macro for usleep on LignuxDavid Robillard1-0/+1
2016-08-01Use consistent feature test macrosDavid Robillard1-1/+1
2016-08-01Use consistent feature test macrosDavid Robillard3-6/+8
2016-07-31Fix compilation with C++David Robillard6-28/+30
2016-07-31Fix log colour stateDavid Robillard2-2/+3
2016-07-31Do not call plugin work() method concurrentlyDavid Robillard3-0/+6
2016-07-31Support thread-safe state restorationDavid Robillard7-61/+121
2016-07-31Clean up log outputDavid Robillard6-16/+52
2016-07-26Fix feedback on parameter changes from pluginDavid Robillard1-13/+27
This ensures that changing a read-write parameter by clicking the slider or changing the spin button value sends exactly one Set message to the plugin, and that no change messages are sent as a result of updates from the plugin.
2016-07-25Support test coverage with LLVMDavid Robillard1-5/+5
2016-07-11Improve test frameworkDavid Robillard1-5/+5
2016-07-09Add support for lv2:CVPort via JACK metadata APIHanspeter Portner3-5/+32
2016-07-09Upgrade to waf 1.8.22 and autowaf 93d0926David Robillard1-7/+7
2016-04-30Fix wrong size in patch:GetHanspeter Portner1-1/+1
2016-04-25Support read-only controlsDavid Robillard2-66/+128
Based on patch from Hanspeter Portner https://github.com/ventosus/jalv.git fix_extend_jalv_gtk 9cf3e524f33716aaa2bbb18d9eb869ed095f5eaf
2016-04-25Fix invalid read of float port events as atomsDavid Robillard1-0/+1
2016-04-25Add documentation for jalv -s optionDavid Robillard2-0/+7
2016-04-25Properly set jalv->has_ui for ui:showInterfaceHanspeter Portner1-1/+2
2016-04-25Fix broken plugin <-> UI comm in jalv_consoleHanspeter Portner1-0/+2
Fixes broken plugin <-> UI communication in jalv_console when run on top of showInterface (-s).
2016-03-31Fix wrong order of atom size/type in patch:GetHanspeter Portner1-1/+1
2016-03-15Delete trailing whitespaceDavid Robillard2-3/+3
2016-01-25Add ui:idleInterface to host UI featuresHanspeter Portner1-0/+4
To comply with: http://lv2plug.in/ns/extensions/ui/#idleInterface To indicate support, the host should pass a feature to instantiate() with this URI, with NULL for data.
2016-01-07Fix patch:Put handlingHanspeter Portner3-2/+26
(Property, Value) pairs are expected to be embedded in a patch:body property object, not direcly in the patch:Put object.