diff options
author | XhmikosR <xhmikosr@gmail.com> | 2015-04-14 09:28:44 +0300 |
---|---|---|
committer | XhmikosR <xhmikosr@gmail.com> | 2015-04-14 09:28:44 +0300 |
commit | 71ebf19fb489b59f07052329bce076ebd7011c8d (patch) | |
tree | 7736d7b660596a6c1e8343db8dab52b25ca235cc | |
parent | 262d8e743c12ce6a5492d103499431e23338fed1 (diff) | |
download | notepad2-mod-71ebf19fb489b59f07052329bce076ebd7011c8d.zip notepad2-mod-71ebf19fb489b59f07052329bce076ebd7011c8d.tar.gz notepad2-mod-71ebf19fb489b59f07052329bce076ebd7011c8d.tar.bz2 |
Switch to `https`.
-rw-r--r-- | Readme.md | 2 | ||||
-rw-r--r-- | src/Dialogs.c | 2 | ||||
-rw-r--r-- | src/Version.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -19,7 +19,7 @@ ## Supported Operating Systems: * XP (SP3, SP2 might or might not work), Vista, 7, 8 and 8.1 both 32-bit and 64-bit -## [Screenshots](http://xhmikosr.github.io/notepad2-mod/screenshots) +## [Screenshots](https://xhmikosr.github.io/notepad2-mod/screenshots) ## Notes: * If you find any bugs or have any suggestions for the implemented lexers (and **not** only) diff --git a/src/Dialogs.c b/src/Dialogs.c index eb6e424..567e538 100644 --- a/src/Dialogs.c +++ b/src/Dialogs.c @@ -278,7 +278,7 @@ INT_PTR CALLBACK AboutDlgProc(HWND hwnd,UINT umsg,WPARAM wParam,LPARAM lParam) ShellExecute(hwnd,L"open",L"mailto:florian.balmer@gmail.com",NULL,NULL,SW_SHOWNORMAL);
}
else if (pnmhdr->idFrom == IDC_MOD_PAGE) {
- ShellExecute(hwnd,L"open",L"http://xhmikosr.github.io/notepad2-mod/",NULL,NULL,SW_SHOWNORMAL);
+ ShellExecute(hwnd,L"open",L"https://xhmikosr.github.io/notepad2-mod/",NULL,NULL,SW_SHOWNORMAL);
}
}
break;
diff --git a/src/Version.h b/src/Version.h index e75de93..997e683 100644 --- a/src/Version.h +++ b/src/Version.h @@ -43,7 +43,7 @@ #define VERSION_WEBPAGEDISPLAY L"flo's freeware - http://www.flos-freeware.ch"
#define VERSION_EMAILDISPLAY L"florian.balmer@gmail.com"
#define VERSION_COMPANYNAME L"Florian Balmer et al."
-#define VERSION_MODPAGEDISPLAY L"http://xhmikosr.github.io/notepad2-mod/"
+#define VERSION_MODPAGEDISPLAY L"https://xhmikosr.github.io/notepad2-mod/"
#if defined(_WIN64)
#define VERSION_FILEVERSION_LONG L"Notepad2-mod (64-bit) " STRINGIFY(VERSION_MAJOR) L"." \
|