summaryrefslogtreecommitdiff
path: root/src/dosinst.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.3164: MS-Windows: reported version lacks patchlevelv8.2.3164Bram Moolenaar2021-07-151-1/+4
| | | | | | Problem: MS-Windows: reported version lacks patchlevel, causing some update tools to update too often. (Klaus Frank) Solution: Add the patchlevel to the version. (Christian Brabandt)
* patch 8.2.2922: computing array length is done in various waysv8.2.2922K.Takata2021-06-021-3/+2
| | | | | Problem: Computing array length is done in various ways. Solution: Use ARRAY_LENGTH everywhere. (Ken Takata, closes #8305)
* patch 8.2.0437: MS-Windows installer contains old stuffv8.2.0437Bram Moolenaar2020-03-231-70/+29
| | | | | Problem: MS-Windows installer contains old stuff. Solution: Rely on Windows NT. (Ken Takata, closes #5832)
* patch 8.2.0273: MS-Windows uninstall may delete wrong batch filev8.2.0273Bram Moolenaar2020-02-171-0/+1
| | | | | | Problem: MS-Windows uninstall may delete wrong batch file. Solution: Add specific marker in the generated batch file. (Ken Takata, closes #5654)
* patch 8.1.2378: using old C style commentsv8.1.2378Bram Moolenaar2019-12-011-200/+198
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082Bram Moolenaar2019-09-271-3/+3
| | | | | Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
* patch 8.1.1393: unnecessary type castsv8.1.1393Bram Moolenaar2019-05-251-4/+4
| | | | | Problem: Unnecessary type casts. Solution: Remove type casts from alloc() and lalloc() calls. (Mike Williams)
* patch 8.1.1306: Borland support is outdated and doesn't workv8.1.1306Bram Moolenaar2019-05-091-1/+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.1119: no support for Windows on ARM64.v8.1.1119Bram Moolenaar2019-04-041-1/+3
| | | | | Problem: No support for Windows on ARM64. Solution: Add ARM64 support (Leendert van Doorn)
* patch 8.1.1086: too many curly bracesv8.1.1086Bram Moolenaar2019-03-301-3/+1
| | | | | | Problem: Too many curly braces. Solution: Remove curly braces where they are not needed. (Hirohito Higashi, closes #3982)
* patch 8.1.0976: dosinstall still has buffer overflow problemsv8.1.0976Bram Moolenaar2019-02-221-19/+23
| | | | | Problem: Dosinstall still has buffer overflow problems. Solution: Adjust buffer sizes. (Yasuhiro Matsumoto, closes #4002)
* patch 8.1.0952: compilation warnings when building the MS-Windows installerv8.1.0952Bram Moolenaar2019-02-181-6/+6
| | | | | Problem: Compilation warnings when building the MS-Windows installer. Solution: Fix buffer sizes. (Yasuhiro Matsumoto, closes #3999)
* patch 8.1.0886: compiler warning for NULL pointer and condition always truev8.1.0886Bram Moolenaar2019-02-101-4/+5
| | | | | | | Problem: Compiler warning for adding to NULL pointer and a condition that is always true. Solution: Check for NULL pointer before adding. Remove useless "if". (Friedirch, closes #3913)
* patch 8.1.0727: compiler warning for sprintf() argumentv8.1.0727Bram Moolenaar2019-01-111-1/+1
| | | | | Problem: Compiler warning for sprintf() argument. Solution: Add type cast.
* patch 8.1.0616: NSIS installer is outdatedv8.1.0616Bram Moolenaar2018-12-211-37/+105
| | | | | | Problem: NSIS installer is outdated. Solution: Use modern syntax, MUI2 and make it work better. Add translations. (Ken Takata, closes #3501)
* patch 8.1.0589: compilation error in gvimext.cppv8.1.0589Bram Moolenaar2018-12-141-1/+1
| | | | | Problem: Compilation error in gvimext.cpp. Solution: Return a value. Also fix using uninitialized variable.
* patch 8.1.0541: help message in dosinst.c is outdatedv8.1.0541Bram Moolenaar2018-11-211-5/+6
| | | | | Problem: Help message in dosinst.c is outdated. Solution: Update the comment. (Ken Takata, closes #3626)
* patch 8.1.0534: MS-Windows installer uses different $HOME than Vimv8.1.0534Bram Moolenaar2018-11-161-13/+107
| | | | | | Problem: MS-Windows installer uses different $HOME than Vim. Solution: Use the Vim logic also in the MS-Windows installer. (Ken Takata, closes #3564)
* patch 8.1.0472: dosinst command has a few flawsv8.1.0472Bram Moolenaar2018-10-131-6/+61
| | | | | | | | | 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)
* patch 8.1.0292: MS-Windows: the text "self-installing" confuses some usersv8.1.0292Bram Moolenaar2018-08-181-6/+1
| | | | | Problem: MS-Windows: the text "self-installing" confuses some users. Solution: Remove the text from the uninstall entry. (closes #3337)
* patch 8.1.0117: URL in install program still points to SourceForgev8.1.0117Bram Moolenaar2018-06-261-1/+1
| | | | | Problem: URL in install program still points to SourceForge. Solution: Change it to www.vim.org. (closes #3100)
* patch 8.0.1829: MS-Windows: script for vimdiff can't handle ! charsv8.0.1829Bram Moolenaar2018-05-131-1/+6
| | | | | Problem: MS-Windows: script for vimdiff can't handle ! chars. Solution: Escape the ! chars. (Hans Ginzel, closes #2896)
* patch 8.0.1688: some macros are used without a semicolonv8.0.1688Bram Moolenaar2018-04-101-1/+8
| | | | | | 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)
* patch 8.0.1550: various small problems in source filesv8.0.1550Bram Moolenaar2018-02-271-2/+2
| | | | | Problem: Various small problems in source files. Solution: Fix the problems.
* patch 8.0.1233: typo in dos installerv8.0.1233Bram Moolenaar2017-10-281-1/+1
| | | | | Problem: Typo in dos installer. Solution: Remove comma.
* patch 8.0.1232: MS-Windows users are confused about default mappingsv8.0.1232Bram Moolenaar2017-10-281-8/+36
| | | | | | | 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)
* patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installerv8.0.1191Bram Moolenaar2017-10-141-86/+71
| | | | | | 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 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.2116v7.4.2116Bram Moolenaar2016-07-291-2/+1
| | | | | Problem: The default vimrc for Windows is very conservative. Solution: Use the defaults.vim in the Windows installer.
* patch 7.4.1909v7.4.1909Bram Moolenaar2016-06-081-2/+2
| | | | | Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
* patch 7.4.1683v7.4.1683Bram Moolenaar2016-03-281-0/+4
| | | | | | Problem: Generated .bat files do not support --nofork. Solution: Add check for --nofork. Also add "setlocal". (Kevin CantĂș, closes #659)
* updated for version 7.4.103v7.4.103Bram Moolenaar2013-11-211-6/+12
| | | | | | 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)
* updated for version 7.4.077v7.4.077Bram Moolenaar2013-11-071-2/+4
| | | | | | Problem: DOS installer creates shortcut without a path, resulting in the current directory to be C:\Windows\system32. Solution: Use environment variables.
* 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.809v7.3.809Bram Moolenaar2013-02-131-1/+1
| | | | | Problem: The dosinst.c program has a buffer overflow. (Thomas Gwae) Solution: Ignore $VIMRUNTIME if it is too long.
* Remove unused code.Bram Moolenaar2010-08-081-36/+0
|
* Put quotes around the gvim.exe path for the "Open with" menu entry.Bram Moolenaar2010-08-021-1/+1
|
* Fix that uninstaller isn't found on 64-bit Windows.Bram Moolenaar2010-07-311-12/+4
|
* Fix: on MS-Windows the "open with..." menu starts Vim without a file.Bram Moolenaar2010-07-311-2/+6
|
* Fix: MS-Windows installer used wrong path for uninstaller key.Bram Moolenaar2010-07-181-3/+2
|
* Support completion for ":find". (Nazri Ramliy)Bram Moolenaar2010-07-141-73/+73
| | | | Cleanup white space.
* Make the dos installer work with more compilers.Bram Moolenaar2010-07-071-40/+25
|
* Adjust MS-Windows installer so that it also works for 64 bit systems. (GeorgeBram Moolenaar2010-07-071-73/+203
| | | | Reilly)
* Found a way to make the MS-Windows installer wait for the uninstaller toBram Moolenaar2010-05-251-20/+57
| | | | finish, no need for the user to press Enter.
* Improve the MS-Windows installer.Bram Moolenaar2010-05-241-11/+31
|
* First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar2010-05-151-3/+2
|
* updated for version 7.1-282v7.1.282Bram Moolenaar2008-03-161-1/+1
|
* updated for version 7.1bBram Moolenaar2007-05-101-1/+1
|
* updated for version 7.0b01Bram Moolenaar2006-03-251-1/+6
|
* updated for version 7.0bv7.0bBram Moolenaar2006-03-241-1/+0
|