X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fabout.cc;h=ca52199df9a997bfd4093ed4c772ac609fae6f6d;hb=234b06a18cf3e8c07bc44fb4f8c1218e17fb65f1;hp=1f79b47031060b6d31b72c4a990e02433b54999b;hpb=eb8ae5053f9f2e69db4262f0f67eeccd7199b1f2;p=ardour.git diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index 1f79b47031..ca52199df9 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -24,18 +24,17 @@ #include #include +#include "pbd/error.h" #include "pbd/file_utils.h" +#include "pbd/openuri.h" +#include "ardour/profile.h" #include "ardour/revision.h" -#include "ardour/version.h" #include "ardour/filesystem_paths.h" -#include "version.h" - #include "about.h" #include "configinfo.h" #include "rgb_macros.h" -#include "ardour_ui.h" #include "i18n.h" @@ -49,6 +48,10 @@ using namespace std; using namespace ARDOUR; using namespace PBD; +#ifndef CODENAME +#define CODENAME "" +#endif + #ifdef WITH_PAYMENT_OPTIONS /* XPM */ @@ -130,16 +133,19 @@ static const char* authors[] = { N_("Sakari Bergen"), N_("Christian Borss"), N_("Chris Cannam"), + N_("Jeremy Carter"), N_("Jesse Chappell"), N_("Thomas Charbonnel"), N_("Sam Chessman"), N_("André Colomb"), N_("Paul Davis"), N_("Gerard van Dongen"), + N_("John Emmas"), N_("Colin Fletcher"), N_("Dave Flick"), N_("Hans Fugal"), N_("Robin Gareus"), + N_("Nil Geisweiller"), N_("Christopher George"), N_("Chris Goddard"), N_("J. Abelardo Gutierrez"), @@ -155,6 +161,7 @@ static const char* authors[] = { N_("Armand Klenk"), N_("Julien de Kozak"), N_("Matt Krai"), + N_("Georg Krause"), N_("Nick Lanham"), N_("Colin Law"), N_("Joshua Leach"), @@ -162,9 +169,14 @@ static const char* authors[] = { N_("Nick Mainsbridge"), N_("Tim Mayberry"), N_("Doug Mclain"), + N_("Todd Naugle"), + N_("André Nusser"), + N_("Bent Bisballe Nyeng"), N_("Jack O'Quin"), + N_("Pavel Potocek"), N_("Nimal Ratnayake"), N_("David Robillard"), + N_("Julien Roger"), N_("Taybin Rutkin"), N_("Andreas Ruge"), N_("Sampo Savolainen"), @@ -178,6 +190,8 @@ static const char* authors[] = { N_("Mike Täht"), N_("Roy Vegard"), N_("Thorsten Wilms"), + N_("Damien Zammit"), + N_("Grygorii Zharun"), 0 }; @@ -581,15 +595,40 @@ About::About () t += ' '; } +#if defined __x86_64__ || defined _M_X64 + const std::string cpu_arch = _("Intel 64-bit"); +#elif defined __i386__ || defined _M_IX86 + const std::string cpu_arch = _("Intel 32-bit"); +#elif defined __ppc__ && defined __LP64__ + const std::string cpu_arch = _("PowerPC 64-bit"); +#elif defined __ppc__ + const std::string cpu_arch = _("PowerPC 32-bit"); +#elif defined __LP64__ + const std::string cpu_arch = _("64-bit"); +#else + const std::string cpu_arch = _("32-bit"); // ARM, ALPHA,.. +#endif + std::string codename = CODENAME; + if (ARDOUR::Profile->get_mixbus() || ARDOUR::Profile->get_trx()) { + codename = ""; + } + +#ifndef NDEBUG + const std::string suffix = _(" - debug"); +#else + const std::string suffix = ""; +#endif + set_translator_credits (t); - set_copyright (_("Copyright (C) 1999-2013 Paul Davis\n")); + set_copyright (_("Copyright (C) 1999-2015 Paul Davis\n")); set_license (gpl); set_name (X_("Ardour")); set_website (X_("http://ardour.org/")); set_website_label (_("http://ardour.org/")); - set_version ((string_compose(_("%1\n(built from revision %2)"), + set_version ((string_compose(_("%1%2\n(rev %3)\n%4%5"), VERSIONSTRING, - revision))); + codename, + revision, cpu_arch, suffix))); Gtk::Button* config_button = manage (new Button (_("Config"))); @@ -601,6 +640,7 @@ About::About () if (btn) { btn->signal_clicked().connect(sigc::mem_fun(static_cast(this), &Gtk::Window::hide)); } + set_url_hook (sigc::ptr_fun(&About::launch_homepage)); } About::~About () @@ -619,3 +659,8 @@ About::show_config_info () config_info->hide (); } +void +About::launch_homepage (AboutDialog& /* about */, const Glib::ustring& website_url) +{ + PBD::open_uri (website_url); +}