]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/intf.m
* New menu-items referencing forum
[vlc] / modules / gui / macosx / intf.m
index d227969a953828909db74dd80dceb42e317bf130..1cee2881aed40f93a08bd5ffed46c675eefbaeaf 100644 (file)
@@ -1452,6 +1452,20 @@ static VLCMain *_o_sharedMainInstance = nil;
                                    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
 {
     NSString * o_path = [@"~/Library/Logs/CrashReporter/VLC.crash.log"