mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Rename application name references on dumping.
This commit is contained in:
@@ -581,7 +581,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
// TODO: Non-removable
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -1044,7 +1044,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
// TODO: Disc ID
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -622,7 +622,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion(),
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion(),
|
||||
MediaPartNumber = mediaPartNumber
|
||||
};
|
||||
|
||||
@@ -1095,7 +1095,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -108,7 +108,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
if(oldTry.Software == null)
|
||||
throw new InvalidOperationException("Found corrupt resume file, cannot continue...");
|
||||
|
||||
if(oldTry.Software.Name != "DiscImageChef" ||
|
||||
if(oldTry.Software.Name != "Aaru" ||
|
||||
oldTry.Software.OperatingSystem != platform.ToString() ||
|
||||
oldTry.Software.Version != Version.GetVersion())
|
||||
continue;
|
||||
|
||||
@@ -984,7 +984,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
// TODO: Non-removable drive information
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -1226,7 +1226,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
// TODO: Media Serial Number
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -527,7 +527,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
// TODO: Drive info
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
@@ -1150,7 +1150,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
|
||||
var metadata = new CommonTypes.Structs.ImageInfo
|
||||
{
|
||||
Application = "DiscImageChef", ApplicationVersion = Version.GetVersion()
|
||||
Application = "Aaru", ApplicationVersion = Version.GetVersion()
|
||||
};
|
||||
|
||||
if(!_outputPlugin.SetMetadata(metadata))
|
||||
|
||||
Reference in New Issue
Block a user