summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-09-04 01:32:50 +0000
committerDavid Robillard <d@drobilla.net>2010-09-04 01:32:50 +0000
commitb67c668798c0d65793135d6385ed43d62628f9ca (patch)
treef641d87002ae923b3c4d9c74472caee2028bf35d
parentfed5dc1ca64794b05757718f568a68dc875b2e0e (diff)
downloadpatchage-b67c668798c0d65793135d6385ed43d62628f9ca.tar.gz
patchage-b67c668798c0d65793135d6385ed43d62628f9ca.tar.bz2
patchage-b67c668798c0d65793135d6385ed43d62628f9ca.zip
My name is David. :)
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2590 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog10
-rw-r--r--README2
-rw-r--r--src/AlsaDriver.cpp2
-rw-r--r--src/AlsaDriver.hpp2
-rw-r--r--src/DBus.cpp2
-rw-r--r--src/DBus.hpp2
-rw-r--r--src/Driver.hpp2
-rw-r--r--src/GladeFile.hpp2
-rw-r--r--src/JackDriver.cpp2
-rw-r--r--src/JackDriver.hpp2
-rw-r--r--src/LashClient.hpp2
-rw-r--r--src/LashProxy.hpp2
-rw-r--r--src/LoadProjectDialog.cpp2
-rw-r--r--src/LoadProjectDialog.hpp2
-rw-r--r--src/Patchage.cpp2
-rw-r--r--src/Patchage.hpp2
-rw-r--r--src/PatchageCanvas.cpp2
-rw-r--r--src/PatchageCanvas.hpp2
-rw-r--r--src/PatchageEvent.cpp2
-rw-r--r--src/PatchageEvent.hpp2
-rw-r--r--src/PatchageModule.hpp2
-rw-r--r--src/PatchagePort.hpp2
-rw-r--r--src/PortID.hpp2
-rw-r--r--src/Project.cpp2
-rw-r--r--src/ProjectList.hpp2
-rw-r--r--src/StateManager.cpp2
-rw-r--r--src/StateManager.hpp2
-rw-r--r--src/Widget.hpp2
-rw-r--r--src/binary_location.h2
-rw-r--r--src/main.cpp2
-rw-r--r--src/patchage.glade4
-rw-r--r--wscript2
33 files changed, 38 insertions, 38 deletions
diff --git a/AUTHORS b/AUTHORS
index a0ba4fc..d7ab46b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,5 +1,5 @@
Author:
- Dave Robillard <dave@drobilla.net>
+ David Robillard <d@drobilla.net>
Nedko Arnaudov <nedko@arnaudov.name>
Icons:
diff --git a/ChangeLog b/ChangeLog
index 7ccd590..5497b3e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,14 +6,14 @@ patchage (0.4.5) unstable; urgency=low
* Bump FlowCanvas dependency to 0.6.0
* Upgrade to waf 1.5.18
- -- Dave Robillard <dave@drobilla.net> Fri, 03 Sep 2010 20:24:36 -0400
+ -- David Robillard <d@drobilla.net> Fri, 03 Sep 2010 20:24:36 -0400
patchage (0.4.4) unstable; urgency=low
* Fix incorrect icon install paths
- -- Dave Robillard <dave@drobilla.net> Wed, 09 Dec 2009 10:17:37 -0500
+ -- David Robillard <d@drobilla.net> Wed, 09 Dec 2009 10:17:37 -0500
patchage (0.4.3) unstable; urgency=low
@@ -24,7 +24,7 @@ patchage (0.4.3) unstable; urgency=low
* Massive performance improvements when ALSA is enabled
* Center on startup
- -- Dave Robillard <dave@drobilla.net> Tue, 08 Dec 2009 21:13:37 -0500
+ -- David Robillard <d@drobilla.net> Tue, 08 Dec 2009 21:13:37 -0500
patchage (0.4.2) unstable; urgency=low
@@ -32,12 +32,12 @@ patchage (0.4.2) unstable; urgency=low
* LASH support via D-BUS from ladi-patchage branch
* Remove old LASH support via liblash
- -- Dave Robillard <dave@drobilla.net> Tue, 09 Sep 2008 15:41:04 -0400
+ -- David Robillard <d@drobilla.net> Tue, 09 Sep 2008 15:41:04 -0400
patchage (0.4.1) unstable; urgency=low
* Initial Debian release
- -- Dave Robillard <dave@drobilla.net> Sun, 06 Jul 2008 17:19:55 -0400
+ -- David Robillard <d@drobilla.net> Sun, 06 Jul 2008 17:19:55 -0400
diff --git a/README b/README
index 0a5daea..e2eb2fd 100644
--- a/README
+++ b/README
@@ -6,4 +6,4 @@ based on JACK, LASH, and ALSA.
For more information, see <http://drobilla.net/software/patchage>.
- -- Dave Robillard <dave@drobilla.net>
+ -- David Robillard <d@drobilla.net>
diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp
index 5a24580..e10c120 100644
--- a/src/AlsaDriver.cpp
+++ b/src/AlsaDriver.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/AlsaDriver.hpp b/src/AlsaDriver.hpp
index e9f7e4c..b334e89 100644
--- a/src/AlsaDriver.hpp
+++ b/src/AlsaDriver.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/DBus.cpp b/src/DBus.cpp
index b7401da..72502b8 100644
--- a/src/DBus.cpp
+++ b/src/DBus.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/DBus.hpp b/src/DBus.hpp
index 4ed3561..9960efa 100644
--- a/src/DBus.hpp
+++ b/src/DBus.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/Driver.hpp b/src/Driver.hpp
index 8e8ba7c..c251309 100644
--- a/src/Driver.hpp
+++ b/src/Driver.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/GladeFile.hpp b/src/GladeFile.hpp
index 0fdd28b..dbec7e9 100644
--- a/src/GladeFile.hpp
+++ b/src/GladeFile.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp
index 6b201d4..ef67747 100644
--- a/src/JackDriver.cpp
+++ b/src/JackDriver.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp
index 90a5e9e..c5da141 100644
--- a/src/JackDriver.hpp
+++ b/src/JackDriver.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/LashClient.hpp b/src/LashClient.hpp
index 6d50381..6ae6a2b 100644
--- a/src/LashClient.hpp
+++ b/src/LashClient.hpp
@@ -1,6 +1,6 @@
// -*- Mode: C++ ; indent-tabs-mode: t -*-
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/LashProxy.hpp b/src/LashProxy.hpp
index aca14d8..70583e6 100644
--- a/src/LashProxy.hpp
+++ b/src/LashProxy.hpp
@@ -1,6 +1,6 @@
// -*- Mode: C++ ; indent-tabs-mode: t -*-
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/LoadProjectDialog.cpp b/src/LoadProjectDialog.cpp
index 35d32f3..026da1e 100644
--- a/src/LoadProjectDialog.cpp
+++ b/src/LoadProjectDialog.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/LoadProjectDialog.hpp b/src/LoadProjectDialog.hpp
index d01bfe1..90bba6a 100644
--- a/src/LoadProjectDialog.hpp
+++ b/src/LoadProjectDialog.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index 4be7753..9b3a299 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/Patchage.hpp b/src/Patchage.hpp
index 37757e0..86d40f3 100644
--- a/src/Patchage.hpp
+++ b/src/Patchage.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 5d3bf58..99593e0 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp
index 5541687..57af310 100644
--- a/src/PatchageCanvas.hpp
+++ b/src/PatchageCanvas.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp
index 88af4f3..6789948 100644
--- a/src/PatchageEvent.cpp
+++ b/src/PatchageEvent.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp
index 575cbd5..20053e5 100644
--- a/src/PatchageEvent.hpp
+++ b/src/PatchageEvent.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index 1092906..8cbec6e 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp
index 3854320..183eac6 100644
--- a/src/PatchagePort.hpp
+++ b/src/PatchagePort.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/PortID.hpp b/src/PortID.hpp
index b3eb373..c221a0a 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/Project.cpp b/src/Project.cpp
index 0a1c2d5..a6e657b 100644
--- a/src/Project.cpp
+++ b/src/Project.cpp
@@ -1,6 +1,6 @@
// -*- Mode: C++ ; indent-tabs-mode: t -*-
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/ProjectList.hpp b/src/ProjectList.hpp
index 69997ef..360c1da 100644
--- a/src/ProjectList.hpp
+++ b/src/ProjectList.hpp
@@ -1,6 +1,6 @@
// -*- Mode: C++ ; indent-tabs-mode: t -*-
/* This file is part of Patchage.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
* Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
*
* Patchage is free software; you can redistribute it and/or modify it under the
diff --git a/src/StateManager.cpp b/src/StateManager.cpp
index bd946cd..fd9a465 100644
--- a/src/StateManager.cpp
+++ b/src/StateManager.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/StateManager.hpp b/src/StateManager.hpp
index 01bdddd..e2b2d99 100644
--- a/src/StateManager.hpp
+++ b/src/StateManager.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/Widget.hpp b/src/Widget.hpp
index ee24adc..a74d69c 100644
--- a/src/Widget.hpp
+++ b/src/Widget.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
diff --git a/src/binary_location.h b/src/binary_location.h
index d8c3f12..58868a7 100644
--- a/src/binary_location.h
+++ b/src/binary_location.h
@@ -1,5 +1,5 @@
/* Find the location of the program in the filesytem.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/main.cpp b/src/main.cpp
index 062a203..223ae25 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright (C) 2007-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
*
* Patchage is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/src/patchage.glade b/src/patchage.glade
index e9cba48..6ade969 100644
--- a/src/patchage.glade
+++ b/src/patchage.glade
@@ -461,7 +461,7 @@ The bar represents the percentage of available time used for audio processing (i
<widget class="GtkAboutDialog" id="about_win">
<property name="destroy_with_parent">True</property>
<property name="type_hint">normal</property>
- <property name="copyright" translatable="yes">&#xA9; 2005-2008 Dave Robillard
+ <property name="copyright" translatable="yes">&#xA9; 2005-2008 David Robillard
&#xA9; 2008 Nedko Arnaudov</property>
<property name="comments" translatable="yes">A LASH, JACK, and ALSA front-end.</property>
<property name="website">http://drobilla.net/software/patchage</property>
@@ -479,7 +479,7 @@ You should have received a copy of the GNU General Public License
along with Patchage; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
</property>
- <property name="authors">Dave Robillard &lt;dave@drobilla.net&gt;
+ <property name="authors">David Robillard &lt;d@drobilla.net&gt;
Nedko Arnaudov &lt;nedko@arnaudov.name&gt;</property>
<property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
<property name="artists">Icon:
diff --git a/wscript b/wscript
index 65f9ef3..ac13411 100644
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# Licensed under the GNU GPL v2 or later, see COPYING file for details.
-# Copyright (C) 2008 Dave Robillard
+# Copyright (C) 2008 David Robillard
# Copyright (C) 2008 Nedko Arnaudov
import os
import autowaf