On Sun, 05 Jul 2009 22:03:51 +1000 Fraser <[email protected]> wrote:
> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi Everyone, > > I've released a new version of the Invada LV2 plugins. Major changes > are: > > * Added new plugin: 'Delay - Munge'. > > A delay with non-linear response in the feedback loop. The 'munge' > affect is more noticeable the higher the feedback. Also features a > LFO and delay calculator. Screenshot: > http://www.invadarecords.com/images/downloads/Screenshot-Invada_Delay_Munge.png > > * Added new plugin: 'Test Tones' > > This was more for myself but others may appreciate this. Just a > simple sine oscillator but via the custom GUI the frequency can be > set to well known calibration and musical frequencies. Useful if you > need to fault find, calibrate analogue equipment or if desperate to > tune an instrument when you have no tuner handy. > > * Eliminated 'zipping' from changing controls. > > All plugins now handle parameter changes (across the entire range) > without producing any audio artefacts ('zipping' noises). No issues > with automation of controls. > > * Filters now adjustable from the display > > Adjust filters by dragging the response curve about one the display > within the filter plugins. > > * Some RDF updates > + ladspa URN as per > http://lists.lv2plug.in/pipermail/devel-lv2plug.in/2009-June/000226.html > + Added extended port properties to rdf (log) > > * Numerous tweaks/improvements. > > > People using lv2rack version 4 should upgrade to version 5 before > using this release as I've backed out a workaround from version 1.0.1 > which was done just to support version 4 of lv2rack. > > Download is here: > http://www.invadarecords.com/Downloads.php?ID=00000264 Ubuntu > packages here: https://launchpad.net/~invada/+archive/ppa > > cheers, > Fraser > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFKUJanNZroiEh4erwRAr6ZAJ9CDgBrY7Q4ENIH3ymrmma7YJym6QCfc08b > 17B/ZGMUvHgedRZ6CnMHK1g= > =JCt2 > -----END PGP SIGNATURE----- Very cool Fraser, thanks. Arch Linux User Repository version is updated. You have a stray \n somewhere it seems: \nmake all in plugin/library... And I wrote you a little patch that allows the use of DESTDIR, which makes packaging a bit easier. Regards, Philipp
--- invada-studio-plugins-lv2-1.1.0/Makefile 2009-04-13 21:01:19.000000000 +0200 +++ Makefile 2009-07-06 21:36:03.000000000 +0200 @@ -35,7 +35,7 @@ SUBDIRS = plugin/library plugin plugingui/widgets plugingui GLADEDIRS = plugingui/gtk - +DESTDIR = "" all: @for i in $(SUBDIRS); do \ @@ -52,26 +52,26 @@ install: @echo "" - @echo "use 'make install-user' to install in $(INSTALL_USER_PLUGINS_DIR) or 'make install-sys' to install in $(INSTALL_SYS_PLUGINS_DIR)" + @echo "use 'make install-user' to install in $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR) or 'make install-sys' to install in $(INSTALL_SYS_PLUGINS_DIR)" @echo "" install-sys: - -mkdir -p $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - -mkdir -p $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk - cp plugin/*.so $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp plugingui/*.so $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp rdf/*.ttl $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp plugingui/gtk/*.png $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk - cp plugingui/gtk/*.xml $(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + -mkdir -p $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + -mkdir -p $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + cp plugin/*.so $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp plugingui/*.so $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp rdf/*.ttl $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp plugingui/gtk/*.png $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + cp plugingui/gtk/*.xml $(DESTDIR)$(INSTALL_SYS_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk install-user: - -mkdir -p $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - -mkdir -p $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk - cp plugin/*.so $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp plugingui/*.so $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp rdf/*.ttl $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) - cp plugingui/gtk/*.png $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk - cp plugingui/gtk/*.xml $(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + -mkdir -p $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + -mkdir -p $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + cp plugin/*.so $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp plugingui/*.so $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp rdf/*.ttl $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR) + cp plugingui/gtk/*.png $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk + cp plugingui/gtk/*.xml $(DESTDIR)$(INSTALL_USER_PLUGINS_DIR)/$(INSTALL_BUNDLE_DIR)/gtk always:
_______________________________________________ Linux-audio-dev mailing list [email protected] http://lists.linuxaudio.org/mailman/listinfo/linux-audio-dev
