From 65ef41268f547c2ef74a0dcaf680a5b72b3a20c8 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 5 Mar 2014 19:59:43 +0100 Subject: Added contributor. --- AUTHORS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AUTHORS b/AUTHORS index 1d57d23..0b92f3e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,3 +6,6 @@ Developer: Graphics, GUI design and logo: Lars Bisballe Jensen [muldjord] (muldjordlars@gmail.com) + +Patches: + John Hammen (sample multichannel support) \ No newline at end of file -- cgit v1.2.3 From 9286d4381b8636a89bb631fd321ce2f4d2713b0e Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 5 Mar 2014 20:42:09 +0100 Subject: Add project root to includepath for VST. --- vst/Makefile.mingw32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vst/Makefile.mingw32 b/vst/Makefile.mingw32 index 48b515b..1d764df 100644 --- a/vst/Makefile.mingw32 +++ b/vst/Makefile.mingw32 @@ -35,7 +35,7 @@ DG_SRC = \ $(top_srcdir)/src/thread.cc \ $(top_srcdir)/src/velocity.cc \ $(top_srcdir)/src/versionstr.cc -DG_CFLAGS = -I../include -I../src -DSSE -msse -msse2 -DDISABLE_HUGIN +DG_CFLAGS = -I.. -I../include -I../src -DSSE -msse -msse2 -DDISABLE_HUGIN GUI_SRC = \ $(top_srcdir)/plugingui/nativewindow_x11.cc \ -- cgit v1.2.3 From cb21db8fe53b729439589da0ca3de730ae64c2f9 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 5 Mar 2014 21:11:51 +0100 Subject: Update changelog to reflect 0.9.4 changes. --- ChangeLog | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/ChangeLog b/ChangeLog index 962fc53..9d0ffd3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,33 @@ +Version 0.9.4 +============== +Released March 5th 2014 + - Add multichannel sample support. (John Hammen) + - Write README, ChangeLog and AUTHORS files. (deva) + - Delete old partially broken unit test system. (deva) + - Fix double click on toggle button to not leave the button in its middle state. (deva) + - Make plugin gui window fixed in size. (deva) + - Fix lineedit mouseclick to the right of the text, which should position text cursor to the right of the text. (unassigned) + - Handle sse optimisation toggling in configure.in. (suhr) + - Fix memory leak in Image class (png structure currently not free'd). (deva) + - Improve FileBrowser functionality. (suhr) + - If filename lineedit is empty and the other one is not, use the non/empty lineedit path initially when opening filebrowser. (deva) + - Make it possible to type a path and have the browser switch accordingly. (suhr) + - Sort list by directories first and files next. (suhr) + - Filter out non-drumkit files. (suhr) + - Identify folders by appending '/' to their names. (suhr) + - Remove double '\\' after drive letter in filebrowser on Windows. (suhr) + - Test new filebrowser on Windows. (suhr) + - Handle directory that can not be opened. (suhr) + - Scrollbar is drawed wrong when few elements in list. (deva) + - Refactor GUI::EventHandler. (deva) + - Make Carla store plugin setting. (deva) + - Make it work in QTractor. (deva) + - Add jackaudio output module. (deva) + - Support multiple samplerates by resampling at load-time (feature request from Cédric 'SxDx'). (deva) + - Modernise autoconf. (deva) + - Add new unit test system. (deva) + - Find and fix LV2 midi velocities magically disappearing. (suhr) We can't reproduce this. Please contact us if you have this problem. + Version 0.9.3 ============== Released on May 7th 2013, ie. LAC 2013 version -- cgit v1.2.3 From 8daae94c2478a599babe0c3ce844489f728d10e2 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 5 Mar 2014 21:14:03 +0100 Subject: Remove old test framework references in distfiles. --- tools/Makefile.am | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 8cdf825..dc25608 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,7 +1,3 @@ EXTRA_DIST = \ - Makefile.am.test \ MocList \ - add_file \ - test \ - test.h \ - testlist \ No newline at end of file + add_file \ No newline at end of file -- cgit v1.2.3 From c4995f3a60de049ccd434c3950ae98bcef216532 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 5 Mar 2014 21:22:52 +0100 Subject: Add missing powerlist as distfiles. --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index e686ec0..9624b18 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,6 +23,7 @@ EXTRA_DIST = \ midimapper.h \ mutex.h \ path.h \ + powerlist.h \ rangemap.h \ sample.h \ saxparser.h \ @@ -53,6 +54,7 @@ EXTRA_DIST = \ midimapper.cc \ mutex.cc \ path.cc \ + powerlist.cc \ sample.cc \ saxparser.cc \ semaphore.cc \ -- cgit v1.2.3 From a59e07d5abd87cd87a53733a7f303a394a30560c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 6 Mar 2014 17:53:27 +0100 Subject: Don't include moc.cpp and qrc.cpp files in dist. --- dgedit/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dgedit/Makefile.am b/dgedit/Makefile.am index 2ebd304..61aefbb 100644 --- a/dgedit/Makefile.am +++ b/dgedit/Makefile.am @@ -8,7 +8,7 @@ dgedit_LDADD = $(SNDFILE_LIBS) $(QT_LIBS) $(shell ../tools/MocList o ) \ dgedit_CXXFLAGS = $(SNDFILE_CXXFLAGS) $(QT_CFLAGS) $(AO_CFLAGS) AM_CXXFLAGS = $(QT_CFLAGS) -dgedit_SOURCES = $(shell ../tools/MocList cc ) \ +dgedit_SOURCES = \ dgedit.cc \ audioextractor.cc \ canvas.cc \ @@ -21,8 +21,9 @@ dgedit_SOURCES = $(shell ../tools/MocList cc ) \ mainwindow.cc \ mipmap.cc \ samplesorter.cc \ - dgedit.qrc \ - dgedit_qrc.cpp + dgedit.qrc + +# dgedit_qrc.cpp $(shell ../tools/MocList cc ) EXTRA_DIST = \ audioextractor.h \ -- cgit v1.2.3 From 0b31e1d2ed17121a854e31b282dc1848de59ce4b Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 6 Mar 2014 17:53:54 +0100 Subject: Don't include moc.cpp and qrc.cpp files in dist. --- dgedit/Makefile.am | 2 -- 1 file changed, 2 deletions(-) diff --git a/dgedit/Makefile.am b/dgedit/Makefile.am index 61aefbb..38cacca 100644 --- a/dgedit/Makefile.am +++ b/dgedit/Makefile.am @@ -23,8 +23,6 @@ dgedit_SOURCES = \ samplesorter.cc \ dgedit.qrc -# dgedit_qrc.cpp $(shell ../tools/MocList cc ) - EXTRA_DIST = \ audioextractor.h \ canvas.h \ -- cgit v1.2.3 From 94ae7f27812b3de5bd1046b758f5bb95eacc59be Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 6 Mar 2014 19:37:45 +0100 Subject: Include icons folder in distfile. --- configure.ac | 28 ++++++---------------------- dgedit/Makefile.am | 3 +++ dgedit/icons/Makefile.am | 3 +++ 3 files changed, 12 insertions(+), 22 deletions(-) create mode 100644 dgedit/icons/Makefile.am diff --git a/configure.ac b/configure.ac index 0562059..58b4eac 100644 --- a/configure.ac +++ b/configure.ac @@ -36,13 +36,6 @@ if test x$with_experimental == xyes; then CXXFLAGS="$CXXFLAGS -DEXPERIMENTAL" fi -#AC_ARG_ENABLE(pugl, [ --enable-pugl Build with Pugl support]) -#if test x$enable_pugl == xyes; then -# AC_MSG_WARN([*** Building with pugl support!]) -# CXXFLAGS="$CXXFLAGS -DPUGL -lGL -lGLU -lglut" -#fi -#AM_CONDITIONAL([ENABLE_PUGL], [test "x$enable_pugl" = "xyes"]) - dnl =========================== dnl Check for GUI backend dnl =========================== @@ -93,7 +86,7 @@ elif test "x$enable_gui" = "xwin32"; then elif test "x$enable_gui" = "xpugl"; then AC_MSG_RESULT([Setting gui backend to Pugl]) - GUI_CFLAGS="-DPUGL" + GUI_CFLAGS="-DPUGL -I../../pugl" GUI_LIBS="-lGLU -lGL -lglut" else @@ -105,18 +98,9 @@ AC_SUBST(GUI_LIBS) AM_CONDITIONAL([ENABLE_PUGL], [test "x$enable_gui" = "xpugl"]) - - - - - - - - - - - - +dnl ====================== +dnl Compile unit tests +dnl ====================== AC_ARG_WITH(test, [ --with-test Build unit tests]) if test x$with_test == xyes; then AC_MSG_WARN([*** Building unittests!]) @@ -527,5 +511,5 @@ AC_OUTPUT( drumgizmo/output/alsa/Makefile drumgizmo/output/jackaudio/Makefile drumgizmo/output/wavfile/Makefile - dgedit/Makefile) - + dgedit/Makefile + dgedit/icons/Makefile) diff --git a/dgedit/Makefile.am b/dgedit/Makefile.am index 38cacca..09bfe22 100644 --- a/dgedit/Makefile.am +++ b/dgedit/Makefile.am @@ -1,3 +1,6 @@ +SUBDIRS = icons +DISTDIRS = icons + if HAVE_EDITOR bin_PROGRAMS = dgedit diff --git a/dgedit/icons/Makefile.am b/dgedit/icons/Makefile.am new file mode 100644 index 0000000..b838804 --- /dev/null +++ b/dgedit/icons/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + file.png \ + master.png \ No newline at end of file -- cgit v1.2.3