Dave Plater
fac9ee7869
- Update to version 3.0.4 - Add git patches: 0001-Adds-an-option-to-disable-Conan.patch, 0001-Scope-libraries-required-by-the-optional-features.patch 0001-Fixes-wxwidgets-fixup-script.patch - Added patch adapted from git, Fixes-GCC11-compatibility.patch - Removed obsolete patches, audacity-remove-wx-test.patch and b4b5cc8.patch - Upstream changes: *This is a hotfix release that fixes a bug with envelope points, which could multiply uncontrollably and cause Audacity to crash. *In particular: #1476: Envelope points are multiplied when using Filter Curve EQ or Graphic EQ #1477: Filter Curve EQ will crash if there is an envelope point outside of the selection *This fix re-introduces an earlier, but way less destructive bug: bugzilla 208 / #1500: Some effects delete Envelope Control Points or do not move them when timeline changes *Other than that, this release is identical to Version 3.0.3. OBS-URL: https://build.opensuse.org/request/show/914616 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=167
38 lines
1.7 KiB
Diff
38 lines
1.7 KiB
Diff
Index: b/lib-src/portaudio-v19/qa/loopback/src/paqa.c
|
|
===================================================================
|
|
--- a/lib-src/portaudio-v19/qa/loopback/src/paqa.c 2021-08-26 08:15:19.261006566 +0200
|
|
+++ b/lib-src/portaudio-v19/qa/loopback/src/paqa.c 2021-08-26 08:15:26.829312186 +0200
|
|
@@ -1460,7 +1460,7 @@ int main( int argc, char **argv )
|
|
int justMath = 0;
|
|
char *executableName = argv[0];
|
|
|
|
- printf("PortAudio LoopBack Test built " __DATE__ " at " __TIME__ "\n");
|
|
+ printf("PortAudio LoopBack Test built " "17 March 2017" " at " "23:15" "\n");
|
|
|
|
if( argc > 1 ){
|
|
printf("running with arguments:");
|
|
Index: b/src/AboutDialog.cpp
|
|
===================================================================
|
|
--- a/src/AboutDialog.cpp 2021-08-26 08:15:19.261006566 +0200
|
|
+++ b/src/AboutDialog.cpp 2021-08-26 08:15:26.833312347 +0200
|
|
@@ -71,7 +71,7 @@ hold information about one contributor t
|
|
#endif
|
|
|
|
#ifdef REV_LONG
|
|
-#define REV_IDENT wxString( "[[https://github.com/audacity/audacity/commit/" )+ REV_LONG + "|" + wxString( REV_LONG ).Left(6) + "]] of " + REV_TIME
|
|
+#define REV_IDENT wxString( "Official openSUSE Build" )+ REV_LONG + "|" + wxString( REV_LONG ).Left(6) + "]] of " + REV_TIME
|
|
#else
|
|
#define REV_IDENT (XO("No revision identifier was provided").Translation())
|
|
#endif
|
|
@@ -597,8 +597,8 @@ void AboutDialog::PopulateInformationPag
|
|
<< XO("The Build")
|
|
<< wxT("</h3>\n<table>"); // start build info table
|
|
|
|
- // Current date
|
|
- AddBuildinfoRow(&informationStr, XO("Program build date:"), __TDATE__);
|
|
+ /*/ Current date
|
|
+ AddBuildinfoRow(&informationStr, XO("Program build date:"), __TDATE__);*/
|
|
AddBuildinfoRow(&informationStr, XO("Commit Id:"), REV_IDENT );
|
|
|
|
auto buildType =
|