Skip to content

Commit 0d15f19

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 75ee1a5 + 555de4e commit 0d15f19

292 files changed

Lines changed: 9557 additions & 10032 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Filelist

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SRC_ALL = \
1616
src/ascii.h \
1717
src/beval.c \
1818
src/beval.h \
19+
src/blob.c \
1920
src/blowfish.c \
2021
src/buffer.c \
2122
src/channel.c \
@@ -146,6 +147,7 @@ SRC_ALL = \
146147
src/protodef.h \
147148
src/proto/arabic.pro \
148149
src/proto/beval.pro \
150+
src/proto/blob.pro \
149151
src/proto/blowfish.pro \
150152
src/proto/buffer.pro \
151153
src/proto/channel.pro \
@@ -334,8 +336,6 @@ SRC_UNIX = \
334336
src/gui_x11_pm.h \
335337
src/hangulin.c \
336338
src/if_xcmdsrv.c \
337-
src/integration.c \
338-
src/integration.h \
339339
src/link.sh \
340340
src/installman.sh \
341341
src/installml.sh \
@@ -358,7 +358,6 @@ SRC_UNIX = \
358358
src/proto/if_xcmdsrv.pro \
359359
src/proto/os_unix.pro \
360360
src/proto/pty.pro \
361-
src/proto/workshop.pro \
362361
src/pty.c \
363362
src/testdir/Makefile \
364363
src/testdir/unix.vim \
@@ -368,10 +367,6 @@ SRC_UNIX = \
368367
src/vimtutor \
369368
src/gvimtutor \
370369
src/which.sh \
371-
src/workshop.c \
372-
src/workshop.h \
373-
src/wsdebug.c \
374-
src/wsdebug.h \
375370
src/tee/Makefile \
376371
src/xxd/Makefile \
377372

@@ -517,9 +512,7 @@ SRC_DOS_BIN = \
517512
src/xpm/x86/lib/libXpm.a \
518513
src/xpm/x86/lib/libXpm.lib \
519514
src/xpm/x86/lib-vc14/libXpm.lib \
520-
nsis/icons/*.bmp \
521-
nsis/icons/*.ico \
522-
nsis/icons/*.svg \
515+
nsis/icons.zip \
523516

524517
# source files for Amiga, DOS, etc. (also in the extra archive)
525518
SRC_AMI_DOS = \

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ MINOR = 1
205205
# - Make sure there is a diff.exe two levels up (get it from a previous Vim
206206
# version). Also put winpty32.dll and winpty-agent.exe there.
207207
# - go to ../nsis and do:
208+
# > unzip icons.zip
208209
# > makensis gvim.nsi (takes a few minutes).
209210
# ignore warning for libwinpthread-1.dll
210211
# - Copy gvim##.exe to the dist directory.
@@ -468,11 +469,12 @@ dosrt_files: dist prepare no_title.vim
468469
-rm $(IN_README_DIR)
469470
mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
470471
rmdir dist/vim/$(VIMRTDIR)/runtime
471-
# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
472-
# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
473-
# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
472+
# Add the message translations. Trick: skip ja.mo/ja.euc-jp.mo and use
473+
# ja.sjis.mo instead. Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo,
474+
# sk.mo / sk.cp1250.mo, zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and
475+
# ru.mo / ru.cp1251.mo.
474476
for i in $(LANG_DOS); do \
475-
if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/pl.mo" -a "$$i" != "src/po/cs.mo" -a "$$i" != "src/po/sk.mo" -a "$$i" != "src/po/zh_CN.mo" -a "$$i" != "src/po/ru.mo" -a "$$i" != "src/po/uk.mo"; then \
477+
if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/ja.euc-jp.mo" -a "$$i" != "src/po/pl.mo" -a "$$i" != "src/po/cs.mo" -a "$$i" != "src/po/sk.mo" -a "$$i" != "src/po/zh_CN.mo" -a "$$i" != "src/po/ru.mo" -a "$$i" != "src/po/uk.mo"; then \
476478
n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
477479
mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
478480
mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \

nsis/README.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ To build the installable .exe:
6767
Install NSIS if you didn't do that already.
6868
Also install UPX, if you want a compressed file.
6969

70+
Unpack the images:
71+
cd nsis
72+
unzip icons.zip
73+
7074
To build then, enter:
7175

76+
cd nsis
7277
makensis gvim.nsi

nsis/icons.zip

119 KB
Binary file not shown.

nsis/icons/disabled.bmp

-358 Bytes
Binary file not shown.

nsis/icons/enabled.bmp

-358 Bytes
Binary file not shown.

nsis/icons/header.bmp

-100 KB
Binary file not shown.

nsis/icons/header.svg

Lines changed: 0 additions & 265 deletions
This file was deleted.

nsis/icons/un_header.bmp

-100 KB
Binary file not shown.

nsis/icons/uninstall.bmp

-604 KB
Binary file not shown.

0 commit comments

Comments
 (0)