Skip to content

Commit 8c38c03

Browse files
committed
add partition selection on img flashing tool and add auto img type selection based on the file name
1 parent fbaa942 commit 8c38c03

File tree

6 files changed

+188
-114
lines changed

6 files changed

+188
-114
lines changed

ATA-GUI/ATA-GUI.csproj

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0-windows</TargetFramework>
4+
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
55
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
66
<RootNamespace>ATA_GUI</RootNamespace>
77
<UseWindowsForms>true</UseWindowsForms>
88
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
99
<ApplicationIcon>ATALogoGUI.ico</ApplicationIcon>
10-
<Copyright>© 2021-2024 Massimiliano Sartore</Copyright>
10+
<Copyright>© 2021-2025 Massimiliano Sartore</Copyright>
1111

1212
<!-- Versioning -->
13-
<Version>3.13.0.0</Version>
14-
<AssemblyVersion>3.13.0.0</AssemblyVersion>
15-
<FileVersion>3.13.0.0</FileVersion>
13+
<Version>3.14.0.0</Version>
14+
<AssemblyVersion>3.14.0.0</AssemblyVersion>
15+
<FileVersion>3.14.0.0</FileVersion>
1616

1717
<!-- Publish settings -->
1818
<PublishUrl>publish\</PublishUrl>
@@ -23,20 +23,21 @@
2323
<Title>ATA GUI</Title>
2424
<Authors>Massimiliano Sartore</Authors>
2525
<PackageIcon></PackageIcon>
26+
<RepositoryUrl>https://github.com/msartore/ATA-GUI</RepositoryUrl>
2627
</PropertyGroup>
2728

2829
<ItemGroup>
2930
<Content Include="ATALogoGUI.ico" />
3031
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
3132
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
3233
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
33-
<PackageReference Include="Microsoft.AspNetCore.SystemWebAdapters" Version="1.4.0" />
34+
<PackageReference Include="Microsoft.AspNetCore.SystemWebAdapters" Version="2.0.0" />
3435
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
35-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
36-
<PackageReference Include="System.Drawing.Common" Version="8.0.10" />
36+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.6" />
37+
<PackageReference Include="System.Drawing.Common" Version="9.0.6" />
3738
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
38-
<PackageReference Include="System.Management" Version="8.0.0" />
39-
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
39+
<PackageReference Include="System.Management" Version="9.0.6" />
40+
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.6" />
4041
</ItemGroup>
4142

4243
<ItemGroup>

ATA-GUI/Classes/ATA.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace ATA_GUI.Classes
1111
{
1212
internal class ATA
1313
{
14-
public static readonly string CURRENTVERSION = "v3.13.0";
14+
public static readonly string CURRENTVERSION = "v3.14.0";
1515
public static readonly string IPFileName = "IPList.txt";
1616

1717
public HashSet<string> IPList { get; } = new HashSet<string>();

0 commit comments

Comments
 (0)