Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
0a520894
Commit
0a520894
authored
Mar 04, 2008
by
Pavlov Konstantin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We're on git now, so show Git commit instead of svn revision.
parent
c40d2481
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
modules/gui/macosx/about.m
modules/gui/macosx/about.m
+1
-1
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+1
-1
modules/gui/wince/interface.cpp
modules/gui/wince/interface.cpp
+1
-1
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
src/libvlc-common.c
src/libvlc-common.c
+1
-1
No files found.
modules/gui/macosx/about.m
View file @
0a520894
...
...
@@ -88,7 +88,7 @@ static VLAboutBox *_o_sharedInstance = nil;
/* setup the creator / revision field */
if
(
VLC_Changeset
()
!=
"exported"
)
[
o_revision_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s, based on
SVN revision %s"
),
[
NSString
stringWithFormat
:
_NS
(
"Compiled by %s, based on
Git commit %s"
),
VLC_CompileBy
(),
VLC_Changeset
()]];
else
[
o_revision_field
setStringValue
:
...
...
modules/gui/qt4/dialogs/help.cpp
View file @
0a520894
...
...
@@ -122,7 +122,7 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
+
qfu
(
VLC_CompileBy
()
)
+
"@"
+
qfu
(
VLC_CompileHost
()
)
+
"."
+
qfu
(
VLC_CompileDomain
()
)
+
".
\n
"
+
"Compiler: "
+
qfu
(
VLC_Compiler
()
)
+
".
\n
"
+
qtr
(
"Based on
SVN revision
: "
)
+
qfu
(
VLC_Changeset
()
)
+
".
\n
"
+
qtr
(
"Based on
Git commit
: "
)
+
qfu
(
VLC_Changeset
()
)
+
".
\n
"
+
qtr
(
"You are using the Qt4 Interface.
\n\n
"
)
+
qtr
(
"Copyright (c) "
COPYRIGHT_YEARS
" by the VideoLAN Team.
\n
"
)
+
"vlc@videolan.org, http://www.videolan.org"
);
...
...
modules/gui/wince/interface.cpp
View file @
0a520894
...
...
@@ -502,7 +502,7 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
_
(
"Compiled by "
)
+
VLC_CompileBy
()
+
"@"
+
VLC_CompileHost
()
+
"."
+
VLC_CompileDomain
()
+
".
\n
"
+
_
(
"Compiler: "
)
+
VLC_Compiler
()
+
".
\n
"
+
_
(
"Based on
SVN revision
: "
)
+
VLC_Changeset
()
+
".
\n\n
"
+
_
(
"Based on
Git commit
: "
)
+
VLC_Changeset
()
+
".
\n\n
"
+
_
(
"The VideoLAN team <videolan@videolan.org>
\n
"
"http://www.videolan.org/"
);
...
...
modules/gui/wxwidgets/interface.cpp
View file @
0a520894
...
...
@@ -958,7 +958,7 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
wxU
(
_
(
"Compiled by "
))
+
wxU
(
VLC_CompileBy
())
+
wxU
(
"@"
)
+
wxU
(
VLC_CompileHost
())
+
wxT
(
"."
)
+
wxU
(
VLC_CompileDomain
())
+
wxT
(
".
\n
"
)
+
wxU
(
_
(
"Compiler: "
))
+
wxU
(
VLC_Compiler
())
+
wxT
(
".
\n
"
)
+
wxU
(
_
(
"Based on
SVN revision
: "
))
+
wxU
(
VLC_Changeset
())
+
wxT
(
".
\n\n
"
)
+
wxU
(
_
(
"Based on
Git commit
: "
))
+
wxU
(
VLC_Changeset
())
+
wxT
(
".
\n\n
"
)
+
#ifdef __WXMSW__
wxU
(
vlc_wraptext
(
LICENSE_MSG
,
WRAPCOUNT
)
)
+
wxT
(
"
\n\n
"
)
+
#else
...
...
src/Makefile.am
View file @
0a520894
...
...
@@ -380,7 +380,7 @@ SOURCES_libvlc_control = \
misc/revision.c
:
rm
-f
$@
$@
.tmp
echo
"/* AUTOGENERATED FILE - DO NOT EDIT */"
>
$@
.tmp
REVISION
=
"
$$
(LANG=C
svnversion "
$(top_srcdir)
" 2>/dev/null || echo exported)"
;
\
REVISION
=
"
$$
(LANG=C
git-show-ref -s HEAD 2>/dev/null | cut -b -10 || echo exported)"
;
\
echo
"const char psz_vlc_changeset[] =
\"
$$
REVISION
\"
;"
>>
$@
.tmp
mv
-f
$@
.tmp
$@
...
...
src/libvlc-common.c
View file @
0a520894
...
...
@@ -1810,7 +1810,7 @@ static void Version( void )
VLC_CompileBy
(),
VLC_CompileHost
(),
VLC_CompileDomain
()
);
utf8_fprintf
(
stdout
,
_
(
"Compiler: %s
\n
"
),
VLC_Compiler
()
);
if
(
strcmp
(
VLC_Changeset
(),
"exported"
)
)
utf8_fprintf
(
stdout
,
_
(
"Based upon
svn changese
t [%s]
\n
"
),
utf8_fprintf
(
stdout
,
_
(
"Based upon
Git commi
t [%s]
\n
"
),
VLC_Changeset
()
);
utf8_fprintf
(
stdout
,
LICENSE_MSG
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment