From fbf70df02022a77e228d54aa3934101dcd3e0cc5 Mon Sep 17 00:00:00 2001 From: Pavel Vymetálek Date: Thu, 13 Jun 2019 09:45:34 +0200 Subject: povýšeno číslo verze v .rc pro windows build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sercp.c | 2 +- sercp.rc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sercp.c b/sercp.c index 5e795c9..abfa3b1 100644 --- a/sercp.c +++ b/sercp.c @@ -548,7 +548,7 @@ void sercpSend(void) { printf ("Zero length of file. End\n"); return; } - printf ("File %s, length: %ld\n", sercp_file, st.st_size); + printf ("File %s, length: %lld\n", sercp_file, st.st_size); timdat = localtime(&st.st_mtime); uint16_t FatDate = ((timdat->tm_year - 80) << 9) | ((timdat->tm_mon + 1) << 5) | timdat->tm_mday; diff --git a/sercp.rc b/sercp.rc index b7b63f8..fafa7b7 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,2,3,0 -PRODUCTVERSION 0,2,3,0 +FILEVERSION 0,3,0,0 +PRODUCTVERSION 0,3,0,0 FILETYPE VFT_APP { BLOCK "StringFileInfo" @@ -10,14 +10,14 @@ FILETYPE VFT_APP BLOCK "040904E4" { VALUE "CompanyName", "vym.cz" - VALUE "FileVersion", "0.2.3" + VALUE "FileVersion", "0.3.0" 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.2.3" + VALUE "ProductVersion", "0.3.0" VALUE "Build environment", "Linux: Mingw64, x86_64" } } -- cgit