1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Always include build date/time in CheckUpdate

This commit is contained in:
James Crook
2017-02-26 09:10:30 +00:00
parent c53e2dbb77
commit 9cb68a66a0

View File

@@ -69,9 +69,9 @@ const wxString VerCheckArgs(){
wxString result = wxString("from_ver=") + AUDACITY_VERSION_STRING; wxString result = wxString("from_ver=") + AUDACITY_VERSION_STRING;
#ifdef REV_LONG #ifdef REV_LONG
wxString timeStr = wxString( __DATE__ ) + wxString( __TIME__ ); result += wxString("&ComitId=")+wxString(REV_LONG).Left(6);
result += wxString("&ComitId=")+wxString(REV_LONG).Left(6) + "&Time=" + timeStr;
#endif #endif
result += wxString("&Time=") + wxString( __DATE__ ) + wxString( __TIME__ );
result.Replace(" ",""); result.Replace(" ","");
return result; return result;
} }