Age | Commit message (Expand) | Author | Files | Lines |
2015-01-18 | Remove LILV_NEW_LV2 define. | David Robillard | 3 | -14/+1 |
2014-12-10 | Fix loading files with spaces in their path. | David Robillard | 1 | -6/+6 |
2014-11-22 | Windows fixes (thanks John Emmas). | David Robillard | 3 | -2/+16 |
2014-11-17 | Fix a few minor/unlikely memory errors. | David Robillard | 2 | -3/+5 |
2014-10-05 | Tolerate passing NULL to lilv_state_restore(). | David Robillard | 1 | -4/+6 |
2014-09-26 | Report specific error when dyn-manifest dlopen() fails (fix #983). | David Robillard | 1 | -1/+3 |
2014-09-26 | Update dyn-manifest loading for new sord. | David Robillard | 1 | -21/+26 |
2014-09-24 | Fixes for new sord. | David Robillard | 3 | -30/+76 |
2014-08-08 | Use Markdown in doc comments for better source readability. | David Robillard | 7 | -29/+29 |
2014-08-08 | Update copyright dates. | David Robillard | 10 | -11/+11 |
2014-08-08 | Fix various warnings. | David Robillard | 1 | -4/+4 |
2014-07-31 | Minor code cleanups, slightly reduce LOC. | David Robillard | 11 | -433/+240 |
2014-07-15 | Add lilv_world_unload_bundle() and lilv_world_unload_resource(). | David Robillard | 2 | -22/+112 |
2014-07-12 | Fix issues with lilv_plugin_get_author_name and friends (thanks Filipe Coelho... | David Robillard | 1 | -11/+26 |
2014-05-20 | Fix slow redundant parsing where many presets share a data file. | David Robillard | 2 | -16/+19 |
2014-05-05 | Fix use of lv2info -m and -p options to write plugin data. | David Robillard | 1 | -0/+14 |
2014-04-27 | Tolerate calling lilv_node_as_uri or lilv_node_as_blank on NULL. | David Robillard | 1 | -4/+4 |
2014-02-01 | Fix indentation. | David Robillard | 1 | -1/+1 |
2014-01-18 | Call lv2_lib_descriptor separately for different bundle paths | David Robillard | 3 | -4/+26 |
2014-01-12 | Factor out common file reading code. | David Robillard | 2 | -39/+32 |
2014-01-12 | Don't load files multiple times if they are listed as rdfs:seeAlso for severa... | David Robillard | 3 | -43/+56 |
2014-01-04 | Fix bugs introduced in r5255. | David Robillard | 1 | -3/+3 |
2014-01-04 | Add lilv_port_get_node() for using world query functions with ports. | David Robillard | 2 | -7/+15 |
2013-12-27 | Implement lv2:prototype. | David Robillard | 3 | -1/+25 |
2013-12-25 | Fix some const-correctness violations. | David Robillard | 3 | -7/+7 |
2013-12-19 | Add support for running plugins from Python by Kaspar Emanuel (fix #939 and #... | David Robillard | 1 | -0/+5 |
2013-12-17 | Fix more const issues. | David Robillard | 1 | -9/+10 |
2013-10-30 | Call GetProcAddress with correct calling convention on Windows (fix #932). | David Robillard | 1 | -4/+7 |
2013-08-25 | Support getting index of designated latency ports. | David Robillard | 1 | -3/+13 |
2013-08-25 | Support denoting latency ports with lv2:designation lv2:latency. | David Robillard | 3 | -5/+13 |
2013-05-30 | Fix unlikely memory leak in lilv_plugin_instantiate(). | David Robillard | 1 | -8/+8 |
2013-03-25 | Allow lilv_state_restore() to be used without passing an instance, for restor... | David Robillard | 1 | -2/+2 |
2013-02-18 | Make use of sord_get(). | David Robillard | 2 | -64/+34 |
2013-02-18 | Fix SordNode leaks. | David Robillard | 2 | -12/+12 |
2013-02-10 | Add lilv_world_ask() for easily checking if a statement exists. | David Robillard | 3 | -0/+35 |
2013-02-02 | Require a URI for lilv_state_to_string() and fail gracefully otherwise. | David Robillard | 1 | -0/+9 |
2013-01-27 | Don't print errors when loading plugin description as default state. | David Robillard | 1 | -5/+7 |
2013-01-26 | Support state:loadDefaultState. | David Robillard | 1 | -0/+3 |
2013-01-15 | Fix several plugin functions that failed to load data if called first. | David Robillard | 1 | -0/+6 |
2013-01-10 | Make lilv_plugin_get_port_by_designation() return a const pointer. | David Robillard | 1 | -5/+5 |
2012-11-23 | Add lilv_world_ask() for simply checking if a statement exists. | David Robillard | 1 | -0/+11 |
2012-11-23 | lilv_world_query_values_internal() => lilv_world_find_nodes_internal(). | David Robillard | 4 | -20/+20 |
2012-11-23 | Add lilv_nodes_merge() to API (address part of #835). | David Robillard | 3 | -41/+46 |
2012-11-23 | Add va_list variant of lilv_plugin_get_num_ports_of_class() (#758). | David Robillard | 1 | -19/+39 |
2012-11-23 | Support atom:supports in lilv_port_supports_event() (fix #857). | David Robillard | 1 | -5/+14 |
2012-11-23 | Factor out common "ask if a triple is present" pattern. | David Robillard | 4 | -29/+21 |
2012-08-13 | Fix potential crash when state saving fails. | David Robillard | 1 | -1/+2 |
2012-08-10 | Always back LilvNode with a SordNode and shave 16 bytes off of LilvNode. | David Robillard | 7 | -125/+107 |
2012-08-09 | Use existing PAGE_SIZE if defined (fix compilation on Haiku). | David Robillard | 1 | -3/+6 |
2012-08-09 | Fix Windows static build. | David Robillard | 1 | -1/+1 |