summaryrefslogtreecommitdiff
path: root/src/GvimExt
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.2408: MinGW: "--preprocessor" flag no longer supportedv8.2.2408Bram Moolenaar2021-01-251-2/+2
| | | | | | Problem: MinGW: "--preprocessor" flag no longer supported. Solution: Remove the flag, use the defaults. (Christopher Wellons, closes #7741)
* patch 8.2.2009: MS-Windows: setting $LANG in gvimext only causes problemsv8.2.2009Bram Moolenaar2020-11-181-68/+11
| | | | | Problem: MS-Windows: setting $LANG in gvimext only causes problems. Solution: Do not set $LANG. (Ken Takata, closes #7325)
* patch 8.2.0249: MS-Windows: various warningsv8.2.0249Bram Moolenaar2020-02-121-0/+10
| | | | | | Problem: MS-Windows: various warnings. Solution: Set the charset to utf-8. Add _WIN32_WINNT and _USING_V110_SDK71_. (Ken Takata, closes #5625)
* Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar2019-12-121-2/+2
|
* patch 8.1.2086: missing a few changes for the renamed filesv8.1.2086Bram Moolenaar2019-09-272-2/+2
| | | | | Problem: Missing a few changes for the renamed files. Solution: Rename in a few more places. (Ken Takata)
* patch 8.1.2025: MS-Windows: Including shlguid.h causes problems for msys2v8.1.2025Bram Moolenaar2019-09-131-1/+0
| | | | | Problem: MS-Windows: Including shlguid.h causes problems for msys2. Solution: Do not include shlguid.h. (closes #4913)
* patch 8.1.1306: Borland support is outdated and doesn't workv8.1.1306Bram Moolenaar2019-05-093-55/+1
| | | | | | Problem: Borland support is outdated and doesn't work. Solution: Remove Borland support, there are other (free) compilers available. (Thomas Dziedzic, Ken Takata, closes #4364)
* patch 8.1.1152: compiler warning with VS2019v8.1.1152Bram Moolenaar2019-04-111-1/+1
| | | | | Problem: Compiler warning with VS2019. Solution: Specify different offset for "AMD64". (closes #4235)
* patch 8.1.1119: no support for Windows on ARM64.v8.1.1119Bram Moolenaar2019-04-041-1/+9
| | | | | Problem: No support for Windows on ARM64. Solution: Add ARM64 support (Leendert van Doorn)
* patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar2019-02-171-1/+1
| | | | | | | Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and others. Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the GUI build. (Hirohito Higashi, closes #3932)
* patch 8.1.0601: a few compiler warningsv8.1.0601Bram Moolenaar2018-12-161-1/+0
| | | | | Problem: A few compiler warnings. Solution: Add type casts. (Mike Williams)
* patch 8.1.0589: compilation error in gvimext.cppv8.1.0589Bram Moolenaar2018-12-141-2/+5
| | | | | Problem: Compilation error in gvimext.cpp. Solution: Return a value. Also fix using uninitialized variable.
* patch 8.1.0587: GvimExt: realloc() failing is not handled properlyv8.1.0587Bram Moolenaar2018-12-141-2/+7
| | | | | Problem: GvimExt: realloc() failing is not handled properly. Solution: Check for NULL return. (Jan-Jaap Korpershoek, closes #3689)
* patch 8.1.0492: "Edit with existing Vim" list can get longv8.1.0492Bram Moolenaar2018-10-251-3/+33
| | | | | Problem: "Edit with existing Vim" list can get long. Solution: Move the list to a submenu. (Ken Takata, closes #3561)
* Vim 8.1 releasev8.1.0000Bram Moolenaar2018-05-171-2/+2
| | | | Update version number and information. Fix a couple of tests.
* patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installerv8.0.1191Bram Moolenaar2017-10-141-52/+15
| | | | | | Problem: MS-Windows: missing 32 and 64 bit files in installer. Solution: Include both 32 and 64 bit GvimExt and related dll files. Remove old Windows code from the installer. (Ken Takata, closes #2144)
* patch 8.0.1178: using old compiler on MS-Windowsv8.0.1178Bram Moolenaar2017-10-071-4/+7
| | | | | Problem: Using old compiler on MS-Windows. Solution: Switch default build on MS-Windows to use MSVC 2015. (Ken Takata)
* patch 8.0.0881: win32.mak no longer included in Windows SDKv8.0.0881Bram Moolenaar2017-08-061-1/+9
| | | | | Problem: win32.mak no longer included in Windows SDK. Solution: Do not include win32.mak. (Ken Takata)
* patch 8.0.0638: cannot build with new MSVC versionv8.0.0638Bram Moolenaar2017-06-131-2/+8
| | | | | | Problem: Cannot build with new MSVC version VS2017. Solution: Change the compiler arguments. (Leonardo Manera, closes #1731, closes #1747)
* patch 8.0.0029v8.0.0029Bram Moolenaar2016-10-121-1/+1
| | | | | | Problem: Code for MS-Windows is complicated because of the exceptions for old systems. Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
* Vim 8.0 releasev8.0.0000Bram Moolenaar2016-09-121-2/+2
|
* patch 7.4.1508v7.4.1508Bram Moolenaar2016-03-071-1/+5
| | | | | Problem: Can't build GvimExt with MingW. Solution: Adjust the makefile. (Ben Fritz)
* patch 7.4.1383v7.4.1383Bram Moolenaar2016-02-212-6/+23
| | | | | Problem: GvimExt only loads the old libintl.dll. Solution: Also try loading libint-8.dll. (Ken Takata, closes #608)
* patch 7.4.1240v7.4.1240Bram Moolenaar2016-02-021-1/+1
| | | | | Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
* patch 7.4.1100v7.4.1100Bram Moolenaar2016-01-152-78/+1
| | | | | Problem: Cygwin makefiles are unused. Solution: Remove them.
* patch 7.4.1095v7.4.1095Bram Moolenaar2016-01-151-0/+3
| | | | | Problem: Can't build GvimExt with SDK 7.1. Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
* patch 7.4.1083v7.4.1083Bram Moolenaar2016-01-101-8/+24
| | | | | Problem: Building GvimExt with VS2015 may fail. Solution: Adjust the makefile. (Mike Williams)
* patch 7.4.727v7.4.727Bram Moolenaar2015-05-061-1/+1
| | | | | Problem: Cannot build GvimExt with MingW. Solution: Add -lgdi32. (KF Leong)
* patch 7.4.726v7.4.726Bram Moolenaar2015-05-051-1/+3
| | | | | Problem: Cannot build GvimExt. Solution: Set APPVER to 5.0. (KF Leong)
* patch 7.4.724v7.4.724Bram Moolenaar2015-05-042-35/+93
| | | | | Problem: Vim icon does not show in Windows context menu. (issue 249) Solution: Load the icon in GvimExt.
* updated for version 7.4.030v7.4.030Bram Moolenaar2013-09-191-3/+3
| | | | | Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
* release version 7.4v7.4Bram Moolenaar2013-08-101-2/+2
|
* Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar2013-07-281-2/+2
|
* Vim 7.4a BETA release.v7.4aBram Moolenaar2013-07-061-2/+2
|
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-061-1/+1
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.727v7.3.727Bram Moolenaar2012-11-231-1/+5
| | | | | Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
* Add files aaded by patch 7.3.326.Bram Moolenaar2011-10-031-0/+77
|
* updated for version 7.3.326v7.3.326Bram Moolenaar2011-09-301-5/+4
| | | | | Problem: MingW 4.6 no longer supports the -mno-cygwin option. Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
* updated for version 7.3.276v7.3.276Bram Moolenaar2011-08-101-6/+14
| | | | | Problem: GvimExt sets $LANG in the wrong way. Solution: Save the environment and use it for gvim. (Yasuhiro Matsumoto)
* updated for version 7.3.258v7.3.258Bram Moolenaar2011-07-201-2/+17
| | | | | | Problem: MS-Windows: The edit with existing vim context menu entries can be unwanted. Solution: Let a registry entry disable them. (Jerome Vuarand)
* updated for version 7.3.222v7.3.222Bram Moolenaar2011-06-192-2/+2
| | | | | Problem: Warning for building GvimExt. Solution: Comment-out the DESCRIPTION line. (Mike Williams)
* updated for version 7.3.093v7.3.093Bram Moolenaar2010-12-301-3/+16
| | | | | Problem: New DLL dependencies in MingW with gcc 4.5.0. Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen)
* updated for version 7.3.018v7.3.018Bram Moolenaar2010-09-291-1/+1
| | | | | Problem: Missing argument to windres in MingW makefiles. Solution: Add the argument that was wrapped in the patch. (Jon Maken)
* updated for version 7.3.012v7.3.012Bram Moolenaar2010-09-291-1/+1
| | | | | Problem: Problems building with MingW. Solution: Adjust the MingW makefiles. (Jon)
* Last changes for the 7.3 release!v7.3Bram Moolenaar2010-08-151-2/+2
|
* Version 7.3f -> 7.3gBram Moolenaar2010-08-141-2/+2
|
* Version 7.3e -> 7.3f.Bram Moolenaar2010-08-091-2/+2
|
* 7.3d -> 7.3e.Bram Moolenaar2010-08-041-2/+2
|
* Version 7.3c -> 7.3dBram Moolenaar2010-08-011-2/+2
|
* 7.3b -> 7.3cBram Moolenaar2010-07-251-2/+2
|