# HG changeset patch # User Bram Moolenaar # Date 1644758105 -3600 # Node ID 48dee8a7b1d2f5695eb490be6e3af2d76cfef4b1 # Parent dba260c58ea5469ddf8febab4e519a008f394e3e patch 8.2.4370: MS-Windows: libsodium.dll not included with the installer Commit: https://github.com/vim/vim/commit/cf6ad8ea8cff318877758b48d3786ab08251ab89 Author: Christian Brabandt Date: Sun Feb 13 13:11:32 2022 +0000 patch 8.2.4370: MS-Windows: libsodium.dll not included with the installer Problem: MS-Windows: libsodium.dll not included with the installer. Solution: Add the file to the installer if it exists. (Christian Brabandt, closes #9762) diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -348,6 +348,9 @@ Section "$(str_section_exe)" id_section_ !if /FileExists "${VIMSRC}\vim${BIT}.dll" File ${VIMSRC}\vim${BIT}.dll !endif +!if /FileExists "${VIMRT}\libsodium.dll" + File ${VIMRT}\libsodium.dll +!endif File /oname=install.exe ${VIMSRC}\installw32.exe File /oname=uninstall.exe ${VIMSRC}\uninstallw32.exe File ${VIMSRC}\vimrun.exe diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4370, +/**/ 4369, /**/ 4368,