- Refresh audacity-no_buildstamp.patch This is a patch release. It contains the following changes: * #8290 Fixed a crash when applying some effects across multiple tracks if one track is empty. * #8157, #8155 Fixed some crashes emanating from the Mixer window. * #7672 Returned the "Residue" option in noise reduction. (Thanks, Christopher Rooney!) * #7809 Modules are now allowed to stick around when patch releases like this one are published. This means you likely won't need to update the OpenVINO again during 3.7.x. * #7076 When adding a realtime effect to a track, the effect settings are now opened immediately. * #7819 Added an infobox when saving a project in a new version breaks compatibility with an old one. * #7740 Added a preference to turn off automatic tempo detection. * #4169 When duplicating tracks, the duplicated tracks now have independent realtime effect instances. * #7700 Fixed range-selection beyond the edge of a clip being destructive. * #8013, #8008, #8004, #8009, #8003, #8005, #8071 Improved stability of cloud saving. * #7410 Fixed pasting content from a clip at the beginning of itself being offset in time. * #4231 macOS: Fixed AUSoundIsolation. * #6342 Fixed audacity continuing to scroll after letting go of the scrollbar. * #8110 Fixed black stripes appearing when zooming in while in the envelope or multi-tool. * #8043 Added a new "get effects" button next to the Upload Audio button. * #8211 Added UUID instance support. See this page for further info: https://forum.audacityteam.org/t/introducing-a-uuid-system-in-audacity-here-s-what-you-need-to-know/128561 * #7154 Fixed label texts using the wrong color in dark themes. (Thanks, GovindaMadhava!) * #8261 Fixed tracks being incorrectly drawn on high zoom levels using high precision trackpads. * #7902 Linux: Fixed FFmpeg loading in the Ubuntu 22.04 AppImage. OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=241
25 lines
1.0 KiB
Diff
25 lines
1.0 KiB
Diff
diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp
|
|
index 6a25470..9e8b4c0 100644
|
|
--- a/src/AboutDialog.cpp
|
|
+++ b/src/AboutDialog.cpp
|
|
@@ -62,7 +62,7 @@ hold information about one contributor to Audacity.
|
|
#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 + " of " + REV_TIME
|
|
#else
|
|
#define REV_IDENT (XO("No revision identifier was provided").Translation())
|
|
#endif
|
|
@@ -529,8 +529,8 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
|
|
<< 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 =
|