summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
AgeCommit message (Collapse)AuthorFilesLines
2008-10-18Build against local library versions no matter what.... hopefully....David Robillard1-7/+7
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1677 a436a847-0d15-0410-975c-d299462d15a1
2008-10-12Tolerate broken plugins.David Robillard1-7/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1667 a436a847-0d15-0410-975c-d299462d15a1
2008-10-04Fix slv2_plugin_get_supported_features.David Robillard1-2/+14
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1613 a436a847-0d15-0410-975c-d299462d15a1
2008-07-06Rename slv2_plugin_get_port_range to slv2_plugin_get_port_ranges_float ↵David Robillard1-4/+4
(avoid future binary compatibility issues if a type-generic one is needed later). git-svn-id: http://svn.drobilla.net/lad/slv2@1279 a436a847-0d15-0410-975c-d299462d15a1
2008-05-16Actually fix plugins with binary not mentioned in the manifest (just always ↵David Robillard1-2/+2
load it later). git-svn-id: http://svn.drobilla.net/lad/slv2@1211 a436a847-0d15-0410-975c-d299462d15a1
2008-05-09Remove invalid assertion.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/slv2@1203 a436a847-0d15-0410-975c-d299462d15a1
2008-05-03Handle plugins with missing binaries more gracefully.David Robillard1-0/+2
git-svn-id: http://svn.drobilla.net/lad/slv2@1197 a436a847-0d15-0410-975c-d299462d15a1
2008-05-03Parse files directly into "world" model instead of into a temporary model, ↵David Robillard1-2/+1
then copying. git-svn-id: http://svn.drobilla.net/lad/slv2@1196 a436a847-0d15-0410-975c-d299462d15a1
2008-05-03Use new redland "trees" store, if available (100 fold performance increases ↵David Robillard1-1/+3
in some cases). git-svn-id: http://svn.drobilla.net/lad/slv2@1195 a436a847-0d15-0410-975c-d299462d15a1
2008-05-03Add slv2_plugin_get_port_ranges.David Robillard1-0/+64
Use slv2_plugin_get_port_ranges in lv2_jack_host and lv2_inspect (significant performance improvement for plugins with lots of ports). git-svn-id: http://svn.drobilla.net/lad/slv2@1193 a436a847-0d15-0410-975c-d299462d15a1
2008-04-29Fix librdf assertion failures on plugins where no binary is found.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@1182 a436a847-0d15-0410-975c-d299462d15a1
2008-04-12LV2 UI extension updates from larsl.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@1181 a436a847-0d15-0410-975c-d299462d15a1
2008-03-19Support plugins where lv2:binary is not in manifest.ttlDavid Robillard1-3/+27
git-svn-id: http://svn.drobilla.net/lad/slv2@1174 a436a847-0d15-0410-975c-d299462d15a1
2008-01-31Slightly more gracefully fail on broken rasqal ORDER BY, or plugins with ↵David Robillard1-4/+16
missing ports. git-svn-id: http://svn.drobilla.net/lad/slv2@1120 a436a847-0d15-0410-975c-d299462d15a1
2008-01-28Remove debugging console barf.David Robillard1-3/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@1117 a436a847-0d15-0410-975c-d299462d15a1
2008-01-28Add slv2_plugin_get_num_ports_of_class.David Robillard1-0/+35
git-svn-id: http://svn.drobilla.net/lad/slv2@1116 a436a847-0d15-0410-975c-d299462d15a1
2008-01-27Packaging stuff.David Robillard1-1/+1
Add scale points API. Display scale points in lv2_inspect. Fix bugs resulting in returning empty collections. git-svn-id: http://svn.drobilla.net/lad/slv2@1114 a436a847-0d15-0410-975c-d299462d15a1
2008-01-25Overhaul SLV2 API to return/take SLV2Value (instead of strings or ↵David Robillard1-134/+127
primitives) wherever possible. Make 'index' a fundemental property of ingen ports. git-svn-id: http://svn.drobilla.net/lad/slv2@1113 a436a847-0d15-0410-975c-d299462d15a1
2008-01-23Remove 3 whopping LOC!!!111David Robillard1-3/+0
git-svn-id: http://svn.drobilla.net/lad/slv2@1107 a436a847-0d15-0410-975c-d299462d15a1
2008-01-21Work on generic LV2 events.David Robillard1-24/+10
git-svn-id: http://svn.drobilla.net/lad/slv2@1090 a436a847-0d15-0410-975c-d299462d15a1
2008-01-20Fix slv2_plugin_has_feature.David Robillard1-14/+6
git-svn-id: http://svn.drobilla.net/lad/slv2@1083 a436a847-0d15-0410-975c-d299462d15a1
2008-01-17Update queries for new UI extension.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/slv2@1067 a436a847-0d15-0410-975c-d299462d15a1
2008-01-16Attempt using "memory" RDF model instead of "hashes" for query performance ↵David Robillard1-3/+3
(yeah...?). git-svn-id: http://svn.drobilla.net/lad/slv2@1059 a436a847-0d15-0410-975c-d299462d15a1
2008-01-15Move debian/changelog to ChangeLog.David Robillard1-0/+1
Fix librdf warning. git-svn-id: http://svn.drobilla.net/lad/slv2@1057 a436a847-0d15-0410-975c-d299462d15a1
2008-01-15Fix RDF warning (freeing NULL query results).David Robillard1-1/+2
git-svn-id: http://svn.drobilla.net/lad/slv2@1055 a436a847-0d15-0410-975c-d299462d15a1
2008-01-15SLV2 0.4.4.David Robillard1-0/+25
git-svn-id: http://svn.drobilla.net/lad/slv2@1054 a436a847-0d15-0410-975c-d299462d15a1
2008-01-12Add plugin template interface (fast discovery of plugins with certain I/ODavid Robillard1-11/+121
characteristics). git-svn-id: http://svn.drobilla.net/lad/slv2@1051 a436a847-0d15-0410-975c-d299462d15a1
2007-12-19Update LV2 GUI URI.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@979 a436a847-0d15-0410-975c-d299462d15a1
2007-11-13Release preparation:David Robillard1-48/+0
Fix scons building (still experimental). Bump version everywhere. Properly clean documentation. git-svn-id: http://svn.drobilla.net/lad/slv2@910 a436a847-0d15-0410-975c-d299462d15a1
2007-10-04Fix librdf warnings.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@821 a436a847-0d15-0410-975c-d299462d15a1
2007-10-03Fix Plugin class related bugs.David Robillard1-9/+12
git-svn-id: http://svn.drobilla.net/lad/slv2@814 a436a847-0d15-0410-975c-d299462d15a1
2007-10-03Fix latency for updated LV2 spec.David Robillard1-6/+6
git-svn-id: http://svn.drobilla.net/lad/slv2@813 a436a847-0d15-0410-975c-d299462d15a1
2007-10-03Updated LV2 spec.David Robillard1-19/+5
git-svn-id: http://svn.drobilla.net/lad/slv2@809 a436a847-0d15-0410-975c-d299462d15a1
2007-09-24LV2 UI interface cleanups.David Robillard1-14/+5
Documentation reorganization. Updated LV2 spec (1.0beta5). git-svn-id: http://svn.drobilla.net/lad/slv2@775 a436a847-0d15-0410-975c-d299462d15a1
2007-09-23Support for plugin UIs in separate bundles.David Robillard1-13/+48
Fix some memory leaks. Better/more future proof UI interface. git-svn-id: http://svn.drobilla.net/lad/slv2@772 a436a847-0d15-0410-975c-d299462d15a1
2007-09-22LV2 UI extension updates.David Robillard1-15/+15
LV2 GUI support in ingen. git-svn-id: http://svn.drobilla.net/lad/slv2@763 a436a847-0d15-0410-975c-d299462d15a1
2007-07-29Build system fixes, building from top level doesn't recursively configure ↵David Robillard1-3/+4
slv2, but slv2 is still independently packageable/buildable. Think I've finally figured out how to do recursive autohell without resorting to suicide... git-svn-id: http://svn.drobilla.net/lad/slv2@650 a436a847-0d15-0410-975c-d299462d15a1
2007-07-23Updated LV2 spec.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/slv2@602 a436a847-0d15-0410-975c-d299462d15a1
2007-07-23Broke API to separate input/output from type (less code repetition and SLV2 ↵David Robillard1-2/+2
is more useful with unknown extended port types this way). Switched enum symbol naming scheme to be more typical and future proof. Added LV2 OSC support. git-svn-id: http://svn.drobilla.net/lad/slv2@600 a436a847-0d15-0410-975c-d299462d15a1
2007-07-01Fix a couple memory leaks/errors.David Robillard1-12/+44
Add proper bundle path finding (support plugins with binaries not immediately under their bundle paths, though none exist). Add slv2_plugin_get_bundle_uri. Add stub for loading plugin GUIs. git-svn-id: http://svn.drobilla.net/lad/slv2@553 a436a847-0d15-0410-975c-d299462d15a1
2007-06-30Aaaalright then, made it not static and put the code in the library. Stupid ↵David Robillard1-0/+9
warnings. git-svn-id: http://svn.drobilla.net/lad/slv2@550 a436a847-0d15-0410-975c-d299462d15a1
2007-06-30Reworked GUI access in a safer way, anticipating various GUI specs (w/o ↵David Robillard1-3/+13
breaking binary compatibility). Increment libtool library version number accordingly (new methods added, still backwards compatible). git-svn-id: http://svn.drobilla.net/lad/slv2@547 a436a847-0d15-0410-975c-d299462d15a1
2007-06-30Added support for (Lars Luthman's) GTK GUI extension (SLV2 still does NOT ↵David Robillard1-0/+39
depend on GTK!). git-svn-id: http://svn.drobilla.net/lad/slv2@546 a436a847-0d15-0410-975c-d299462d15a1
2007-06-01Load plugin data automatically on demand.David Robillard1-1/+10
git-svn-id: http://svn.drobilla.net/lad/slv2@528 a436a847-0d15-0410-975c-d299462d15a1
2007-05-09Ontology install path fixes.David Robillard1-9/+4
0.0.1 versioning stuff. Removed GNU 'standard' files I don't maintain anyway and make automake shutup about it. git-svn-id: http://svn.drobilla.net/lad/slv2@521 a436a847-0d15-0410-975c-d299462d15a1
2007-05-08Reworked simple query API to allow passing either QName or URI predicates.David Robillard1-18/+48
Hack around a Rasqal bug for the above (URI predicates). Clean up exposed names for greppability and to not violate user namespace. Fixed slv2_plugin_get_value and slv2_plugin_get_value_for_resource. git-svn-id: http://svn.drobilla.net/lad/slv2@517 a436a847-0d15-0410-975c-d299462d15a1
2007-04-28Use index instead of variable name for selecting query variables ↵David Robillard1-15/+14
(performance enhancement). Improved ladspa2lv2, converting port hints and min/max/default values. git-svn-id: http://svn.drobilla.net/lad/slv2@481 a436a847-0d15-0410-975c-d299462d15a1
2007-04-28Reworked query/value system to expose data type.David Robillard1-42/+48
git-svn-id: http://svn.drobilla.net/lad/slv2@475 a436a847-0d15-0410-975c-d299462d15a1
2007-04-23Incorporated patch from larsl for reading plugin manifest files for plugin data.David Robillard1-3/+6
Plugged several memory leaks. git-svn-id: http://svn.drobilla.net/lad/slv2@474 a436a847-0d15-0410-975c-d299462d15a1
2007-04-21Code cleanups.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/slv2@470 a436a847-0d15-0410-975c-d299462d15a1