forked from pool/audacity
Takashi Iwai
8233bd17ba
See fix for #6955 https://github.com/audacity/audacity/issues/6973 - Update to 3.6.2 * #6955 Fix out of bound access in waveform cache * #6857 fix: pitch-shift value not showing on Linux * #6883 Fix for labeled audio operations don't work in certain cases * Fix for TCP UI Breaks when dragging waveform splitter * Undo stack is cleared before project is compacted * Call SetBypass at the right time * Clear clipboard also before cutting * Prepare a set of tracks to apply labeled audio operations depending * Extend Join Region by one sample, to ensure that Split-Join operation * Envelope display fix: pass absolute time value when querying envelope OBS-URL: https://build.opensuse.org/request/show/1189890 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=226
25 lines
1.0 KiB
Diff
25 lines
1.0 KiB
Diff
diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp
|
|
index 2f42df1..2147892 100644
|
|
--- a/src/AboutDialog.cpp
|
|
+++ b/src/AboutDialog.cpp
|
|
@@ -66,7 +66,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 + "|" + wxString( REV_LONG ).Left(6) + "]] of " + REV_TIME
|
|
#else
|
|
#define REV_IDENT (XO("No revision identifier was provided").Translation())
|
|
#endif
|
|
@@ -536,8 +536,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 =
|