Update ApplicationVersion to use GetInformationalVersion across multiple files

This commit is contained in:
2025-09-28 02:44:52 +01:00
parent 61b168d4bd
commit ab92091f72
17 changed files with 35 additions and 29 deletions

View File

@@ -1050,9 +1050,8 @@ partial class Dump
List<ulong> tmpList = [];
foreach(ulong ur in _resume.BadBlocks)
{
for(ulong i = ur; i < ur + blocksToRead; i++) tmpList.Add(i);
}
for(ulong i = ur; i < ur + blocksToRead; i++)
tmpList.Add(i);
tmpList.Sort();
@@ -1310,7 +1309,7 @@ partial class Dump
var metadata = new CommonTypes.Structs.ImageInfo
{
Application = "Aaru",
ApplicationVersion = Version.GetVersion()
ApplicationVersion = Version.GetInformationalVersion()
};
if(!outputFormat.SetImageInfo(metadata))