mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-09-21 22:44:51 +00:00
Rename WIPFeature to QueueFeature
This commit is contained in:
@@ -6,15 +6,15 @@ using SabreTools.RedumpLib.Web;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
internal sealed class WIPFeature : BaseFeature
|
||||
internal sealed class QueueFeature : BaseFeature
|
||||
{
|
||||
#region Feature Definition
|
||||
|
||||
public const string DisplayName = "wip";
|
||||
public const string DisplayName = "queue";
|
||||
|
||||
private static readonly string[] _flags = ["wip"];
|
||||
private static readonly string[] _flags = ["queue"];
|
||||
|
||||
private const string _description = "Download pages and related files from the WIP list";
|
||||
private const string _description = "Download pages and related files from the submission queue";
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace RedumpTool.Features
|
||||
|
||||
#endregion
|
||||
|
||||
public WIPFeature()
|
||||
public QueueFeature()
|
||||
: base(DisplayName, _flags, _description)
|
||||
{
|
||||
RequiresInputs = false;
|
||||
@@ -29,7 +29,7 @@ namespace RedumpTool
|
||||
{
|
||||
case Help help: help.ProcessArgs(args, 0, commandSet); return;
|
||||
case SiteFeature sf: sf.ProcessArgs(args, 1); sf.Execute(); return;
|
||||
case WIPFeature wf: wf.ProcessArgs(args, 1); wf.Execute(); return;
|
||||
case QueueFeature qf: qf.ProcessArgs(args, 1); qf.Execute(); return;
|
||||
case PacksFeature pf: pf.ProcessArgs(args, 1); pf.Execute(); return;
|
||||
case UserFeature uf: uf.ProcessArgs(args, 1); uf.Execute(); return;
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace RedumpTool
|
||||
|
||||
commandSet.Add(new Help(["-?", "-h", "--help"]));
|
||||
commandSet.Add(new SiteFeature());
|
||||
commandSet.Add(new WIPFeature());
|
||||
commandSet.Add(new QueueFeature());
|
||||
commandSet.Add(new PacksFeature());
|
||||
commandSet.Add(new UserFeature());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user