summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--src/PatchageCanvas.cpp4
-rw-r--r--wscript2
3 files changed, 14 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cffdc10..dd85f59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+patchage (0.4.3) unstable; urgency=low
+
+ * Switch to waf build system
+ * Fix compilation with GCC 4.4
+ * Better ALSA support
+ * Massive performance improvements when ALSA is enabled
+ * Center on startup
+
+ -- Dave Robillard <dave@drobilla.net> Tue, 08 Dec 2009 21:13:37 -0500
+
+
patchage (0.4.2) unstable; urgency=low
* LASH support via D-BUS from ladi-patchage branch
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 4c487ba..5d3bf58 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -32,7 +32,7 @@
PatchageCanvas::PatchageCanvas(Patchage* app, int width, int height)
: FlowCanvas::Canvas(width, height)
- , _app(app)
+ , _app(app)
{
}
@@ -70,7 +70,7 @@ PatchageCanvas::find_port(const PortID& id)
string module_name;
string port_name;
-#if defined(USE_LIBJACK) || defined(HAVE_JACK_DBUS)
+#if defined(USE_LIBJACK)
jack_port_t* jack_port = NULL;
#endif
diff --git a/wscript b/wscript
index c8f1968..a9581b9 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ import autowaf
import Options
# Version of this package (even if built as a child)
-PATCHAGE_VERSION = '0.4.2'
+PATCHAGE_VERSION = '0.4.3'
# Variables for 'waf dist'
APPNAME = 'patchage'