commit audacity for openSUSE:Factory
Hello community, here is the log from the commit of package audacity for openSUSE:Factory checked in at Mon Nov 16 17:58:27 CET 2009. -------- --- audacity/audacity.changes 2009-07-31 15:33:57.000000000 +0200 +++ /mounts/work_src_done/STABLE/audacity/audacity.changes 2009-11-11 21:42:40.000000000 +0100 @@ -1,0 +2,21 @@ +Thu Nov 5 09:40:31 UTC 2009 - davejplater@gmail.com + +- Update to 1.3.9 adapted patches and remade audacity-1.3.9-audiodevdefaults.patch + * Crash, slow launch or excessive CPU/memory use arising from automatic VST support: + o VST instrument plug-ins should now be correctly ignored + o VST effects now scanned only at start of first session that detects them, then cached + o Effects are now not loaded or opened until needed + o New "Effects" tab in Preferences to enable/disable VST effects and enable VST rescan on next launch + * Default View Mode now works + * Chains now always apply their stored parameters rather than those last used in Effect menu + * Non-MP3 files imported via drag or Recent Files caused crash if filter in file open window set to MP3 + * AAC exports (using the optional FFmpeg library) silenced + * Generating audio always fitted the project in the window; fit now done only if generating in new track + * View menu items/shortcuts incorrectly disabled when playing or recording + * DTMF generator defaulted to zero duration on open + * Unwanted interactions between linked audio and label tracks + * Various other interface bugs + * Compressor: new option to compress based on peaks, improved attack and decay time support + * Mixer Board: improved design, more responsive meters and now interacts fully with Track Panel in main window + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- audacity-1.3.8-audiodevdefaults.patch audacity-1.3.8-gsocket-conflict.patch audacity-1.3.8-retval.patch audacity-minsrc-1.3.8.tar.bz2 New: ---- audacity-1.3.9-audiodevdefaults.patch audacity-1.3.9-gsocket-conflict.patch audacity-1.3.9-retval.patch audacity-minsrc-1.3.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ audacity.spec ++++++ --- /var/tmp/diff_new_pack.o0PNpU/_old 2009-11-16 17:56:47.000000000 +0100 +++ /var/tmp/diff_new_pack.o0PNpU/_new 2009-11-16 17:56:47.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package audacity (Version 1.3.8) +# spec file for package audacity (Version 1.3.9) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -41,8 +41,8 @@ BuildRequires: libtwolame-devel %endif Summary: A Free, Cross-Platform Digital Audio Editor -Version: 1.3.8 -Release: 2 +Version: 1.3.9 +Release: 1 License: GPL v2 or later Group: Productivity/Multimedia/Sound/Editors and Convertors BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ audacity-1.3.8-audiodevdefaults.patch -> audacity-1.3.9-audiodevdefaults.patch ++++++ --- audacity/audacity-1.3.8-audiodevdefaults.patch 2009-07-23 17:06:11.000000000 +0200 +++ /mounts/work_src_done/STABLE/audacity/audacity-1.3.9-audiodevdefaults.patch 2009-11-05 09:25:34.000000000 +0100 @@ -1,7 +1,8 @@ -diff -Nur audacity-src-1.3.8-orig/src/prefs/DevicePrefs.cpp audacity-src-1.3.8/src/prefs/DevicePrefs.cpp ---- audacity-src-1.3.8-orig/src/prefs/DevicePrefs.cpp 2009-07-16 05:27:35.000000000 +0200 -+++ audacity-src-1.3.8/src/prefs/DevicePrefs.cpp 2009-07-20 20:55:26.000000000 +0200 -@@ -172,6 +172,15 @@ +Index: audacity-src-1.3.9/src/prefs/DevicePrefs.cpp +=================================================================== +--- audacity-src-1.3.9.orig/src/prefs/DevicePrefs.cpp ++++ audacity-src-1.3.9/src/prefs/DevicePrefs.cpp +@@ -173,6 +173,16 @@ void DevicePrefs::OnHost(wxCommandEvent wxArrayString playnames; wxArrayString recordnames; @@ -14,30 +15,31 @@ + recDeviceNum = Pa_GetDefaultInputDevice(); + } + ++ + int devindex; /* temp variable to hold the numeric ID of each device in turn */ + for (int i = 0; i < nDevices; i++) { - const PaDeviceInfo *info = Pa_GetDeviceInfo(i); - if (info->hostApi == index) { -@@ -182,7 +191,10 @@ +@@ -185,7 +195,10 @@ void DevicePrefs::OnHost(wxCommandEvent if (info->maxOutputChannels > 0) { playnames.Add(name); - index = mPlay->Append(name, (void *) info); -- if (device == mPlayDevice) { + devindex = mPlay->Append(name, (void *) info); +- if (device == mPlayDevice) { /* if this is the default device, select it */ + if (playDeviceNum == i) { + mPlay->SetSelection(index); + } + else if (device == mPlayDevice) { - mPlay->SetSelection(index); + mPlay->SetSelection(devindex); } } -@@ -190,7 +202,10 @@ +@@ -193,7 +206,10 @@ void DevicePrefs::OnHost(wxCommandEvent if (info->maxInputChannels > 0) { recordnames.Add(name); - index = mRecord->Append(name, (void *) info); + devindex = mRecord->Append(name, (void *) info); - if (device == mRecordDevice) { + if (recDeviceNum == i) { + mRecord->SetSelection(index); + } + else if (device == mRecordDevice) { - mRecord->SetSelection(index); + mRecord->SetSelection(devindex); } } ++++++ audacity-1.3.8-gsocket-conflict.patch -> audacity-1.3.9-gsocket-conflict.patch ++++++ --- audacity/audacity-1.3.8-gsocket-conflict.patch 2009-07-23 17:06:12.000000000 +0200 +++ /mounts/work_src_done/STABLE/audacity/audacity-1.3.9-gsocket-conflict.patch 2009-11-05 09:25:37.000000000 +0100 @@ -1,6 +1,6 @@ diff -Nur audacity-src-1.3.8-orig/src/AudacityApp.cpp audacity-src-1.3.8/src/AudacityApp.cpp ---- audacity-src-1.3.8-orig/src/AudacityApp.cpp 2009-07-16 05:27:35.000000000 +0200 -+++ audacity-src-1.3.8/src/AudacityApp.cpp 2009-07-20 23:45:41.000000000 +0200 +--- audacity-src-1.3.9-orig/src/AudacityApp.cpp 2009-07-16 05:27:35.000000000 +0200 ++++ audacity-src-1.3.9/src/AudacityApp.cpp 2009-07-20 23:45:41.000000000 +0200 @@ -331,7 +331,9 @@ /////////////////////////////////////////////////////////////////////////////// ++++++ audacity-1.3.8-retval.patch -> audacity-1.3.9-retval.patch ++++++ ++++++ audacity-minsrc-1.3.8.tar.bz2 -> audacity-minsrc-1.3.9.tar.bz2 ++++++ audacity/audacity-minsrc-1.3.8.tar.bz2 /mounts/work_src_done/STABLE/audacity/audacity-minsrc-1.3.9.tar.bz2 differ: byte 11, line 1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de