From 45c8724e89c7c0d84fa42d2877f5b71c0f70749e Mon Sep 17 00:00:00 2001 From: Pavel Vymetálek Date: Fri, 3 Apr 2020 10:32:08 +0200 Subject: Fixed complicated interrupting by ctrl-c - ctrl-c stops the program immediatelly - serial buffers are cleaned at startup and at finishing program - pointers renamed to p_... - comments are in english --- sercp.rc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sercp.rc') diff --git a/sercp.rc b/sercp.rc index fafa7b7..ea02ace 100644 --- a/sercp.rc +++ b/sercp.rc @@ -1,8 +1,8 @@ // RC file, codepage utf-8 !!!!! #include // include for version info constants 1 VERSIONINFO -FILEVERSION 0,3,0,0 -PRODUCTVERSION 0,3,0,0 +FILEVERSION 0,3,1,0 +PRODUCTVERSION 0,3,1,0 FILETYPE VFT_APP { BLOCK "StringFileInfo" @@ -10,14 +10,14 @@ FILETYPE VFT_APP BLOCK "040904E4" { VALUE "CompanyName", "vym.cz" - VALUE "FileVersion", "0.3.0" + VALUE "FileVersion", "0.3.1" VALUE "FileDescription", "sercp - serial copy for ZX Spectrum" VALUE "InternalName", "sercp" VALUE "LegalCopyright", "GNU GPL v3 or above" VALUE "LegalTrademarks", "Pavel Vymetálek" VALUE "OriginalFilename", "sercp" VALUE "ProductName", "sercp" - VALUE "ProductVersion", "0.3.0" + VALUE "ProductVersion", "0.3.1" VALUE "Build environment", "Linux: Mingw64, x86_64" } } -- cgit