Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-07-16 | Use standard assert for test expectations | David Robillard | 10 | -398/+358 | |
The old one aborted anyway, and I've been using assert for tests in other projects for a while now, and never really missed having something more complex. The lack of a dependency or repetitive code is nice. Since the unit tests are about to be split up, the abort thing will become less of an issue anyway. | |||||
2020-07-15 | Rewrite and separate common test facilities | David Robillard | 4 | -415/+486 | |
2020-06-19 | Check for CreateSymbolicLink at configure time | David Robillard | 2 | -18/+10 | |
This uses the system CreateSymbolicLink if it is available at compile time, and if not, just acts as if the link failed (which is extremely likely anyway). This removes the ugly wrapper code that has been a constant source of compatibility headaches with weird toolchains. | |||||
2020-06-19 | Use strict function checks | David Robillard | 1 | -0/+8 | |
This makes the function checks work with strict warnings and Werror, but is also stronger because checks will fail if the function prototypes are not as expected (though this is incredibly unlikely since these are all standard functions). | |||||
2020-06-19 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-05-17 | Make lilv_world_get() use translations | David Robillard | 3 | -1/+27 | |
2020-04-26 | Lilv 0.24.8v0.24.8 | David Robillard | 2 | -4/+4 | |
2020-04-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-03-12 | Use consistent tagline in documentation | David Robillard | 1 | -3/+4 | |
2020-02-23 | Fix namespace add operator with Python 2 | David Robillard | 1 | -0/+3 | |
In Python 2, a __coerce__ attribute of the Namespace is requested in this case, which ends up producing an error. Work around this by defining a __coerce__ method that does nothing so __getattr__ is not called for it. | |||||
2020-02-17 | Add __add__ magic method to Python Namespace class | Christopher Arndt | 2 | -0/+6 | |
This allows creating URIs from a Namespace instance by adding a suffix. | |||||
2020-02-17 | Simplify lv2_list_presets.py | David Robillard | 1 | -4/+2 | |
2020-02-17 | Allow passing strings for URIs in Python API when unambiguous | David Robillard | 3 | -45/+113 | |
2020-02-17 | Update Python binding boilerplate | David Robillard | 2 | -4/+4 | |
2020-02-17 | Add positive Python test for get_port_by_designation() | David Robillard | 2 | -0/+6 | |
2020-02-17 | Support checking if Python objects with URIs are in a Nodes | David Robillard | 2 | -7/+9 | |
2020-02-17 | Add portable Python _is_string() utility and use it everywhere | David Robillard | 1 | -5/+12 | |
2020-01-18 | Fix memory leak when dyn-manifest has no plugins | David Robillard | 4 | -12/+23 | |
2020-01-18 | Fix cases where incorrect translation is used | David Robillard | 2 | -10/+18 | |
2020-01-18 | Clean up i18n code | David Robillard | 1 | -20/+20 | |
2020-01-18 | Delete all temporary state bundles saved by the test suite | David Robillard | 1 | -9/+35 | |
2020-01-18 | Update manifest when deleting state from a non-empty bundle | David Robillard | 1 | -1/+6 | |
This fixes a bug where the manifest would contain dangling references to old state if multiple states were saved to a single bundle and one is deleted. As far as I know this has not been encountered by anyone in reality, since this is an uncommon scenario (it's somewhat in question whether it should be supported at all). | |||||
2020-01-18 | Support deleting state that has not been saved | David Robillard | 1 | -16/+21 | |
This makes it possible to delete state bundles created from an instance, where the plugin has added some files to the bundle, but the state has not yet been saved by the host so there is no manifest and/or state file. | |||||
2020-01-18 | Clean up path code in lilv_state_delete() | David Robillard | 1 | -6/+5 | |
2020-01-18 | Fix deleting state bundles loaded from the model | David Robillard | 3 | -38/+52 | |
2020-01-18 | Only remove files in state bundle when deleting state | David Robillard | 1 | -6/+8 | |
2020-01-18 | Factor out writing state manifest | David Robillard | 1 | -10/+25 | |
2020-01-18 | Ensure state directory path always ends in a separator | David Robillard | 3 | -8/+33 | |
This can cause problems when resolving relative paths against the bundle directory, and it's simpler to ensure that the path always ends in a separator than deal with both cases in every place it is used. | |||||
2020-01-18 | Remove redundant LILV_API declarations | David Robillard | 10 | -130/+130 | |
There are specified in the declarations in the public API header, there is no need to duplicate them in the definitions. | |||||
2019-12-09 | Fix waflib submodule reference | David Robillard | 1 | -1/+1 | |
2019-12-08 | Implement state:freePath feature | David Robillard | 5 | -32/+85 | |
2019-11-10 | Lilv 0.24.6v0.24.6 | David Robillard | 2 | -3/+3 | |
2019-11-10 | Add __pycache__ to gitignore | David Robillard | 1 | -0/+1 | |
2019-11-10 | Use a normal test context for Python tests | David Robillard | 1 | -1/+1 | |
2019-11-10 | Remove old release targets | David Robillard | 1 | -18/+0 | |
2019-11-09 | Add example Python script to list plugin presets | Christopher Arndt | 2 | -1/+50 | |
2019-11-09 | Make Python exceptions more informative | David Robillard | 1 | -4/+4 | |
2019-11-09 | Fix pkg-config dependencies | David Robillard | 1 | -1/+1 | |
2019-11-02 | Update autowaf | David Robillard | 2 | -0/+5 | |
2019-11-02 | Normalise NEWS file | David Robillard | 1 | -111/+111 | |
2019-10-23 | Fix Python tests on Python2 | David Robillard | 1 | -5/+15 | |
2019-10-23 | Skip instance test if numpy is missing | David Robillard | 1 | -1/+5 | |
2019-10-23 | Fix Python bindings on Windows | David Robillard | 2 | -5/+13 | |
2019-10-22 | Fix Python bindings on Mac | David Robillard | 1 | -1/+6 | |
2019-10-21 | Show output of Python tests | David Robillard | 1 | -1/+1 | |
2019-10-21 | Don't depend on order in test expectations | David Robillard | 1 | -2/+2 | |
2019-10-21 | Don't print UI URIs in unit test | David Robillard | 1 | -2/+0 | |
2019-10-21 | Fix Python memory leaks | David Robillard | 1 | -2/+8 | |
2019-10-21 | Fix memory error in Python World.unload_resource() | David Robillard | 1 | -1/+3 | |
This is pretty ridiculous behaviour on behalf of the GC, if you ask me. | |||||
2019-10-21 | Make Python bindings more Pythonic | David Robillard | 3 | -7/+44 | |