summaryrefslogtreecommitdiff
path: root/frontends/windows
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2022-05-27 17:58:51 +0100
committerJohn-Mark Bell <jmb@netsurf-browser.org>2022-05-27 17:58:51 +0100
commitb81c95aca886372a8943c1fe8c6747d56e1c5d02 (patch)
tree1d6000984e6904c66cb212d54e67bf0576e7411c /frontends/windows
parent862756a1a47553f317970f3a04fce3bd204792f6 (diff)
downloadnetsurf-b81c95aca886372a8943c1fe8c6747d56e1c5d02.tar.gz
netsurf-b81c95aca886372a8943c1fe8c6747d56e1c5d02.tar.bz2
s/http/https/ in user-facing URIs
Diffstat (limited to 'frontends/windows')
-rw-r--r--frontends/windows/res/installer.nsi6
-rw-r--r--frontends/windows/window.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/frontends/windows/res/installer.nsi b/frontends/windows/res/installer.nsi
index 7a03192f5..e91f29090 100644
--- a/frontends/windows/res/installer.nsi
+++ b/frontends/windows/res/installer.nsi
@@ -20,9 +20,9 @@
!endif
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
-!define HELPURL "http://www.netsurf-browser.org/" # "Support Information" link
-!define UPDATEURL "http://www.netsurf-browser.org/" # "Product Updates" link
-!define ABOUTURL "http://www.netsurf-browser.org/" # "Publisher" link
+!define HELPURL "https://www.netsurf-browser.org/" # "Support Information" link
+!define UPDATEURL "https://www.netsurf-browser.org/" # "Product Updates" link
+!define ABOUTURL "https://www.netsurf-browser.org/" # "Publisher" link
# This is the size (in kB) of all the files copied into "Program Files"
!define INSTALLSIZE 9000
diff --git a/frontends/windows/window.c b/frontends/windows/window.c
index 750c57703..2f48ae28b 100644
--- a/frontends/windows/window.c
+++ b/frontends/windows/window.c
@@ -1250,17 +1250,17 @@ nsws_window_command(HWND hwnd,
case IDM_HELP_CONTENTS:
nsws_window_go(hwnd,
- "http://www.netsurf-browser.org/documentation/");
+ "https://www.netsurf-browser.org/documentation/");
break;
case IDM_HELP_GUIDE:
nsws_window_go(hwnd,
- "http://www.netsurf-browser.org/documentation/guide");
+ "https://www.netsurf-browser.org/documentation/guide");
break;
case IDM_HELP_INFO:
nsws_window_go(hwnd,
- "http://www.netsurf-browser.org/documentation/info");
+ "https://www.netsurf-browser.org/documentation/info");
break;
case IDM_HELP_ABOUT: