Fix MIDI disk-writer flush
[ardour.git] / gtk2_ardour / about.cc
index f3d6bf56a8893d75131c3e14f5221e1937153d02..64aa3e7461cc3ee123635897cbeeec67966a143e 100644 (file)
@@ -1,21 +1,27 @@
 /*
-    Copyright (C) 2003 Paul Davis
-
-    This program 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 Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2005-2006 Sampo Savolainen <v2@iki.fi>
+ * Copyright (C) 2005-2006 Taybin Rutkin <taybin@taybin.com>
+ * Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2006 Doug McLain <doug@nostar.net>
+ * Copyright (C) 2007-2016 Tim Mayberry <mojofunk@gmail.com>
+ * Copyright (C) 2008-2012 David Robillard <d@drobilla.net>
+ * Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
+ *
+ * This program 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 Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include <algorithm>
 #include <unistd.h>
@@ -141,6 +147,7 @@ static const char* authors[] = {
        N_("Sam Chessman"),
        N_("André Colomb"),
        N_("Paul Davis"),
+       N_("Simon Dixon"),
        N_("Gerard van Dongen"),
        N_("John Emmas"),
        N_("Colin Fletcher"),
@@ -167,11 +174,14 @@ static const char* authors[] = {
        N_("Nick Lanham"),
        N_("Colin Law"),
        N_("Joshua Leach"),
+       N_("Jan Lentfer"),
        N_("Ben Loftis"),
+       N_("Matthias Mauch"),
        N_("Nick Mainsbridge"),
        N_("Tim Mayberry"),
        N_("Doug Mclain"),
        N_("Johannes Mueller"),
+       N_("Edward Tomasz Napierała"),
        N_("Todd Naugle"),
        N_("André Nusser"),
        N_("Bent Bisballe Nyeng"),
@@ -558,7 +568,7 @@ About::About ()
        const std::string cpu_arch = _("32-bit"); // ARM, ALPHA,..
 #endif
        std::string codename = CODENAME;
-       if (ARDOUR::Profile->get_mixbus() || ARDOUR::Profile->get_trx()) {
+       if (ARDOUR::Profile->get_mixbus()) {
                codename = "";
        }
 
@@ -569,7 +579,7 @@ About::About ()
 #endif
 
        set_translator_credits (t);
-       set_copyright (_("Copyright (C) 1999-2019 Paul Davis\n"));
+       set_copyright (_("Copyright (C) 1999-2020 Paul Davis\n"));
        set_license (gpl);
        set_name (X_("Ardour"));
        set_website (X_("http://ardour.org/"));