# HG changeset patch # User Christian Brabandt # Date 1530048605 -7200 # Node ID 66e592f0bbf430eab77819fa74725ecc5ea87984 # Parent 13d3ab3c7f6de998485360628f9a16aab24f709b patch 8.1.0117: URL in install program still points to SourceForge commit https://github.com/vim/vim/commit/bd87eb38c558521ff709651ac190ffd1b9dee057 Author: Bram Moolenaar Date: Tue Jun 26 23:18:45 2018 +0200 patch 8.1.0117: URL in install program still points to SourceForge Problem: URL in install program still points to SourceForge. Solution: Change it to www.vim.org. (closes https://github.com/vim/vim/issues/3100) diff --git a/src/dosinst.c b/src/dosinst.c --- a/src/dosinst.c +++ b/src/dosinst.c @@ -1878,7 +1878,7 @@ install_start_menu(int idx) add_pathsep(shell_folder_path); strcat(shell_folder_path, "Vim Online.url"); if (!WritePrivateProfileString("InternetShortcut", "URL", - "http://vim.sf.net/", shell_folder_path)) + "https://www.vim.org/", shell_folder_path)) { printf("Creating the Vim online URL failed\n"); return; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -790,6 +790,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 117, +/**/ 116, /**/ 115,