-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
2 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
""" | ||
|
||
APP_NAME = 'pyDash' | ||
APP_VER = '2.0.1.0' | ||
APP_VER = '2.0.1.1' | ||
APP_DESC = 'Python sim racing dashboard control' | ||
APP_AUTHOR = 'Dan Allongo ([email protected])' | ||
APP_URL = 'https://github.com/dallongo/pySRD9c' | ||
|
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 |
---|---|---|
|
@@ -7,8 +7,8 @@ VSVersionInfo( | |
ffi=FixedFileInfo( | ||
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) | ||
# Set not needed items to zero 0. | ||
filevers=(2, 0, 1, 0), | ||
prodvers=(2, 0, 1, 0), | ||
filevers=(2, 0, 1, 1), | ||
prodvers=(2, 0, 1, 1), | ||
# Contains a bitmask that specifies the valid bits 'flags' | ||
mask=0x3f, | ||
# Contains a bitmask that specifies the Boolean attributes of the file. | ||
|
@@ -32,10 +32,10 @@ VSVersionInfo( | |
u'040904b0', | ||
[StringStruct(u'CompanyName', u'Dan Allongo ([email protected])'), | ||
StringStruct(u'ProductName', u'pyDash'), | ||
StringStruct(u'ProductVersion', u'2, 0, 1, 0'), | ||
StringStruct(u'ProductVersion', u'2, 0, 1, 1'), | ||
StringStruct(u'InternalName', u'pyDash'), | ||
StringStruct(u'OriginalFilename', u'pyDash.exe'), | ||
StringStruct(u'FileVersion', u'2, 0, 1, 0'), | ||
StringStruct(u'FileVersion', u'2, 0, 1, 1'), | ||
StringStruct(u'FileDescription', u'Python sim racing dashboard'), | ||
StringStruct(u'LegalCopyright', u'GPL v2'), | ||
StringStruct(u'LegalTrademarks', u'https://github.com/dallongo/pySRD9c'),]) | ||
|