Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
711605af
Commit
711605af
authored
Jan 19, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add build date/time in the version infos
parent
00dc86ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+2
-1
src/libvlc.c
src/libvlc.c
+2
-2
No files found.
modules/gui/qt4/dialogs/help.cpp
View file @
711605af
...
...
@@ -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
...
...
src/libvlc.c
View file @
711605af
...
...
@@ -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
);
...
...
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