Changeset 0a520894c4451459a1e93426a1042e88be5db0cc

Show
Ignore:
Timestamp:
04/03/08 01:37:44 (7 months ago)
Author:
Pavlov Konstantin <thresh@videolan.org>
git-committer:
Pavlov Konstantin <thresh@videolan.org> 1204591064 +0300
git-parent:

[c40d24815fbe31c9cf741eee40cf47830704d0f9]

git-author:
Pavlov Konstantin <thresh@videolan.org> 1204591064 +0300
Message:

We're on git now, so show Git commit instead of svn revision.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/macosx/about.m

    rc3131c0 r0a52089  
    8989        if( VLC_Changeset() != "exported" ) 
    9090            [o_revision_field setStringValue: 
    91                 [NSString stringWithFormat: _NS("Compiled by %s, based on SVN revision %s"),  
     91                [NSString stringWithFormat: _NS("Compiled by %s, based on Git commit %s"), 
    9292                    VLC_CompileBy(), VLC_Changeset()]]; 
    9393        else 
  • modules/gui/qt4/dialogs/help.cpp

    r683bc3d r0a52089  
    123123            + qfu( VLC_CompileDomain() ) + ".\n" 
    124124            + "Compiler: " + qfu( VLC_Compiler() ) + ".\n" 
    125             + qtr( "Based on SVN revision: " ) + qfu( VLC_Changeset() ) + ".\n" 
     125            + qtr( "Based on Git commit: " ) + qfu( VLC_Changeset() ) + ".\n" 
    126126            + qtr( "You are using the Qt4 Interface.\n\n" ) 
    127127            + qtr( "Copyright (c) " COPYRIGHT_YEARS " by the VideoLAN Team.\n" ) 
  • modules/gui/wince/interface.cpp

    r99fab90 r0a52089  
    503503                VLC_CompileHost() + "." + VLC_CompileDomain() + ".\n" + 
    504504                _("Compiler: ") + VLC_Compiler() + ".\n" + 
    505                 _("Based on SVN revision: ") + VLC_Changeset() + ".\n\n" + 
     505                _("Based on Git commit: ") + VLC_Changeset() + ".\n\n" + 
    506506                _("The VideoLAN team <videolan@videolan.org>\n" 
    507507                  "http://www.videolan.org/"); 
  • modules/gui/wxwidgets/interface.cpp

    rb6dd543 r0a52089  
    959959       wxU(VLC_CompileHost())+ wxT(".")+ wxU(VLC_CompileDomain())+ wxT(".\n") + 
    960960       wxU(_("Compiler: "))+ wxU(VLC_Compiler())+wxT( ".\n") + 
    961        wxU(_("Based on SVN revision: "))+wxU(VLC_Changeset())+wxT(".\n\n") + 
     961       wxU(_("Based on Git commit: "))+wxU(VLC_Changeset())+wxT(".\n\n") + 
    962962#ifdef __WXMSW__ 
    963963        wxU( vlc_wraptext(LICENSE_MSG,WRAPCOUNT) ) + wxT("\n\n") + 
  • src/Makefile.am

    rf8c4e77 r0a52089  
    381381    rm -f $@ $@.tmp 
    382382    echo "/* AUTOGENERATED FILE - DO NOT EDIT */" > $@.tmp 
    383     REVISION="$$(LANG=C svnversion "$(top_srcdir)" 2>/dev/null || echo exported)" ; \ 
     383    REVISION="$$(LANG=C git-show-ref -s HEAD 2>/dev/null | cut -b -10 || echo exported)"; \ 
    384384    echo "const char psz_vlc_changeset[] = \"$$REVISION\";" >> $@.tmp 
    385385    mv -f $@.tmp $@ 
  • src/libvlc-common.c

    ra78e273 r0a52089  
    18111811    utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() ); 
    18121812    if( strcmp( VLC_Changeset(), "exported" ) ) 
    1813         utf8_fprintf( stdout, _("Based upon svn changeset [%s]\n"), 
     1813        utf8_fprintf( stdout, _("Based upon Git commit [%s]\n"), 
    18141814                 VLC_Changeset() ); 
    18151815    utf8_fprintf( stdout, LICENSE_MSG );