Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-12 | Remove use of deprecated readdir_r | David Robillard | 3 | -6/+8 | |
2017-01-04 | Lilv 0.24.2v0.24.2 | David Robillard | 5 | -7/+8 | |
2017-01-03 | Always escape file URIs | David Robillard | 1 | -5/+5 | |
2016-10-01 | Transition away from deprecated _BSD_SOURCE | David Robillard | 2 | -1/+2 | |
2016-09-26 | Fix comparison of restored states with paths | David Robillard | 3 | -4/+15 | |
2016-09-20 | Update Python documentation version | David Robillard | 1 | -2/+2 | |
2016-09-19 | Lilv 0.24.0v0.24.0 | David Robillard | 2 | -4/+4 | |
2016-09-18 | Update copyright dates | David Robillard | 4 | -4/+4 | |
2016-09-18 | Update documentation style | David Robillard | 1 | -63/+53 | |
2016-09-18 | Make Python test suite work without installing | David Robillard | 1 | -4/+7 | |
2016-09-18 | Fix warning | David Robillard | 1 | -2/+2 | |
2016-09-18 | Fix memory, file, and library leaks | David Robillard | 6 | -5/+18 | |
2016-09-18 | Fix short string allocation | David Robillard | 1 | -1/+1 | |
2016-09-16 | Add lilv_world_get_symbol() | David Robillard | 4 | -0/+107 | |
2016-09-16 | Add missing include | David Robillard | 1 | -2/+3 | |
2016-09-05 | Add project tag to release posts | David Robillard | 1 | -1/+1 | |
2016-09-05 | Tidy up man pages | David Robillard | 3 | -10/+10 | |
2016-09-05 | Improve Python documentation | David Robillard | 1 | -32/+49 | |
2016-09-05 | Fix typo in comment | David Robillard | 1 | -1/+1 | |
2016-09-05 | Fix Python documentation generation | David Robillard | 3 | -8/+39 | |
2016-09-05 | Add Python binding documentation generator | David Robillard | 3 | -0/+453 | |
2016-09-05 | Add missing file | David Robillard | 1 | -0/+1732 | |
2016-09-05 | Add new hand-crafted Python bindings | David Robillard | 5 | -90/+294 | |
New bindings are Pythonic, supporting iteration, DWIM type conversion, pretty printing, and so on, where possible. Updated test suite covers 100% of binding code. Which is to say: add real Python bindings. As far as the Lilv API itself is concerned, you can do everything via Python. However, more work is needed to make fancy wrappers for parts of LV2 itself (MIDI, URI map, etc) to be able to run advanced plugins. | |||||
2016-09-05 | Fix misleading error message | David Robillard | 2 | -71/+1 | |
2016-09-04 | Fix NULL predicate crash in lilv_world_find_nodes | David Robillard | 2 | -1/+5 | |
2016-08-27 | Use consistent README formatting | David Robillard | 1 | -1/+1 | |
2016-08-27 | Add lv2apply utility/example | David Robillard | 4 | -3/+392 | |
2016-08-27 | Update documentation style | David Robillard | 2 | -213/+454 | |
2016-08-26 | Fix man page formatting for consistency | David Robillard | 2 | -4/+4 | |
2016-08-26 | Fix compilation with C++ | David Robillard | 2 | -3/+3 | |
2016-08-17 | Add target for generating release announcements | David Robillard | 3 | -10/+18 | |
2016-08-16 | Never call qsort on NULL | David Robillard | 1 | -2/+6 | |
(Fix clang static analyzer warning) | |||||
2016-08-01 | Check for libdl | David Robillard | 1 | -3/+7 | |
2016-08-01 | Use consistent feature test macros | David Robillard | 1 | -1/+1 | |
2016-08-01 | Add missing include | David Robillard | 1 | -0/+1 | |
2016-08-01 | Use consistent feature test macros | David Robillard | 4 | -5/+5 | |
2016-07-31 | Fix Windows compilation | David Robillard | 2 | -1/+3 | |
2016-07-31 | Fix compilation with C++ compilers | David Robillard | 4 | -19/+17 | |
2016-07-25 | Support test coverage with LLVM | David Robillard | 2 | -24/+17 | |
2016-07-24 | Add lilv_state_set_metadata() | David Robillard | 4 | -71/+162 | |
This allows setting useful metadata on a state description accessible to hosts but not plugins, such as pset:bank and rdfs:comment. Based on patch from Hanspeter Portner. | |||||
2016-07-14 | Improve test coverage | David Robillard | 16 | -9/+574 | |
2016-07-14 | Clean up and remove dead code | David Robillard | 4 | -49/+17 | |
2016-07-12 | Fix state file versioning | David Robillard | 2 | -29/+20 | |
2016-07-12 | Improve test coverage | David Robillard | 1 | -0/+1 | |
2016-07-11 | Improve test framework | David Robillard | 1 | -3/+3 | |
2016-07-11 | Fully reset plugin struct when plugin is reloaded | David Robillard | 5 | -31/+95 | |
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 | 5 | -15/+42 | |
2016-07-10 | Test versioned plugin replacement | David Robillard | 8 | -8/+345 | |
2016-07-10 | Test lilv_node_as_float on non-numeric nodes | David Robillard | 1 | -0/+1 | |
2016-07-09 | Check lv2:binary predicate for UIs | Hanspeter Portner | 2 | -2/+6 | |