Add "Author" field to plugins.

This commit is contained in:
2018-08-29 22:15:43 +01:00
parent bb359d88d3
commit abfc476e01
155 changed files with 937 additions and 980 deletions

View File

@@ -44,9 +44,9 @@ namespace DiscImageChef.DiscImages
{
public ImageInfo Info => imageInfo;
public string Name => "d2f disk image";
public Guid Id => new Guid("DDE01493-BCA2-41C2-A269-7E56D3716D2F");
public string Name => "d2f disk image";
public Guid Id => new Guid("DDE01493-BCA2-41C2-A269-7E56D3716D2F");
public string Author => "Michael Drüing";
public string Format => "d2f disk image";
public List<Partition> Partitions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
@@ -58,6 +58,6 @@ namespace DiscImageChef.DiscImages
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
public CICMMetadataType CicmMetadata => null;
}
}