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
7c0b1bcb
Commit
7c0b1bcb
authored
Sep 12, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* added compilation information
parent
9ace8a6f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
3 deletions
+13
-3
extras/MacOSX/Resources/English.lproj/About.nib/classes.nib
extras/MacOSX/Resources/English.lproj/About.nib/classes.nib
+1
-1
extras/MacOSX/Resources/English.lproj/About.nib/info.nib
extras/MacOSX/Resources/English.lproj/About.nib/info.nib
+6
-2
extras/MacOSX/Resources/English.lproj/About.nib/keyedobjects.nib
...MacOSX/Resources/English.lproj/About.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/about.h
modules/gui/macosx/about.h
+1
-0
modules/gui/macosx/about.m
modules/gui/macosx/about.m
+5
-0
No files found.
extras/MacOSX/Resources/English.lproj/About.nib/classes.nib
View file @
7c0b1bcb
...
...
@@ -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;
},
...
...
extras/MacOSX/Resources/English.lproj/About.nib/info.nib
View file @
7c0b1bcb
...
...
@@ -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>
extras/MacOSX/Resources/English.lproj/About.nib/keyedobjects.nib
View file @
7c0b1bcb
No preview for this file type
modules/gui/macosx/about.h
View file @
7c0b1bcb
...
...
@@ -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
;
...
...
modules/gui/macosx/about.m
View file @
7c0b1bcb
...
...
@@ -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
];
...
...
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