-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dane Springmeyer
committed
Apr 3, 2014
1 parent
a9e55a7
commit c3ba6bf
Showing
3 changed files
with
50 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#include "winresrc.h" | ||
|
||
// Application icon | ||
1 ICON tilemill.ico | ||
|
||
|
||
// Version resource | ||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 0,10,2,0 | ||
PRODUCTVERSION 0,10,2,0 | ||
FILEFLAGSMASK 0x3fL | ||
#ifdef _DEBUG | ||
FILEFLAGS VS_FF_DEBUG | ||
#else | ||
FILEFLAGS 0x0L | ||
#endif | ||
|
||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VFT_APP | ||
FILESUBTYPE 0x0L | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "CompanyName", "Mapbox, Inc" | ||
VALUE "ProductName", "TileMill" | ||
VALUE "FileDescription", "Create beautiful interactive maps" | ||
VALUE "FileVersion", 0.10.2 | ||
VALUE "ProductVersion", 0.10.2 | ||
VALUE "OriginalFilename", "TileMill.exe" | ||
VALUE "InternalName", "tilemill" | ||
VALUE "LegalCopyright", "Copyright MapBox, Inc. and other TileMill contributors. BSD license." | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1200 | ||
END | ||
END |