Bump version number
This commit is contained in:
parent
d9106be820
commit
935a38607b
|
@ -68,6 +68,10 @@ Supported Features:
|
||||||
* default parameters for class members and functions
|
* default parameters for class members and functions
|
||||||
* templates
|
* templates
|
||||||
* vector, array and list template classes
|
* vector, array and list template classes
|
||||||
|
* lambda functions
|
||||||
|
* auto variables, parameters and return types
|
||||||
|
* for range loop
|
||||||
|
* constexpr compile time evaluation
|
||||||
|
|
||||||
## Installation and Usage
|
## Installation and Usage
|
||||||
|
|
||||||
|
|
|
@ -1799,7 +1799,7 @@ bool Declaration::IsSameParams(const Declaration* dec) const
|
||||||
if (ld->mValue != rd->mValue)
|
if (ld->mValue != rd->mValue)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else if (ld->mType == DT_TYPE_TEMPLATE || ld->mType == DT_CONST_TEMPLATE)
|
else if (!ld->mBase || !rd->mBase)
|
||||||
return false;
|
return false;
|
||||||
else if (!ld->mBase->IsSame(rd->mBase))
|
else if (!ld->mBase->IsSame(rd->mBase))
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -74,7 +74,7 @@ int main2(int argc, const char** argv)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
strcpy(strProductName, "oscar64");
|
strcpy(strProductName, "oscar64");
|
||||||
strcpy(strProductVersion, "1.24.217");
|
strcpy(strProductVersion, "1.25.218");
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
uint32_t length = sizeof(basePath);
|
uint32_t length = sizeof(basePath);
|
||||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,24,217,0
|
FILEVERSION 1,25,218,0
|
||||||
PRODUCTVERSION 1,24,217,0
|
PRODUCTVERSION 1,25,218,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.24.217.0"
|
VALUE "FileVersion", "1.25.218.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.24.217.0"
|
VALUE "ProductVersion", "1.25.218.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -5686,15 +5686,15 @@
|
||||||
{
|
{
|
||||||
"Name" = "8:Microsoft Visual Studio"
|
"Name" = "8:Microsoft Visual Studio"
|
||||||
"ProductName" = "8:oscar64"
|
"ProductName" = "8:oscar64"
|
||||||
"ProductCode" = "8:{DC3B50CD-E9C6-4F59-9E59-986778C41793}"
|
"ProductCode" = "8:{041674C8-9934-4E51-B424-DA00BD3E2C89}"
|
||||||
"PackageCode" = "8:{DB830FCB-0CA0-4992-9D69-E76D9CA18459}"
|
"PackageCode" = "8:{7F8F7803-BF9B-423B-AD7F-ABAFD9B5DC8F}"
|
||||||
"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.24.217"
|
"ProductVersion" = "8:1.25.218"
|
||||||
"Manufacturer" = "8:oscar64"
|
"Manufacturer" = "8:oscar64"
|
||||||
"ARPHELPTELEPHONE" = "8:"
|
"ARPHELPTELEPHONE" = "8:"
|
||||||
"ARPHELPLINK" = "8:"
|
"ARPHELPLINK" = "8:"
|
||||||
|
|
Loading…
Reference in New Issue