Changeset 0a520894c4451459a1e93426a1042e88be5db0cc
- 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
| rc3131c0 |
r0a52089 |
|
| 89 | 89 | if( VLC_Changeset() != "exported" ) |
|---|
| 90 | 90 | [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"), |
|---|
| 92 | 92 | VLC_CompileBy(), VLC_Changeset()]]; |
|---|
| 93 | 93 | else |
|---|
| r683bc3d |
r0a52089 |
|
| 123 | 123 | + qfu( VLC_CompileDomain() ) + ".\n" |
|---|
| 124 | 124 | + "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" |
|---|
| 126 | 126 | + qtr( "You are using the Qt4 Interface.\n\n" ) |
|---|
| 127 | 127 | + qtr( "Copyright (c) " COPYRIGHT_YEARS " by the VideoLAN Team.\n" ) |
|---|
| r99fab90 |
r0a52089 |
|
| 503 | 503 | VLC_CompileHost() + "." + VLC_CompileDomain() + ".\n" + |
|---|
| 504 | 504 | _("Compiler: ") + VLC_Compiler() + ".\n" + |
|---|
| 505 | | _("Based on SVN revision: ") + VLC_Changeset() + ".\n\n" + |
|---|
| | 505 | _("Based on Git commit: ") + VLC_Changeset() + ".\n\n" + |
|---|
| 506 | 506 | _("The VideoLAN team <videolan@videolan.org>\n" |
|---|
| 507 | 507 | "http://www.videolan.org/"); |
|---|
| rb6dd543 |
r0a52089 |
|
| 959 | 959 | wxU(VLC_CompileHost())+ wxT(".")+ wxU(VLC_CompileDomain())+ wxT(".\n") + |
|---|
| 960 | 960 | 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") + |
|---|
| 962 | 962 | #ifdef __WXMSW__ |
|---|
| 963 | 963 | wxU( vlc_wraptext(LICENSE_MSG,WRAPCOUNT) ) + wxT("\n\n") + |
|---|
| rf8c4e77 |
r0a52089 |
|
| 381 | 381 | rm -f $@ $@.tmp |
|---|
| 382 | 382 | 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)"; \ |
|---|
| 384 | 384 | echo "const char psz_vlc_changeset[] = \"$$REVISION\";" >> $@.tmp |
|---|
| 385 | 385 | mv -f $@.tmp $@ |
|---|
| ra78e273 |
r0a52089 |
|
| 1811 | 1811 | utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() ); |
|---|
| 1812 | 1812 | 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"), |
|---|
| 1814 | 1814 | VLC_Changeset() ); |
|---|
| 1815 | 1815 | utf8_fprintf( stdout, LICENSE_MSG ); |
|---|