summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-04-29Remove unused value type enumeration value.David Robillard2-5/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3224 a436a847-0d15-0410-975c-d299462d15a1
2011-04-29Terser names for value constructors.David Robillard4-19/+19
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3223 a436a847-0d15-0410-975c-d299462d15a1
2011-04-29Don't hide pointers behind typedefs.David Robillard12-552/+527
Use const appropriately in API (makes it clear from the type whether objects should be freed or not). git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3222 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Rename slv2 to lilv.David Robillard13-1507/+1460
API breakage was proving too much of a hassle, and would be even further of a mess after release and packaging. Best to make a clean break now, and fix installation to support parallel installs and prevent this kind of problem in the future. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3217 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Tidy (rearrange prototypes in sane order).David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3212 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28More future-proof collection APIs.David Robillard6-21/+48
Make all iterator actions occur through a collection specific function. Verbose, and a low of API, but allows for the possibility of different collection implementation types (given a choice between verbosity and no type safety, I'll take verbosity). git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3211 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Update for new Sord API.David Robillard3-38/+38
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3208 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Compile with older versions of glib.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3205 a436a847-0d15-0410-975c-d299462d15a1
2011-04-28Update for new Sord API.David Robillard3-16/+16
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3202 a436a847-0d15-0410-975c-d299462d15a1
2011-04-27Fix memory leaks.David Robillard5-68/+85
Don't modify model while reading it. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3199 a436a847-0d15-0410-975c-d299462d15a1
2011-04-27Update for new Serd API.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3198 a436a847-0d15-0410-975c-d299462d15a1
2011-04-23Improve node struct alignmentDavid Robillard1-2/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3196 a436a847-0d15-0410-975c-d299462d15a1
2011-04-22Switch to ISC license (legally equivalent to MIT license but with less ↵David Robillard12-240/+138
obnoxious lawyer noise). git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3187 a436a847-0d15-0410-975c-d299462d15a1
2011-04-22Remove UI instance API from SLV2 (apps should implement UIs via Suil now).David Robillard4-283/+18
Remove UI extension API and header from public APIs entirely. Rework UI instance API to support multiple UIs and a more precise notion of embedding support. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3186 a436a847-0d15-0410-975c-d299462d15a1
2011-04-22Don't print warning when directory in LV2_PATH is nonexistent.David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3185 a436a847-0d15-0410-975c-d299462d15a1
2011-04-16Update copyright headersDavid Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3153 a436a847-0d15-0410-975c-d299462d15a1
2011-04-16Squeeze blank lines and delete trailing whitespace.David Robillard8-26/+13
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3152 a436a847-0d15-0410-975c-d299462d15a1
2011-03-29Tidy expand().David Robillard1-3/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3134 a436a847-0d15-0410-975c-d299462d15a1
2011-03-28Implement variable expansion on Windows and use standard LV2_PATHDavid Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3132 a436a847-0d15-0410-975c-d299462d15a1
2011-03-28Fix LV2_PATH parsing.David Robillard1-9/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3131 a436a847-0d15-0410-975c-d299462d15a1
2011-03-28Fix Windows buildDavid Robillard6-28/+83
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3129 a436a847-0d15-0410-975c-d299462d15a1
2011-03-17Add SLV2_OPTION_DYN_MANIFEST to dynamically enable/disable dyn-manifest.David Robillard3-38/+60
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3106 a436a847-0d15-0410-975c-d299462d15a1
2011-03-15Fix dynamic manifest error handling.David Robillard1-5/+13
Close dynamic manifest libraries after discovery. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3084 a436a847-0d15-0410-975c-d299462d15a1
2011-03-11Leaner slv2_plugin_is_replaced implementation.David Robillard1-17/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3067 a436a847-0d15-0410-975c-d299462d15a1
2011-03-11Add slv2_plugin_is_replaced to allow hosts to hide old plugins.David Robillard3-1/+45
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3066 a436a847-0d15-0410-975c-d299462d15a1
2011-03-10Hide as many collection details as possible while keeping generic iterator / ↵David Robillard2-0/+101
SLV2_FOREACH API. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3064 a436a847-0d15-0410-975c-d299462d15a1
2011-03-09Add a deprecated stub for slv2_plugins_free for backwards source compatibility.David Robillard2-20/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3060 a436a847-0d15-0410-975c-d299462d15a1
2011-03-09New collections and iterator API.David Robillard8-169/+150
Deprecate slv2_*_get_at. Remove slv2_world_get_plugins_by_filter. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3057 a436a847-0d15-0410-975c-d299462d15a1
2011-03-08Fix UI host API.David Robillard2-8/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3055 a436a847-0d15-0410-975c-d299462d15a1
2011-03-08Use the same data structure for all collections (fix ticket #650).David Robillard3-58/+28
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3054 a436a847-0d15-0410-975c-d299462d15a1
2011-03-07Fix memory leaks.David Robillard4-41/+36
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3052 a436a847-0d15-0410-975c-d299462d15a1
2011-03-07Fix memory leak.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3050 a436a847-0d15-0410-975c-d299462d15a1
2011-03-07Tidy.David Robillard1-10/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3046 a436a847-0d15-0410-975c-d299462d15a1
2011-03-07Suppose xsd:double numeric literals.David Robillard3-1/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3045 a436a847-0d15-0410-975c-d299462d15a1
2011-03-06Add a UI host descriptor to allow for a graceful transition to a more ↵David Robillard2-6/+43
powerful UI extension. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3044 a436a847-0d15-0410-975c-d299462d15a1
2011-03-06Relicense to 2-clause BSD... for the good of LV2... and hopefully me... ↵David Robillard13-222/+312
eventually... in some very abstract kind of way... :/ git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3041 a436a847-0d15-0410-975c-d299462d15a1
2011-03-05Warn when plugin lv2:binary is missing.David Robillard1-0/+4
Don't crash lv2_inspect when lv2:binary is missing. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3040 a436a847-0d15-0410-975c-d299462d15a1
2011-02-24Make Suil exclusively deal with instantiating (not choosing) UIs.David Robillard4-96/+197
Add slv2_ui_instance_new as a replacement for slv2_ui_instantiate (now deprecated), which supports cross-toolkit embedding by taking an additional widget type pointer. Remove direct Suil dependency from Ingen. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3022 a436a847-0d15-0410-975c-d299462d15a1
2011-02-24Move UI stuff back into slv2.h (avoid breakage).David Robillard3-13/+0
Deprecate slv2_ui_instance_get_descriptor and slv2_ui_instance_get_handle. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3020 a436a847-0d15-0410-975c-d299462d15a1
2011-02-22Remove hilariously useless code.David Robillard1-2/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3006 a436a847-0d15-0410-975c-d299462d15a1
2011-02-22Tidy.David Robillard1-15/+16
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3002 a436a847-0d15-0410-975c-d299462d15a1
2011-02-19Fix return of undefined values when port range value (min, max, or default) ↵David Robillard1-10/+9
is unspecified. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2999 a436a847-0d15-0410-975c-d299462d15a1
2011-02-17Error reporting.David Robillard1-2/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2981 a436a847-0d15-0410-975c-d299462d15a1
2011-02-17Make ui.h C++ compatible.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2971 a436a847-0d15-0410-975c-d299462d15a1
2011-02-16Update for new Sord API.David Robillard2-3/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2957 a436a847-0d15-0410-975c-d299462d15a1
2011-02-16Update for new Sord API.David Robillard5-16/+23
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2956 a436a847-0d15-0410-975c-d299462d15a1
2011-02-16Update for new Sord API.David Robillard5-22/+20
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2955 a436a847-0d15-0410-975c-d299462d15a1
2011-02-12Wrap rest of API (with a few troublesome exceptions).David Robillard1-0/+11
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2942 a436a847-0d15-0410-975c-d299462d15a1
2011-02-12Make UI support a compile-time option, and separate UI functions into slv2/ui.h.David Robillard3-4/+15
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2930 a436a847-0d15-0410-975c-d299462d15a1
2011-02-12Use new-style LV2 includes.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2926 a436a847-0d15-0410-975c-d299462d15a1