Commit 7c0b1bcb authored by Felix Paul Kühne's avatar Felix Paul Kühne

* added compilation information

parent 9ace8a6f
......@@ -3,7 +3,6 @@
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{CLASS = MPSlider; LANGUAGE = ObjC; SUPERCLASS = NSSlider; },
{
ACTIONS = {};
CLASS = VLAboutBox;
LANGUAGE = ObjC;
OUTLETS = {
......@@ -12,6 +11,7 @@
"o_credits_scrollview" = id;
"o_credits_textview" = id;
"o_name_version_field" = id;
"o_revision_field" = id;
};
SUPERCLASS = NSObject;
},
......
......@@ -5,10 +5,14 @@
<key>IBDocumentLocation</key>
<string>45 176 505 517 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>364.0</string>
<string>437.0</string>
<key>IBLockedObjects</key>
<array/>
<key>IBOpenObjects</key>
<array>
<integer>1345</integer>
</array>
<key>IBSystem Version</key>
<string>7R28</string>
<string>8C46</string>
</dict>
</plist>
......@@ -28,6 +28,7 @@
{
IBOutlet id o_about_window;
IBOutlet id o_name_version_field;
IBOutlet id o_revision_field;
IBOutlet id o_copyright_field;
IBOutlet id o_credits_textview;
IBOutlet id o_credits_scrollview;
......
......@@ -74,6 +74,11 @@ static VLAboutBox *_o_sharedInstance = nil;
/* Setup the version field */
o_version = [o_info_dict objectForKey:@"CFBundleVersion"];
/* setup the creator / revision field */
[o_revision_field setStringValue: [NSString stringWithFormat: \
_NS("Compiled by %s, based on SVN revision: %s"), \
VLC_CompileBy(), VLC_Changeset()]];
/* Setup the nameversion field */
o_name_version = [NSString stringWithFormat:@"%@ - Version %@", o_name, o_version];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment