Dave Plater
a24409085f
- Update to 0.18.0 * Allow lilv_state_restore() to be used without passing an instance, for restoring port values via a callback only * Fix unlikely memory leak in lilv_plugin_instantiate() * Support denoting latency ports with lv2:designation lv2:latency * Allow passing NULL port_class to lilv_plugin_get_port_by_designation * Call GetProcAddress with correct calling convention on Windows * Add support for running plugins from Python by Kaspar Emanuel * Clean up after test suite so multiple runs are successful * Add lilv_port_get_node() for using world query functions with ports * lv2info: Don't display invalid control maxes and defaults (patch from Robin Gareus) * lilvmm.hpp: Add wrappers for UI API OBS-URL: https://build.opensuse.org/request/show/240896 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/lilv?expand=0&rev=10
116 lines
5.6 KiB
Plaintext
116 lines
5.6 KiB
Plaintext
-------------------------------------------------------------------
|
|
Fri Jul 11 17:10:16 UTC 2014 - reddwarf@opensuse.org
|
|
|
|
- Update to 0.18.0
|
|
* Allow lilv_state_restore() to be used without passing an instance,
|
|
for restoring port values via a callback only
|
|
* Fix unlikely memory leak in lilv_plugin_instantiate()
|
|
* Support denoting latency ports with lv2:designation lv2:latency
|
|
* Allow passing NULL port_class to lilv_plugin_get_port_by_designation
|
|
* Call GetProcAddress with correct calling convention on Windows
|
|
* Add support for running plugins from Python by Kaspar Emanuel
|
|
* Clean up after test suite so multiple runs are successful
|
|
* Add lilv_port_get_node() for using world query functions with ports
|
|
* lv2info: Don't display invalid control maxes and defaults
|
|
(patch from Robin Gareus)
|
|
* lilvmm.hpp: Add wrappers for UI API
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Sep 5 21:06:32 UTC 2013 - reddwarf@opensuse.org
|
|
|
|
- Update to 0.16.0
|
|
* Add lilv_world_ask() for easily checking if a statement exists
|
|
* Add lilv_world_get() and lilv_port_get() for easily getting one value
|
|
* Add lilv_nodes_merge()
|
|
* Make lilv_plugin_get_port_by_designation() return a const pointer
|
|
* Require a URI for lilv_state_to_string() and fail gracefully otherwise
|
|
* Fail gracefully when lilv_state_new_from_string() is called on NULL
|
|
* Make state loading functions fall back to lv2:default for port values,
|
|
so a plugin description can be loaded as default state
|
|
* Ignore state ports with no value instead of printing an error
|
|
* Support atom:supports in lilv_port_supports_event()
|
|
* Add va_list variant of lilv_plugin_get_num_ports_of_class()
|
|
* Fix several plugin functions that failed to load data if called first
|
|
* Correctly depend on serd at build time (fix compilation in odd cases)
|
|
* Disable timestamps in HTML documentation for reproducible build
|
|
* lilvmm.hpp: Support varargs for Plugin::get_num_ports_of_class()
|
|
* lilvmm.hpp: Add several missing methods
|
|
* Update to waf 1.7.8 and autowaf r90 (install docs to versioned directory)
|
|
- Remove lilv-0.14.4-build_compare.patch, applied upstream
|
|
- Add lilv-0.16.0-python_bindings.patch
|
|
- The minimum sord version is now 0.12.0
|
|
- The documentation directory is now versioned
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Aug 26 23:11:36 UTC 2012 - reddwarf@opensuse.org
|
|
|
|
- Update to 0.14.4
|
|
* Deprecate old flawed Lilv::Instance constructors
|
|
* Fix documentation for ui_type parameter of lilv_ui_is_supported()
|
|
* Fix crash when lv2info is run with an invalid URI argument
|
|
* Gracefully handle failure to save plugin state and print error message
|
|
* Reduce memory usage (per node)
|
|
* Simpler node implementation always backed by a SordNode
|
|
* Make all 'zix' symbols private to avoid symbol clashes in static builds
|
|
* Add lv2bench utility
|
|
* Fix various hyper-strict warnings
|
|
* Do not require a C++ compiler to build
|
|
* Add option to build utilities as static binaries
|
|
* Upgrade to waf 1.7.2
|
|
* lilvmm.hpp: Make Lilv::Instance handle features and failed instantiations
|
|
* lilvmm.hpp: Add Lilv::Instance::get_handle()
|
|
* lilvmm.hpp: Add Lilv::Instance::get_extension_data()
|
|
- Add lilv-0.14.4-build_compare.patch to make build reproducible
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Aug 9 15:03:57 UTC 2012 - reddwarf@opensuse.org
|
|
|
|
- Update to 0.14.2
|
|
* Fix dynmanifest support
|
|
* Add lilv_plugin_get_extension_data
|
|
* Use path variables in pkgconfig files
|
|
* Install man page to DATADIR (e.g. PREFIX/share/man, not PREFIX/man)
|
|
* Make Lilv::uri_to_path static inline (fix linking errors)
|
|
* Use correct URI for dcterms:replaces (for hiding old plugins):
|
|
"http://purl.org/dc/terms/replaces"
|
|
* Fix compilation on BSD
|
|
* Only load dynmanifest libraries once per bundle, not once per plugin
|
|
* Fix lilv_world_find_nodes to work with wildcard subjects
|
|
* Add lilv_plugin_get_related to get resources related to plugins that
|
|
are not directly rdfs:seeAlso linked (e.g. presets)
|
|
* Add lilv_world_load_resource for related resources (e.g. presets)
|
|
* Print presets in lv2info
|
|
* Remove locale smashing kludges and use new serd functions for converting
|
|
nodes to/from numbers.
|
|
* Add LilvState API for handling plugin state. This makes it simple to
|
|
save and restore plugin state both in memory and on disk, as well as
|
|
save presets in a host-sharable way since the disk format is identical
|
|
to the LV2 presets format.
|
|
* Update old references to lv2_list (now lv2ls)
|
|
* Support compilation as C++ under MSVC++.
|
|
* Remove use of wordexp.
|
|
* Add lilv_plugin_get_port_by_designation() and lilv_port_get_index() as an
|
|
improved generic alternative to lilv_plugin_get_latency_port_index().
|
|
* Add lilv_plugin_get_project() and get author information from project if
|
|
it is not given directly on the plugin.
|
|
* Remove glib dependency
|
|
* Add lv2core as a pkg-config dependency (for lv2.h header include)
|
|
* Obey prefix when installing bash completion script
|
|
* Support integer minimum, maximum, and default port values in
|
|
lilv_plugin_get_port_ranges_float
|
|
* Add ability to build static library
|
|
* Fix building python bindings
|
|
* Make free methods tolerate being called on NULL
|
|
* Remove lv2jack (replaced by jalv)
|
|
* Fix parsing extra plugin data files in other bundles
|
|
* Fix lilv_ui_is_supported when Lilv is built independently
|
|
- Split serd and sord to different packages
|
|
- Package python bindings
|
|
- Remove patches changing the soname
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Jun 1 10:13:23 UTC 2011 - davejplater@gmail.com
|
|
|
|
- Created package lilv the successor to slv2
|
|
|