mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Open modlist report in browser by default
This commit is contained in:
parent
595571207d
commit
bfacf0b90f
@ -35,7 +35,8 @@ public class ModlistReport
|
|||||||
public static VerbDefinition Definition = new("modlist-report",
|
public static VerbDefinition Definition = new("modlist-report",
|
||||||
"Generates a usage report for a Modlist file", new[]
|
"Generates a usage report for a Modlist file", new[]
|
||||||
{
|
{
|
||||||
new OptionDefinition(typeof(AbsolutePath), "i", "input", "Wabbajack file from which to generate a report")
|
new OptionDefinition(typeof(AbsolutePath), "i", "input", "Wabbajack file from which to generate a report"),
|
||||||
|
new OptionDefinition(typeof(bool), "b", "browser", "Open report in browser after generating it (default true)")
|
||||||
});
|
});
|
||||||
|
|
||||||
private static async Task<string> ReportTemplate(object o)
|
private static async Task<string> ReportTemplate(object o)
|
||||||
@ -45,10 +46,10 @@ public class ModlistReport
|
|||||||
return await func(o, CancellationToken.None);
|
return await func(o, CancellationToken.None);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<int> Run(AbsolutePath input)
|
public async Task<int> Run(AbsolutePath input, bool browser = true)
|
||||||
{
|
{
|
||||||
|
|
||||||
_logger.LogInformation("Loading Modlist");
|
_logger.LogInformation("Loading modlist...");
|
||||||
var modlist = await StandardInstaller.LoadFromFile(_dtos, input);
|
var modlist = await StandardInstaller.LoadFromFile(_dtos, input);
|
||||||
|
|
||||||
Dictionary<string, long> patchSizes;
|
Dictionary<string, long> patchSizes;
|
||||||
@ -104,8 +105,11 @@ public class ModlistReport
|
|||||||
WabbajackSize = input.Size().ToFileSizeString()
|
WabbajackSize = input.Size().ToFileSizeString()
|
||||||
});
|
});
|
||||||
|
|
||||||
await input.WithExtension(Ext.Html).WriteAllTextAsync(data);
|
var path = input.WithExtension(Ext.Html);
|
||||||
|
await path.WriteAllTextAsync(data);
|
||||||
|
_logger.LogInformation($"Exported modlist report to {path}");
|
||||||
|
|
||||||
|
if(browser) System.Diagnostics.Process.Start("explorer", path.ToString());
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user