mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add support and command for converting images, fixes #134
This commit is contained in:
@@ -109,6 +109,7 @@ namespace DiscImageChef.Server.Controllers
|
||||
oldStats.Commands.ExtractFiles += newStats.Commands.ExtractFiles;
|
||||
oldStats.Commands.ListDevices += newStats.Commands.ListDevices;
|
||||
oldStats.Commands.ListEncodings += newStats.Commands.ListEncodings;
|
||||
oldStats.Commands.ConvertImage += newStats.Commands.ConvertImage;
|
||||
}
|
||||
|
||||
if(newStats.OperatingSystems != null)
|
||||
|
||||
@@ -97,6 +97,7 @@
|
||||
<i>benchmark</i> command has been run <asp:Label id="lblBenchmark" runat="server"/> times<br/>
|
||||
<i>checksum</i> command has been run <asp:Label id="lblChecksum" runat="server"/> times<br/>
|
||||
<i>compare</i> command has been run <asp:Label id="lblCompare" runat="server"/> times<br/>
|
||||
<i>convert-image</i> command has been run <asp:Label id="lblConvertImage" runat="server"/> times<br/>
|
||||
<i>create-sidecar</i> command has been run <asp:Label id="lblCreateSidecar" runat="server"/> times<br/>
|
||||
<i>decode</i> command has been run <asp:Label id="lblDecode" runat="server"/> times<br/>
|
||||
<i>device-info</i> command has been run <asp:Label id="lblDeviceInfo" runat="server"/> times<br/>
|
||||
|
||||
@@ -136,6 +136,7 @@ namespace DiscImageChef.Server
|
||||
lblExtractFiles.Text = statistics.Commands.ExtractFiles.ToString();
|
||||
lblListDevices.Text = statistics.Commands.ListDevices.ToString();
|
||||
lblListEncodings.Text = statistics.Commands.ListEncodings.ToString();
|
||||
lblConvertImage.Text = statistics.Commands.ConvertImage.ToString();
|
||||
}
|
||||
else divCommands.Visible = false;
|
||||
|
||||
|
||||
4
DiscImageChef.Server/Statistics.aspx.designer.cs
generated
4
DiscImageChef.Server/Statistics.aspx.designer.cs
generated
@@ -40,7 +40,9 @@ namespace DiscImageChef.Server {
|
||||
|
||||
protected Label lblCompare;
|
||||
|
||||
protected Label lblCreateSidecar;
|
||||
protected Label lblConvertImage;
|
||||
|
||||
protected Label lblCreateSidecar;
|
||||
|
||||
protected Label lblDecode;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user