[vlc-commits] macosx: Add build date + time to about dialog
Marvin Scholz
git at videolan.org
Fri Sep 29 13:18:15 CEST 2017
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Fri Sep 29 13:15:48 2017 +0200| [7ca8ea4b4efadbb79bcc227236887b9ae9723201] | committer: Marvin Scholz
macosx: Add build date + time to about dialog
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7ca8ea4b4efadbb79bcc227236887b9ae9723201
---
modules/gui/macosx/VLCAboutWindowController.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/macosx/VLCAboutWindowController.m b/modules/gui/macosx/VLCAboutWindowController.m
index edfea03273..dea4585d27 100644
--- a/modules/gui/macosx/VLCAboutWindowController.m
+++ b/modules/gui/macosx/VLCAboutWindowController.m
@@ -115,7 +115,7 @@
#else
compiler = [NSString stringWithFormat:@"llvm-gcc %s", __VERSION__];
#endif
- [o_revision_field setStringValue: [NSString stringWithFormat: _NS("Compiled by %s with %@"), VLC_CompileBy(), compiler]];
+ [o_revision_field setStringValue: [NSString stringWithFormat:@"Compiled by %s with %@ (%s %s)", VLC_CompileBy(), compiler, __DATE__, __TIME__]];
/* Setup the nameversion field */
[o_name_version_field setStringValue: [NSString stringWithFormat:@"Version %s (%s)", VERSION_MESSAGE, PLATFORM]];
More information about the vlc-commits
mailing list