diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | wscript | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -jalv (9999) unstable; +jalv (1.2.0) stable; * Tune UI update rate and ring size based on JACK rate and MIDI buffer size to handle the handle the maximum message rate the plugin can send. @@ -9,10 +9,10 @@ jalv (9999) unstable; * Refuse to instantiate plugins which require unsupported features * Support LV2 buf-size extension (with all features) * Add Gtk3 UI - * Port to Windows + * Port to MinGW * Fix Jack Session support - -- David Robillard <d@drobilla.net> + -- David Robillard <d@drobilla.net> Sun, 14 Oct 2012 18:38:53 -0400 jalv (1.0.0) stable; @@ -4,7 +4,7 @@ from waflib.extras import autowaf as autowaf import waflib.Options as Options # Version of this package (even if built as a child) -JALV_VERSION = '1.0.0' +JALV_VERSION = '1.2.0' # Variables for 'waf dist' APPNAME = 'jalv' @@ -34,7 +34,7 @@ def configure(conf): autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.14.0', mandatory=True) autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', - atleast_version='0.4.5', mandatory=True) + atleast_version='0.5.0', mandatory=True) autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', atleast_version='0.6.0', mandatory=True) autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM', |