Bump version number
This commit is contained in:
parent
3ea44d1979
commit
142bc988b1
|
@ -75,7 +75,7 @@ int main2(int argc, const char** argv)
|
|||
|
||||
#else
|
||||
strcpy(strProductName, "oscar64");
|
||||
strcpy(strProductVersion, "1.27.243");
|
||||
strcpy(strProductVersion, "1.27.244");
|
||||
|
||||
#ifdef __APPLE__
|
||||
uint32_t length = sizeof(basePath);
|
||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,27,243,0
|
||||
PRODUCTVERSION 1,27,243,0
|
||||
FILEVERSION 1,27,244,0
|
||||
PRODUCTVERSION 1,27,244,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -43,12 +43,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "oscar64"
|
||||
VALUE "FileDescription", "oscar64 compiler"
|
||||
VALUE "FileVersion", "1.27.243.0"
|
||||
VALUE "FileVersion", "1.27.244.0"
|
||||
VALUE "InternalName", "oscar64.exe"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2021"
|
||||
VALUE "OriginalFilename", "oscar64.exe"
|
||||
VALUE "ProductName", "oscar64"
|
||||
VALUE "ProductVersion", "1.27.243.0"
|
||||
VALUE "ProductVersion", "1.27.244.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -6154,15 +6154,15 @@
|
|||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:oscar64"
|
||||
"ProductCode" = "8:{9D7B2343-F889-41A9-9F25-C82EEE56A290}"
|
||||
"PackageCode" = "8:{C0136A24-0CF7-454B-95E6-42E9CDCBF0FF}"
|
||||
"ProductCode" = "8:{FAF8F0E0-EEDC-4F7E-820E-99618B6306AB}"
|
||||
"PackageCode" = "8:{D14E0851-E377-4523-982A-489D13FF8FEC}"
|
||||
"UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}"
|
||||
"AspNetVersion" = "8:2.0.50727.0"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:1.27.243"
|
||||
"ProductVersion" = "8:1.27.244"
|
||||
"Manufacturer" = "8:oscar64"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:"
|
||||
|
|
|
@ -86,7 +86,7 @@ int main(void)
|
|||
n = sscanf(str, "%d %d %d", &x, &y, &r);
|
||||
|
||||
cwin_putat_string(&twin, 0, 1, str, 0x0e);
|
||||
sprintf(str, p"N: %D X: %3D Y: %3D R: %2D", n, x, y, r);
|
||||
sprintf(str, p"N: %d X: %3d Y: %3d R: %2d", n, x, y, r);
|
||||
cwin_putat_string(&twin, 0, 2, str, 0x07);
|
||||
|
||||
if (n == 3)
|
||||
|
|
Loading…
Reference in New Issue