diff options
-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
@@ -16,7 +16,7 @@ _A modified version (fork) of Notepad2 based on Kai Liu's and other people's pat * Windows 2000 (when compiled with WDK, which is the default build) * XP (SP3, SP2 might or might not work), Vista, 7 and 8 both 32-bit and 64-bit -## [Screenshots](http://xhmikosr.github.com/notepad2-mod/screenshots) +## [Screenshots](http://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 fa0470b..a7407ab 100644 --- a/src/Dialogs.c +++ b/src/Dialogs.c @@ -277,7 +277,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.com/notepad2-mod/",NULL,NULL,SW_SHOWNORMAL);
+ ShellExecute(hwnd,L"open",L"http://xhmikosr.github.io/notepad2-mod/",NULL,NULL,SW_SHOWNORMAL);
}
}
break;
diff --git a/src/Version.h b/src/Version.h index 20c44a9..ce86060 100644 --- a/src/Version.h +++ b/src/Version.h @@ -34,6 +34,6 @@ #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.com/notepad2-mod/"
+#define VERSION_MODPAGEDISPLAY L"http://xhmikosr.github.io/notepad2-mod/"
#endif // NOTEPAD2_VERSION_H
|