]> git.sesse.net Git - vlc/commitdiff
Add build date/time in the version infos
authorRémi Denis-Courmont <remi@remlab.net>
Tue, 19 Jan 2010 21:40:49 +0000 (23:40 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 19 Jan 2010 21:40:49 +0000 (23:40 +0200)
modules/gui/qt4/dialogs/help.cpp
src/libvlc.c

index e37a37215dac3ba1eb0286274898810b566e26f2..73cdf96aba42247ab1cbb498879bc34d0437807a 100644 (file)
@@ -116,7 +116,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf)
                 "VLC uses its internal codecs and works on essentially every "
                 "popular platform.\n\n" )
             + qtr( "This version of VLC was compiled by:\n " )
-            + qfu( VLC_CompileBy() )+ "@" + qfu( VLC_CompileHost() ) + ".\n"
+            + qfu( VLC_CompileBy() )+ " on " + qfu( VLC_CompileHost() ) +
+            + " ("__DATE__" "__TIME__").\n"
             + qtr( "Compiler: " ) + qfu( VLC_Compiler() ) + ".\n"
             + qtr( "You are using the Qt4 Interface.\n\n" )
             + qtr( "Copyright (C) " ) + COPYRIGHT_YEARS
index cd31fe65311420aaf03151168e908dbd95fb2126..7a2bce9a272f83a8a23629116f5ba5378d0e94d1 100644 (file)
@@ -1971,8 +1971,8 @@ static void Version( void )
 
     utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(),
                   psz_vlc_changeset );
-    utf8_fprintf( stdout, _("Compiled by %s on %s\n"),
-             VLC_CompileBy(), VLC_CompileHost() );
+    utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"),
+             VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ );
     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
     utf8_fprintf( stdout, "%s", LICENSE_MSG );