# HG changeset patch # User Chris Cannam # Date 1478185020 0 # Node ID ed3009a50f8118b88da4b266de24e32775b8aa2d # Parent 83a8460524de5c214e3b8065c3fe1c56a6fa2049 Make SVDEBUG always write to a log file -- formerly this was disabled in NDEBUG builds. I think there's little use to that, it just means that we keep adding more cerr debug output because we aren't getting the log we need. And SVDEBUG logging is not usually used in tight loops, I don't think the performance overhead is too serious. Also update the About box. diff -r 83a8460524de -r ed3009a50f81 .hgsubstate --- a/.hgsubstate Thu Nov 03 14:14:09 2016 +0000 +++ b/.hgsubstate Thu Nov 03 14:57:00 2016 +0000 @@ -7,6 +7,6 @@ bcfadce0b8acf66565fadfe50f3aaffbeb6e5c1c piper-cpp e1712f7d74a455337591091a57beba2f0443b9dd sv-dependency-builds 9d067d65fe3f94033f5e4c80fc2f4475d484f556 svapp -75aefcc9f07d51d22b0dd2ed66dfb623391ca7c8 svcore -8a5f0c8d56089170062e94c70f369292b06a6c12 svgui +8f076d02569a3ba22de1d9f3c7b697b8871b6afb svcore +a429b2acb45df713bc6ad98159f20e3b9504bd00 svgui 79a219ba617862adffd78925f1571e5c96760e0a vamp-plugin-sdk diff -r 83a8460524de -r ed3009a50f81 main/MainWindow.cpp --- a/main/MainWindow.cpp Thu Nov 03 14:14:09 2016 +0000 +++ b/main/MainWindow.cpp Thu Nov 03 14:57:00 2016 +0000 @@ -4661,14 +4661,12 @@ #endif // HAVE_FFTW3F #ifdef HAVE_RUBBERBAND #ifdef RUBBERBAND_VERSION - aboutText += tr("
With Rubber Band v%1 © Chris Cannam").arg(RUBBERBAND_VERSION); + aboutText += tr("
With Rubber Band Library v%1 © Particular Programs Ltd").arg(RUBBERBAND_VERSION); #else // !RUBBERBAND_VERSION - aboutText += tr("
With Rubber Band © Chris Cannam"); + aboutText += tr("
With Rubber Band Library © Particular Programs Ltd"); #endif // RUBBERBAND_VERSION #endif // HAVE_RUBBERBAND -#ifdef HAVE_VAMP - aboutText += tr("
With Vamp plugin support (API v%1, host SDK v%2) © Chris Cannam").arg(VAMP_API_VERSION).arg(VAMP_SDK_VERSION); -#endif // !HAVE_VAMP + aboutText += tr("
With Vamp plugin support (API v%1, host SDK v%2) © Chris Cannam and QMUL").arg(VAMP_API_VERSION).arg(VAMP_SDK_VERSION); aboutText += tr("
With LADSPA plugin support (API v%1) © Richard Furse, Paul Davis, Stefan Westerfeld").arg(LADSPA_VERSION); aboutText += tr("
With DSSI plugin support (API v%1) © Chris Cannam, Steve Harris, Sean Bolton").arg(DSSI_VERSION); #ifdef REDLAND_VERSION @@ -4677,8 +4675,8 @@ aboutText += tr("
With Redland RDF datastore © Dave Beckett and the University of Bristol"); #endif // REDLAND_VERSION aboutText += tr("
With Serd and Sord RDF parser and store © David Robillard"); - aboutText += tr("
With Dataquay Qt/RDF library © Chris Cannam"); - + aboutText += tr("
With Dataquay Qt/RDF library © Particular Programs Ltd"); + aboutText += tr("
With Cap'n Proto serialisation © Sandstorm Development Group"); aboutText += tr("
With RtMidi © Gary P. Scavone"); #ifdef HAVE_LIBLO