From e298a9b6d440fdb7f5d2dfdedacb0ac8d17a5741 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 8 Jul 2026 10:18:51 -0400 Subject: [PATCH] Rename WIPFeature to QueueFeature --- RedumpTool/Features/{WIPFeature.cs => QueueFeature.cs} | 10 +++++----- RedumpTool/Program.cs | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) rename RedumpTool/Features/{WIPFeature.cs => QueueFeature.cs} (93%) diff --git a/RedumpTool/Features/WIPFeature.cs b/RedumpTool/Features/QueueFeature.cs similarity index 93% rename from RedumpTool/Features/WIPFeature.cs rename to RedumpTool/Features/QueueFeature.cs index 641dce3..2a743b9 100644 --- a/RedumpTool/Features/WIPFeature.cs +++ b/RedumpTool/Features/QueueFeature.cs @@ -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; diff --git a/RedumpTool/Program.cs b/RedumpTool/Program.cs index 84da07a..8b9d097 100644 --- a/RedumpTool/Program.cs +++ b/RedumpTool/Program.cs @@ -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());