mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* commandline:
* DiscImageChef.Decoders/CD/PMA.cs: Correct prettify of PMA. * DiscImageChef/Commands/DumpMedia.cs: Correct exception on raw cd dumping not implemented. * DiscImageChef/Commands/MediaScan.cs: Scan more blocks.
This commit is contained in:
@@ -235,6 +235,8 @@ namespace DiscImageChef.Decoders.CD
|
|||||||
sb.AppendFormat(" and ends at {3}:{0:D2}:{1:D2}:{2:D2}", descriptor.Min, descriptor.Sec, descriptor.Frame, descriptor.HOUR);
|
sb.AppendFormat(" and ends at {3}:{0:D2}:{1:D2}:{2:D2}", descriptor.Min, descriptor.Sec, descriptor.Frame, descriptor.HOUR);
|
||||||
else
|
else
|
||||||
sb.AppendFormat(" and ends at {0:D2}:{1:D2}:{2:D2}", descriptor.Min, descriptor.Sec, descriptor.Frame);
|
sb.AppendFormat(" and ends at {0:D2}:{1:D2}:{2:D2}", descriptor.Min, descriptor.Sec, descriptor.Frame);
|
||||||
|
|
||||||
|
sb.AppendLine();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
goto default;
|
goto default;
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2016-04-06 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* Commands/DumpMedia.cs:
|
||||||
|
Correct exception on raw cd dumping not implemented.
|
||||||
|
|
||||||
|
* Commands/MediaScan.cs:
|
||||||
|
Scan more blocks.
|
||||||
|
|
||||||
2016-02-10 Natalia Portillo <claunia@claunia.com>
|
2016-02-10 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Commands/DeviceInfo.cs:
|
* Commands/DeviceInfo.cs:
|
||||||
|
|||||||
@@ -1885,7 +1885,7 @@ namespace DiscImageChef.Commands
|
|||||||
|
|
||||||
if (options.Raw)
|
if (options.Raw)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException("CD dumping not yet implemented");
|
throw new NotImplementedException("Raw CD dumping not yet implemented");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ namespace DiscImageChef.Commands
|
|||||||
else if (Read)
|
else if (Read)
|
||||||
DicConsole.WriteLine("Using ATA READ command (CHS).");
|
DicConsole.WriteLine("Using ATA READ command (CHS).");
|
||||||
|
|
||||||
byte blocksToRead = 64;
|
byte blocksToRead = 254;
|
||||||
bool error = true;
|
bool error = true;
|
||||||
while (lbaMode)
|
while (lbaMode)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user