summaryrefslogtreecommitdiffstats
path: root/src/dosinst.c
AgeCommit message (Collapse)Author
2019-01-11patch 8.1.0727: compiler warning for sprintf() argumentv8.1.0727Bram Moolenaar
Problem: Compiler warning for sprintf() argument. Solution: Add type cast.
2018-12-21patch 8.1.0616: NSIS installer is outdatedv8.1.0616Bram Moolenaar
Problem: NSIS installer is outdated. Solution: Use modern syntax, MUI2 and make it work better. Add translations. (Ken Takata, closes #3501)
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-11-21patch 8.1.0541: help message in dosinst.c is outdatedv8.1.0541Bram Moolenaar
Problem: Help message in dosinst.c is outdated. Solution: Update the comment. (Ken Takata, closes #3626)
2018-11-16patch 8.1.0534: MS-Windows installer uses different $HOME than Vimv8.1.0534Bram Moolenaar
Problem: MS-Windows installer uses different $HOME than Vim. Solution: Use the Vim logic also in the MS-Windows installer. (Ken Takata, closes #3564)
2018-10-13patch 8.1.0472: dosinst command has a few flawsv8.1.0472Bram Moolenaar
Problem: Dosinst command has a few flaws. Solution: Register DisplayIcon, DisplayVersion and Publisher for the uninstaller. (closes #3485) Don't set 'diffexpr' if internal diff is supported. Allow for using Vi compatible from the command line. Remove needless sleeps. Add comments in the generated _vimrc. (Ken Takata, closes #3525)
2018-08-18patch 8.1.0292: MS-Windows: the text "self-installing" confuses some usersv8.1.0292Bram Moolenaar
Problem: MS-Windows: the text "self-installing" confuses some users. Solution: Remove the text from the uninstall entry. (closes #3337)
2018-06-26patch 8.1.0117: URL in install program still points to SourceForgev8.1.0117Bram Moolenaar
Problem: URL in install program still points to SourceForge. Solution: Change it to www.vim.org. (closes #3100)
2018-05-13patch 8.0.1829: MS-Windows: script for vimdiff can't handle ! charsv8.0.1829Bram Moolenaar
Problem: MS-Windows: script for vimdiff can't handle ! chars. Solution: Escape the ! chars. (Hans Ginzel, closes #2896)
2018-04-10patch 8.0.1688: some macros are used without a semicolonv8.0.1688Bram Moolenaar
Problem: Some macros are used without a semicolon, causing auto-indent to be wrong. Solution: Use the do-while(0) trick. (Ozaki Kiichi, closes #2729)
2018-02-27patch 8.0.1550: various small problems in source filesv8.0.1550Bram Moolenaar
Problem: Various small problems in source files. Solution: Fix the problems.
2017-10-28patch 8.0.1233: typo in dos installerv8.0.1233Bram Moolenaar
Problem: Typo in dos installer. Solution: Remove comma.
2017-10-28patch 8.0.1232: MS-Windows users are confused about default mappingsv8.0.1232Bram Moolenaar
Problem: MS-Windows users are confused about default mappings. Solution: Don't map keys in the console where they don't work. Add a choice in the installer to use MS-Windows key bindings or not. (Christian Brabandt, Ken Takata, closes #2093)
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)
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-29patch 7.4.2116v7.4.2116Bram Moolenaar
Problem: The default vimrc for Windows is very conservative. Solution: Use the defaults.vim in the Windows installer.
2016-06-08patch 7.4.1909v7.4.1909Bram Moolenaar
Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
2016-03-28patch 7.4.1683v7.4.1683Bram Moolenaar
Problem: Generated .bat files do not support --nofork. Solution: Add check for --nofork. Also add "setlocal". (Kevin CantĂș, closes #659)
2013-11-21updated for version 7.4.103v7.4.103Bram Moolenaar
Problem: Dos installer uses an old way to escape spaces in the diff command. Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)
2013-11-07updated for version 7.4.077v7.4.077Bram Moolenaar
Problem: DOS installer creates shortcut without a path, resulting in the current directory to be C:\Windows\system32. Solution: Use environment variables.
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-02-13updated for version 7.3.809v7.3.809Bram Moolenaar
Problem: The dosinst.c program has a buffer overflow. (Thomas Gwae) Solution: Ignore $VIMRUNTIME if it is too long.
2010-08-08Remove unused code.Bram Moolenaar
2010-08-02Put quotes around the gvim.exe path for the "Open with" menu entry.Bram Moolenaar
2010-07-31Fix that uninstaller isn't found on 64-bit Windows.Bram Moolenaar
2010-07-31Fix: on MS-Windows the "open with..." menu starts Vim without a file.Bram Moolenaar
2010-07-18Fix: MS-Windows installer used wrong path for uninstaller key.Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-07-07Make the dos installer work with more compilers.Bram Moolenaar
2010-07-07Adjust MS-Windows installer so that it also works for 64 bit systems. (GeorgeBram Moolenaar
Reilly)
2010-05-25Found a way to make the MS-Windows installer wait for the uninstaller toBram Moolenaar
finish, no need for the user to press Enter.
2010-05-24Improve the MS-Windows installer.Bram Moolenaar
2010-05-15First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar
2008-03-16updated for version 7.1-282v7.1.282Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2006-03-25updated for version 7.0b01Bram Moolenaar
2006-03-24updated for version 7.0bv7.0bBram Moolenaar
2006-03-18updated for version 7.0228Bram Moolenaar
2006-01-22updated for version 7.0185v7.0185Bram Moolenaar
2005-07-18updated for version 7.0109v7.0109Bram Moolenaar
2004-06-13updated for version 7.0001v7.0001Bram Moolenaar