[vlc-commits] macosx: use https instead of http for links opened from within the application

Felix Paul Kühne git at videolan.org
Wed May 1 23:02:38 CEST 2019


vlc/vlc-3.0 | branch: master | Felix Paul Kühne <felix at feepk.net> | Fri Apr 19 13:04:32 2019 +0200| [dade7d84b65ea85196bd4a65de62726e65be7bdf] | committer: David Fuhrmann

macosx: use https instead of http for links opened from within the application

(cherry picked from commit 9da6cedb6e69b77b617515f9bdcae6967bd825cf)
Signed-off-by: David Fuhrmann <dfuhrmann at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=dade7d84b65ea85196bd4a65de62726e65be7bdf
---

 modules/gui/macosx/VLCHelpWindowController.m | 2 +-
 modules/gui/macosx/VLCMainMenu.m             | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/gui/macosx/VLCHelpWindowController.m b/modules/gui/macosx/VLCHelpWindowController.m
index ed973de85e..9520e5aead 100644
--- a/modules/gui/macosx/VLCHelpWindowController.m
+++ b/modules/gui/macosx/VLCHelpWindowController.m
@@ -63,7 +63,7 @@
                                ((OSX_YOSEMITE_AND_HIGHER) ? @"Helvetica Neue" : @"Lucida Grande"), _NS(I_LONGHELP)];
 
     [[helpWebView mainFrame] loadHTMLString:htmlWithStyle
-                                    baseURL:[NSURL URLWithString:@"http://videolan.org"]];
+                                    baseURL:[NSURL URLWithString:@"https://videolan.org"]];
 }
 
 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
diff --git a/modules/gui/macosx/VLCMainMenu.m b/modules/gui/macosx/VLCMainMenu.m
index 0be5de87a0..736dd27b49 100644
--- a/modules/gui/macosx/VLCMainMenu.m
+++ b/modules/gui/macosx/VLCMainMenu.m
@@ -1301,28 +1301,28 @@
 
 - (IBAction)openDocumentation:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/doc/"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/doc/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openWebsite:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openForum:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://forum.videolan.org/"];
+    NSURL *url = [NSURL URLWithString: @"https://forum.videolan.org/"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }
 
 - (IBAction)openDonate:(id)sender
 {
-    NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
+    NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/contribute.html#paypal"];
 
     [[NSWorkspace sharedWorkspace] openURL: url];
 }



More information about the vlc-commits mailing list