bump version number
This commit is contained in:
parent
25cf2bf80b
commit
45b100e021
|
@ -76,7 +76,7 @@ int main2(int argc, const char** argv)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
strcpy(strProductName, "oscar64");
|
strcpy(strProductName, "oscar64");
|
||||||
strcpy(strProductVersion, "1.31.252");
|
strcpy(strProductVersion, "1.31.253");
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
uint32_t length = sizeof(basePath);
|
uint32_t length = sizeof(basePath);
|
||||||
|
@ -300,11 +300,13 @@ int main2(int argc, const char** argv)
|
||||||
else if (arg[1] == 'v')
|
else if (arg[1] == 'v')
|
||||||
{
|
{
|
||||||
compiler->mCompilerOptions |= COPT_VERBOSE;
|
compiler->mCompilerOptions |= COPT_VERBOSE;
|
||||||
if (arg[2] == '2')
|
if (arg[2] == '1')
|
||||||
|
;
|
||||||
|
else if (arg[2] == '2')
|
||||||
compiler->mCompilerOptions |= COPT_VERBOSE2;
|
compiler->mCompilerOptions |= COPT_VERBOSE2;
|
||||||
else if (arg[2] == '3')
|
else if (arg[2] == '3')
|
||||||
compiler->mCompilerOptions |= COPT_VERBOSE2 | COPT_VERBOSE3;
|
compiler->mCompilerOptions |= COPT_VERBOSE2 | COPT_VERBOSE3;
|
||||||
else if (!arg[2])
|
else if (arg[2])
|
||||||
compiler->mErrors->Error(loc, EERR_COMMAND_LINE, "Invalid command line argument", arg);
|
compiler->mErrors->Error(loc, EERR_COMMAND_LINE, "Invalid command line argument", arg);
|
||||||
}
|
}
|
||||||
else if (arg[1] == 'x' && arg[2] == 'z' && !arg[3])
|
else if (arg[1] == 'x' && arg[2] == 'z' && !arg[3])
|
||||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,31,252,0
|
FILEVERSION 1,31,253,0
|
||||||
PRODUCTVERSION 1,31,252,0
|
PRODUCTVERSION 1,31,253,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -43,12 +43,12 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "oscar64"
|
VALUE "CompanyName", "oscar64"
|
||||||
VALUE "FileDescription", "oscar64 compiler"
|
VALUE "FileDescription", "oscar64 compiler"
|
||||||
VALUE "FileVersion", "1.31.252.0"
|
VALUE "FileVersion", "1.31.253.0"
|
||||||
VALUE "InternalName", "oscar64.exe"
|
VALUE "InternalName", "oscar64.exe"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2021"
|
VALUE "LegalCopyright", "Copyright (C) 2021"
|
||||||
VALUE "OriginalFilename", "oscar64.exe"
|
VALUE "OriginalFilename", "oscar64.exe"
|
||||||
VALUE "ProductName", "oscar64"
|
VALUE "ProductName", "oscar64"
|
||||||
VALUE "ProductVersion", "1.31.252.0"
|
VALUE "ProductVersion", "1.31.253.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -6284,15 +6284,15 @@
|
||||||
{
|
{
|
||||||
"Name" = "8:Microsoft Visual Studio"
|
"Name" = "8:Microsoft Visual Studio"
|
||||||
"ProductName" = "8:oscar64"
|
"ProductName" = "8:oscar64"
|
||||||
"ProductCode" = "8:{FF988B8B-91E4-4D25-80EB-324160BC3146}"
|
"ProductCode" = "8:{7C73048C-3D3A-4D6F-B739-CA1EAC849863}"
|
||||||
"PackageCode" = "8:{F8604441-6C5B-4EBA-91A3-157C75F673A8}"
|
"PackageCode" = "8:{C8265ABA-7C3E-4A50-9999-371377496E39}"
|
||||||
"UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}"
|
"UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}"
|
||||||
"AspNetVersion" = "8:2.0.50727.0"
|
"AspNetVersion" = "8:2.0.50727.0"
|
||||||
"RestartWWWService" = "11:FALSE"
|
"RestartWWWService" = "11:FALSE"
|
||||||
"RemovePreviousVersions" = "11:TRUE"
|
"RemovePreviousVersions" = "11:TRUE"
|
||||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||||
"InstallAllUsers" = "11:FALSE"
|
"InstallAllUsers" = "11:FALSE"
|
||||||
"ProductVersion" = "8:1.31.252"
|
"ProductVersion" = "8:1.31.253"
|
||||||
"Manufacturer" = "8:oscar64"
|
"Manufacturer" = "8:oscar64"
|
||||||
"ARPHELPTELEPHONE" = "8:"
|
"ARPHELPTELEPHONE" = "8:"
|
||||||
"ARPHELPLINK" = "8:"
|
"ARPHELPLINK" = "8:"
|
||||||
|
|
Loading…
Reference in New Issue