Skip to content

Commit

Permalink
Updated version number & date.
Browse files Browse the repository at this point in the history
Build with latest VC++ & C++20.
No longer signed.
  • Loading branch information
David Lowndes authored and David Lowndes committed Dec 22, 2023
1 parent c8dd3e6 commit 917da16
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
14 changes: 7 additions & 7 deletions UTF8Conv.rc
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ CAPTION "About UTF8/7 Converter"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
ICON IDR_MAINFRAME,IDC_STATIC,7,10,20,20
LTEXT "UTF8/7 Converter Version 2.1",IDC_STATIC,40,10,119,8,SS_NOPREFIX
LTEXT "UTF8/7 Converter Version 2.1.1",IDC_STATIC,40,10,119,8,SS_NOPREFIX
DEFPUSHBUTTON "OK",IDOK,178,7,50,14,WS_GROUP
CONTROL "Copyright � <a href=""http://www.jddesign.co.uk/"">JD Design</a> 2009-2020",IDC_SYSLINK1,
CONTROL "Copyright � <a href=""http://www.jddesign.co.uk/"">JD Design</a> 2009-2023",IDC_SYSLINK1,
"SysLink",WS_TABSTOP,39,21,134,8
END

Expand Down Expand Up @@ -64,8 +64,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,1,0,0
PRODUCTVERSION 2,1,0,0
FILEVERSION 2,1,1,0
PRODUCTVERSION 2,1,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -82,12 +82,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "JD Design"
VALUE "FileDescription", "UTF8/7 Conversion Application"
VALUE "FileVersion", "2.1.0.0"
VALUE "FileVersion", "2.1.1.0"
VALUE "InternalName", "UTF8Conv"
VALUE "LegalCopyright", "Copyright (C) JD Design 2009-2020"
VALUE "LegalCopyright", "Copyright (C) JD Design 2009-2023"
VALUE "OriginalFilename", "UTF8Conv.EXE"
VALUE "ProductName", "UTF8/7 Converter Application"
VALUE "ProductVersion", "2.1.0.0"
VALUE "ProductVersion", "2.1.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
18 changes: 7 additions & 11 deletions UTF8Conv.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
Expand Down Expand Up @@ -76,7 +76,7 @@
</ProgramDataBaseFileName>
<SmallerTypeCheck>false</SmallerTypeCheck>
<WholeProgramOptimization>true</WholeProgramOptimization>
<LanguageStandard>stdcpp17</LanguageStandard>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Midl>
<SuppressStartupBanner>true</SuppressStartupBanner>
Expand All @@ -99,20 +99,16 @@
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
<PostBuildEvent>
<Command>"$(WindowsSDK80Path)bin\x86\signtool.exe" sign /f "..\David's Code Signing Certificate.pfx" /p Swizz1eStix90125 /d UTF8Conv $(TargetPath)</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>Sign</Message>
</PostBuildEvent>
<PostBuildEvent />
<PostBuildEvent />
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<Optimization>Disabled</Optimization>
<SuppressStartupBanner>true</SuppressStartupBanner>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_WIN32_WINNT=0x0501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AssemblerListingLocation>
</AssemblerListingLocation>
Expand All @@ -127,7 +123,7 @@
</ProgramDataBaseFileName>
<StringPooling>true</StringPooling>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<LanguageStandard>stdcpp17</LanguageStandard>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Midl>
<SuppressStartupBanner>true</SuppressStartupBanner>
Expand Down

0 comments on commit 917da16

Please sign in to comment.