Skip to content

Commit

Permalink
win32: Adjust version format of properties dialog box
Browse files Browse the repository at this point in the history
Currently the product version in the properties dialog box is shown as
"8, 1, 0". I think it is better to be shown as "8.1.0".
  • Loading branch information
k-takata committed Dec 10, 2019
1 parent 2ed639a commit cb5d4d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vim.rc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ BEGIN
BEGIN
VALUE "CompanyName", "Vim Developers\0"
VALUE "FileDescription", "Vi Improved - A Text Editor\0"
VALUE "FileVersion", VIM_VERSION_MAJOR_STR ", " VIM_VERSION_MINOR_STR ", " VIM_VERSION_PATCHLEVEL_STR "\0"
VALUE "FileVersion", VIM_VERSION_MAJOR_STR "." VIM_VERSION_MINOR_STR "." VIM_VERSION_PATCHLEVEL_STR "\0"
VALUE "InternalName", "VIM\0"
VALUE "LegalCopyright", "Copyright \251 1996\0"
VALUE "LegalTrademarks", "Vim\0"
Expand All @@ -106,7 +106,7 @@ BEGIN
VALUE "OriginalFilename", "vim.exe\0"
#endif
VALUE "ProductName", "Vim\0"
VALUE "ProductVersion", VIM_VERSION_MAJOR_STR ", " VIM_VERSION_MINOR_STR ", " VIM_VERSION_PATCHLEVEL_STR "\0"
VALUE "ProductVersion", VIM_VERSION_MAJOR_STR "." VIM_VERSION_MINOR_STR "." VIM_VERSION_PATCHLEVEL_STR "\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit cb5d4d0

Please sign in to comment.