# HG changeset patch # User Bram Moolenaar # Date 1585164604 -3600 # Node ID b245e974d42cd20067f1e90699afaed78a979f90 # Parent 42e4083429a7ea0472bcd13ffb0bce3182b9ba4c patch 8.2.0445: png and xpm files not in MS-Windows zip file Commit: https://github.com/vim/vim/commit/f66ca9f1df535c8042292ce20f4260cafc877670 Author: Bram Moolenaar Date: Wed Mar 25 20:17:00 2020 +0100 patch 8.2.0445: png and xpm files not in MS-Windows zip file Problem: Png and xpm files not in MS-Windows zip file. Solution: Move files to shared between Unix and Windows target. diff --git a/Filelist b/Filelist --- a/Filelist +++ b/Filelist @@ -786,20 +786,20 @@ RT_UNIX = \ README_unix.txt \ runtime/hi16-action-make.png \ runtime/hi22-action-make.png \ - runtime/vim16x16.png \ - runtime/vim16x16.xpm \ - runtime/vim32x32.png \ - runtime/vim32x32.xpm \ - runtime/vim48x48.png \ - runtime/vim48x48.xpm \ runtime/gvim.desktop \ runtime/vim.desktop \ # Unix and DOS runtime without CR-LF translation RT_UNIX_DOS_BIN = \ runtime/vim16x16.gif \ + runtime/vim16x16.png \ + runtime/vim16x16.xpm \ runtime/vim32x32.gif \ + runtime/vim32x32.png \ + runtime/vim32x32.xpm \ runtime/vim48x48.gif \ + runtime/vim48x48.png \ + runtime/vim48x48.xpm \ # runtime not for unix or extra RT_NO_UNIX = \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 445, +/**/ 444, /**/ 443,