# HG changeset patch # User Christian Brabandt # Date 1498162505 -7200 # Node ID 8be4b88c47d70a343c5d9fa70909842c2b157856 # Parent f57b7c12e00999d723967a29b8977abe37ab9a9c patch 8.0.0660: silent install on MS-Windows shows dialog commit https://github.com/vim/vim/commit/a1fed064d1eca6ae2c526311ec5464175c6f19e2 Author: Bram Moolenaar 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) diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- 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: diff --git a/src/version.c b/src/version.c --- 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,