Update version number to 2.1.0

This commit is contained in:
Adrien Allard 2025-02-14 19:50:34 +01:00
parent bbb5152820
commit 892c8cbcef
5 changed files with 7 additions and 7 deletions

View File

@ -38,8 +38,8 @@ namespace FileConverter
private static readonly Version Version = new Version() private static readonly Version Version = new Version()
{ {
Major = 2, Major = 2,
Minor = 0, Minor = 1,
Patch = 2, Patch = 0,
}; };
private bool needToRunConversionThread; private bool needToRunConversionThread;

View File

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")] [assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")] [assembly: AssemblyFileVersion("2.1.0.0")]

View File

@ -1,6 +1,6 @@
# Change Log # Change Log
## Next Version ## Version 2.1
- New: Option to use NVidia hardware acceleration for mp4 video (thanks to tacheometry). - New: Option to use NVidia hardware acceleration for mp4 video (thanks to tacheometry).
- New: Add Gif to Image conversion support (issue #433, #115) (thanks to RTnhN) - New: Add Gif to Image conversion support (issue #433, #115) (thanks to RTnhN)

View File

@ -1,6 +1,6 @@
<Project Sdk="WixToolset.Sdk/5.0.2"> <Project Sdk="WixToolset.Sdk/5.0.2">
<PropertyGroup> <PropertyGroup>
<ProductVersion>2.0.2</ProductVersion> <ProductVersion>2.1.0</ProductVersion>
<OutputName>FileConverter-setup</OutputName> <!-- https://github.com/firegiant/HeatWaveSupport/issues/73 --> <OutputName>FileConverter-setup</OutputName> <!-- https://github.com/firegiant/HeatWaveSupport/issues/73 -->
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath> <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>

View File

@ -1,6 +1,6 @@
<!-- Upgrade documentation: http://wixtoolset.org/documentation/manual/v3/howtos/updates/major_upgrade.html --> <!-- Upgrade documentation: http://wixtoolset.org/documentation/manual/v3/howtos/updates/major_upgrade.html -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
<Package Name="File Converter" Language="1033" Version="2.0.2" Manufacturer="Adrien Allard" UpgradeCode="e3ca717b-a897-418a-bbef-5c7e35c76e4b" InstallerVersion="500"> <Package Name="File Converter" Language="1033" Version="2.1.0" Manufacturer="Adrien Allard" UpgradeCode="e3ca717b-a897-418a-bbef-5c7e35c76e4b" InstallerVersion="500">
<Icon Id="icon.ico" SourceFile="..\Resources\Icons\ApplicationIcon.ico" /> <Icon Id="icon.ico" SourceFile="..\Resources\Icons\ApplicationIcon.ico" />
<Property Id="ARPPRODUCTICON" Value="icon.ico" /> <Property Id="ARPPRODUCTICON" Value="icon.ico" />
<SetProperty Id="ARPINSTALLLOCATION" Value="[ApplicationFolder]" After="CostFinalize" /> <SetProperty Id="ARPINSTALLLOCATION" Value="[ApplicationFolder]" After="CostFinalize" />