Commit e92df3eb authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* New menu-items referencing forum

parent cdce7f85
...@@ -106,6 +106,8 @@ ...@@ -106,6 +106,8 @@
intfOpenNet = id; intfOpenNet = id;
openCrashLog = id; openCrashLog = id;
openDocumentation = id; openDocumentation = id;
openDonate = id;
openForum = id;
openLicense = id; openLicense = id;
openReadMe = id; openReadMe = id;
openRecentItem = id; openRecentItem = id;
......
...@@ -3,17 +3,17 @@ ...@@ -3,17 +3,17 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key> <key>IBDocumentLocation</key>
<string>186 61 505 517 0 0 800 578 </string> <string>-2 60 496 270 0 0 1024 746 </string>
<key>IBEditorPositions</key> <key>IBEditorPositions</key>
<dict> <dict>
<key>1617</key> <key>1617</key>
<string>542 480 104 149 0 0 1024 746 </string> <string>542 480 104 149 0 0 1024 746 </string>
<key>2197</key> <key>2197</key>
<string>342 573 596 143 0 0 1280 938 </string> <string>214 442 596 144 0 0 1024 746 </string>
<key>29</key> <key>29</key>
<string>102 894 419 44 0 0 1280 938 </string> <string>72 702 419 44 0 0 1024 746 </string>
<key>915</key> <key>915</key>
<string>951 565 178 211 0 0 1280 938 </string> <string>730 416 178 211 0 0 1024 746 </string>
</dict> </dict>
<key>IBFramework Version</key> <key>IBFramework Version</key>
<string>364.0</string> <string>364.0</string>
...@@ -22,9 +22,6 @@ ...@@ -22,9 +22,6 @@
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>21</integer> <integer>21</integer>
<integer>2197</integer>
<integer>29</integer>
<integer>915</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>7U16</string> <string>7U16</string>
......
...@@ -284,6 +284,8 @@ struct intf_sys_t ...@@ -284,6 +284,8 @@ struct intf_sys_t
- (IBAction)reportABug:(id)sender; - (IBAction)reportABug:(id)sender;
- (IBAction)openWebsite:(id)sender; - (IBAction)openWebsite:(id)sender;
- (IBAction)openLicense:(id)sender; - (IBAction)openLicense:(id)sender;
- (IBAction)openForum:(id)sender;
- (IBAction)openDonate:(id)sender;
- (IBAction)openCrashLog:(id)sender; - (IBAction)openCrashLog:(id)sender;
- (IBAction)togglePlaylist:(id)sender; - (IBAction)togglePlaylist:(id)sender;
......
...@@ -1452,6 +1452,20 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1452,6 +1452,20 @@ static VLCMain *_o_sharedMainInstance = nil;
withApplication: @"TextEdit"]; withApplication: @"TextEdit"];
} }
- (IBAction)openForum:(id)sender
{
NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
[[NSWorkspace sharedWorkspace] openURL: o_url];
}
- (IBAction)openDonate:(id)sender
{
NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
[[NSWorkspace sharedWorkspace] openURL: o_url];
}
- (IBAction)openCrashLog:(id)sender - (IBAction)openCrashLog:(id)sender
{ {
NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log" NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log"
......
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