Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-08-06 | Make lilv_dir_for_each() ignore dot entries | David Robillard | 1 | -7/+3 | |
2020-08-06 | Separate filesystem utilities | David Robillard | 1 | -0/+1 | |
2020-07-16 | Add missing variable initializations | David Robillard | 1 | -3/+3 | |
2020-07-16 | Fix conversion warnings | David Robillard | 1 | -1/+1 | |
2020-07-16 | Clean up includes | David Robillard | 1 | -2/+2 | |
2020-05-17 | Make lilv_world_get() use translations | David Robillard | 1 | -0/+20 | |
2020-01-18 | Fix memory leak when dyn-manifest has no plugins | David Robillard | 1 | -1/+18 | |
2020-01-18 | Remove redundant LILV_API declarations | David Robillard | 1 | -15/+15 | |
There are specified in the declarations in the public API header, there is no need to duplicate them in the definitions. | |||||
2019-04-14 | Use modern LV2 includes | David Robillard | 1 | -3/+3 | |
2019-04-14 | Add option to override LV2_PATH in applications | David Robillard | 1 | -1/+10 | |
2019-04-14 | Zero-initialise world | David Robillard | 1 | -1/+1 | |
2019-03-31 | Fix building with --dyn-manifest in MSVC | Henna Haahti | 1 | -1/+1 | |
2019-01-13 | Update copyright dates | David Robillard | 1 | -1/+1 | |
2019-01-13 | Clean up includes | David Robillard | 1 | -5/+20 | |
Sorts includes from local to global (which catches errors) and fixes missing includes found by the resulting breakage and include-what-you-use. | |||||
2017-12-29 | Fix inconsistent parameter names | David Robillard | 1 | -4/+4 | |
2017-12-29 | Remove redundant typedefs | David Robillard | 1 | -1/+0 | |
2017-12-29 | Fix potential memory leaks | David Robillard | 1 | -1/+4 | |
2017-12-29 | Remove pointless casts | David Robillard | 1 | -2/+2 | |
2017-12-29 | Use braces everywhere | David Robillard | 1 | -4/+8 | |
2017-03-23 | Don't attempt to load remote or non-Turtle files | David Robillard | 1 | -2/+10 | |
2016-09-18 | Fix short string allocation | David Robillard | 1 | -1/+1 | |
2016-09-16 | Add lilv_world_get_symbol() | David Robillard | 1 | -0/+48 | |
2016-09-04 | Fix NULL predicate crash in lilv_world_find_nodes | David Robillard | 1 | -0/+3 | |
2016-07-31 | Fix compilation with C++ compilers | David Robillard | 1 | -7/+8 | |
2016-07-14 | Clean up and remove dead code | David Robillard | 1 | -6/+2 | |
2016-07-11 | Fully reset plugin struct when plugin is reloaded | David Robillard | 1 | -17/+28 | |
This fixes a bug where, for example, after re-loading a plugin from a different bundle, the LilvPlugin would still report the old bundle. Also never replace a newer version with an older version when a bundle is loaded. Ignores the entire bundle if an older plugin than one loaded is found. This is tricky because the unit of loading/unloading is a bundle, and the unit of versioning is a plugin, but since having data from an old bundle still loaded seems like a bad idea, this seems like the most correct behaviour. | |||||
2016-07-11 | Improve test coverage | David Robillard | 1 | -8/+5 | |
2016-07-08 | Fix plugin version conflict resolution | David Robillard | 1 | -4/+18 | |
2016-03-17 | Replace bundle when newer plugin version is loaded | David Robillard | 1 | -3/+124 | |
Based on patch from Robin Gareus. | |||||
2015-11-07 | Remove unloaded plugins from world plugin list | David Robillard | 1 | -12/+52 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5810 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-10-29 | Fix loading dynamic manifest from bundles with spaces | David Robillard | 1 | -2/+6 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5799 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-10-29 | Fix comment | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5798 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-10-29 | Support reloading bundles | David Robillard | 1 | -39/+64 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5797 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-03-28 | Fix lilv_world_ask() to work with wildcards. | David Robillard | 1 | -2/+5 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5645 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-03-16 | Load discovered owl ontologies as specifications. | David Robillard | 1 | -13/+18 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5635 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-03-07 | Add support for state deletion. | David Robillard | 1 | -3/+6 | |
Add lilv_node_get_path(). Add lilv_state_get_uri(). Add lilv_state_delete(). Fix creation of duplicate manifest entries when saving state. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5617 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-03-07 | Fix unload functions to only unload the necessary data. | David Robillard | 1 | -3/+3 | |
Previously, it was quite likely that a massive subset of the entire world was removed as well. Oops. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5616 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-01-29 | Expose lilv_world_load_specifications() and lilv_world_load_plugin_classes(). | David Robillard | 1 | -2/+2 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5529 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-01-29 | Fix memory leak. | David Robillard | 1 | -0/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5527 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-01-18 | Remove LILV_NEW_LV2 define. | David Robillard | 1 | -4/+0 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5522 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-12-10 | Fix loading files with spaces in their path. | David Robillard | 1 | -6/+6 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5493 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-11-22 | Windows fixes (thanks John Emmas). | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5491 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-09-26 | Report specific error when dyn-manifest dlopen() fails (fix #983). | David Robillard | 1 | -1/+3 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5467 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-09-26 | Update dyn-manifest loading for new sord. | David Robillard | 1 | -21/+26 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5466 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-09-24 | Fixes for new sord. | David Robillard | 1 | -22/+48 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5465 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-08-08 | Use Markdown in doc comments for better source readability. | David Robillard | 1 | -2/+2 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5429 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-07-31 | Minor code cleanups, slightly reduce LOC. | David Robillard | 1 | -96/+64 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5416 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-07-15 | Add lilv_world_unload_bundle() and lilv_world_unload_resource(). | David Robillard | 1 | -21/+105 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5413 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-05-20 | Fix slow redundant parsing where many presets share a data file. | David Robillard | 1 | -15/+16 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5405 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2014-01-18 | Call lv2_lib_descriptor separately for different bundle paths | David Robillard | 1 | -2/+18 | |
(fix loading several dynamic plugins like Ingen at once). git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5314 a436a847-0d15-0410-975c-d299462d15a1 |