changeset 11555:8be4b88c47d7 v8.0.0660

patch 8.0.0660: silent install on MS-Windows shows dialog commit https://github.com/vim/vim/commit/a1fed064d1eca6ae2c526311ec5464175c6f19e2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 22:05:02 2017 +0200 patch 8.0.0660: silent install on MS-Windows shows dialog Problem: Silent install on MS-Windows does show a dialog. Solution: Add /SD to the default choice. (allburov, closes https://github.com/vim/vim/issues/1772)
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Jun 2017 22:15:05 +0200
parents f57b7c12e009
children 92e04864687e
files nsis/gvim.nsi src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -87,7 +87,7 @@ UninstPage instfiles
 Function .onInit
   MessageBox MB_YESNO|MB_ICONQUESTION \
 	"This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \
-	IDYES NoAbort
+	/SD IDYES NoAbort
 	    Abort ; causes installer to quit.
 	NoAbort:
 
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    660,
+/**/
     659,
 /**/
     658,