summaryrefslogtreecommitdiffstats
path: root/src/GvimExt
AgeCommit message (Collapse)Author
2024-01-02patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0Christian Brabandt
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-05-25patch 9.0.1577: MS-Windows: context menu translations may be wrongv9.0.1577K.Takata
Problem: MS-Windows: context menu translations may be wrong. Solution: Set the encoding before using gettext(). (Ken Takata, closes #12441, closes #12431)
2022-11-02patch 9.0.0828: various typosv9.0.0828dundargoc
Problem: Various typos. Solution: Correct typos. (closes #11432)
2022-09-09patch 9.0.0421: MS-Windows makefiles are inconsistently namedv9.0.0421K.Takata
Problem: MS-Windows makefiles are inconsistently named. Solution: Use consistent names. (Ken Takata, closes #11088)
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-14patch 8.2.5087: cannot build with clang on MS-Windowsv8.2.5087Yegappan Lakshmanan
Problem: Cannot build with clang on MS-Windows. Solution: Add support for building with clang. (Yegappan Lakshmanan, closes #10557)
2022-01-24patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not usefulv8.2.4199K.Takata
Problem: MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
2021-12-22patch 8.2.3870: MS-Windows: wrong dir when using right-click context menuv8.2.3870Nir Lichtman
Problem: MS-Windows: wrong working directory when opening two files with right-click context menu. (Gabriel Dupras) Solution: Use the working directory and pass it on to the process creation. (Nir Lichtman, closes #9382, closes #8874)
2021-07-29patch 8.2.3243: MS-Windows: "edit with multiple Vim" choice is less usefulv8.2.3243msoyka-of-wharton
Problem: MS-Windows: the "edit with multiple Vim" choice is not that useful. Solution: Change it to "Edit with multiple tabs". (Michael Soyka, closes #8645)
2021-01-25patch 8.2.2408: MinGW: "--preprocessor" flag no longer supportedv8.2.2408Bram Moolenaar
Problem: MinGW: "--preprocessor" flag no longer supported. Solution: Remove the flag, use the defaults. (Christopher Wellons, closes #7741)
2020-11-18patch 8.2.2009: MS-Windows: setting $LANG in gvimext only causes problemsv8.2.2009Bram Moolenaar
Problem: MS-Windows: setting $LANG in gvimext only causes problems. Solution: Do not set $LANG. (Ken Takata, closes #7325)
2020-02-12patch 8.2.0249: MS-Windows: various warningsv8.2.0249Bram Moolenaar
Problem: MS-Windows: various warnings. Solution: Set the charset to utf-8. Add _WIN32_WINNT and _USING_V110_SDK71_. (Ken Takata, closes #5625)
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-09-27patch 8.1.2086: missing a few changes for the renamed filesv8.1.2086Bram Moolenaar
Problem: Missing a few changes for the renamed files. Solution: Rename in a few more places. (Ken Takata)
2019-09-13patch 8.1.2025: MS-Windows: Including shlguid.h causes problems for msys2v8.1.2025Bram Moolenaar
Problem: MS-Windows: Including shlguid.h causes problems for msys2. Solution: Do not include shlguid.h. (closes #4913)
2019-05-09patch 8.1.1306: Borland support is outdated and doesn't workv8.1.1306Bram Moolenaar
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)
2019-04-11patch 8.1.1152: compiler warning with VS2019v8.1.1152Bram Moolenaar
Problem: Compiler warning with VS2019. Solution: Specify different offset for "AMD64". (closes #4235)
2019-04-04patch 8.1.1119: no support for Windows on ARM64.v8.1.1119Bram Moolenaar
Problem: No support for Windows on ARM64. Solution: Add ARM64 support (Leendert van Doorn)
2019-02-17patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar
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)
2018-12-16patch 8.1.0601: a few compiler warningsv8.1.0601Bram Moolenaar
Problem: A few compiler warnings. Solution: Add type casts. (Mike Williams)
2018-12-14patch 8.1.0589: compilation error in gvimext.cppv8.1.0589Bram Moolenaar
Problem: Compilation error in gvimext.cpp. Solution: Return a value. Also fix using uninitialized variable.
2018-12-14patch 8.1.0587: GvimExt: realloc() failing is not handled properlyv8.1.0587Bram Moolenaar
Problem: GvimExt: realloc() failing is not handled properly. Solution: Check for NULL return. (Jan-Jaap Korpershoek, closes #3689)
2018-10-25patch 8.1.0492: "Edit with existing Vim" list can get longv8.1.0492Bram Moolenaar
Problem: "Edit with existing Vim" list can get long. Solution: Move the list to a submenu. (Ken Takata, closes #3561)
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2017-10-14patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installerv8.0.1191Bram Moolenaar
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)
2017-10-07patch 8.0.1178: using old compiler on MS-Windowsv8.0.1178Bram Moolenaar
Problem: Using old compiler on MS-Windows. Solution: Switch default build on MS-Windows to use MSVC 2015. (Ken Takata)
2017-08-06patch 8.0.0881: win32.mak no longer included in Windows SDKv8.0.0881Bram Moolenaar
Problem: win32.mak no longer included in Windows SDK. Solution: Do not include win32.mak. (Ken Takata)
2017-06-13patch 8.0.0638: cannot build with new MSVC versionv8.0.0638Bram Moolenaar
Problem: Cannot build with new MSVC version VS2017. Solution: Change the compiler arguments. (Leonardo Manera, closes #1731, closes #1747)
2016-10-12patch 8.0.0029v8.0.0029Bram Moolenaar
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)
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2016-03-07patch 7.4.1508v7.4.1508Bram Moolenaar
Problem: Can't build GvimExt with MingW. Solution: Adjust the makefile. (Ben Fritz)
2016-02-21patch 7.4.1383v7.4.1383Bram Moolenaar
Problem: GvimExt only loads the old libintl.dll. Solution: Also try loading libint-8.dll. (Ken Takata, closes #608)
2016-02-02patch 7.4.1240v7.4.1240Bram Moolenaar
Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
2016-01-15patch 7.4.1100v7.4.1100Bram Moolenaar
Problem: Cygwin makefiles are unused. Solution: Remove them.
2016-01-15patch 7.4.1095v7.4.1095Bram Moolenaar
Problem: Can't build GvimExt with SDK 7.1. Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
2016-01-10patch 7.4.1083v7.4.1083Bram Moolenaar
Problem: Building GvimExt with VS2015 may fail. Solution: Adjust the makefile. (Mike Williams)
2015-05-06patch 7.4.727v7.4.727Bram Moolenaar
Problem: Cannot build GvimExt with MingW. Solution: Add -lgdi32. (KF Leong)
2015-05-05patch 7.4.726v7.4.726Bram Moolenaar
Problem: Cannot build GvimExt. Solution: Set APPVER to 5.0. (KF Leong)
2015-05-04patch 7.4.724v7.4.724Bram Moolenaar
Problem: Vim icon does not show in Windows context menu. (issue 249) Solution: Load the icon in GvimExt.
2013-09-19updated for version 7.4.030v7.4.030Bram Moolenaar
Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
2013-08-10release version 7.4v7.4Bram Moolenaar
2013-07-28Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar
2013-07-06Vim 7.4a BETA release.v7.4aBram Moolenaar
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2012-11-23updated for version 7.3.727v7.3.727Bram Moolenaar
Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
2011-10-03Add files aaded by patch 7.3.326.Bram Moolenaar
2011-09-30updated for version 7.3.326v7.3.326Bram Moolenaar
Problem: MingW 4.6 no longer supports the -mno-cygwin option. Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
2011-08-10updated for version 7.3.276v7.3.276Bram Moolenaar
Problem: GvimExt sets $LANG in the wrong way. Solution: Save the environment and use it for gvim. (Yasuhiro Matsumoto)
2011-07-20updated for version 7.3.258v7.3.258Bram Moolenaar
Problem: MS-Windows: The edit with existing vim context menu entries can be unwanted. Solution: Let a registry entry disable them. (Jerome Vuarand)
2011-06-19updated for version 7.3.222v7.3.222Bram Moolenaar
Problem: Warning for building GvimExt. Solution: Comment-out the DESCRIPTION line. (Mike Williams)