You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- You can now choose to either specify regions to download or regions to skip
- You can now display more than 4096 files by using the '-a' ('--show-all-files') option with the info command.
@@ -185,8 +189,12 @@ public sealed class Settings : CryptoCommandSettings
185
189
publicstring?OutputDirectory{get;init;}
186
190
187
191
[Description("List of regions to skip downloading. Defaults to none.")]
188
-
[CommandOption("-r|--skip-region")]
189
-
publicuint[]?SkippedRegions{get;init;}
192
+
[CommandOption("-b|--skip-region")]
193
+
publicuint[]?SkipRegions{get;init;}
194
+
195
+
[Description("List of regions to download. Defaults to all.")]
196
+
[CommandOption("-w|--download-region")]
197
+
publicuint[]?DownloadRegions{get;init;}
190
198
191
199
[Description("Skips performing hash verification on the pages prior to decryption.\nMassively improves performance at the cost of integrity.\nOnly use this if you know the file is not corrupt!")]
192
200
[CommandOption("-n|--no-hash-check")]
@@ -210,13 +218,21 @@ public override int Execute(CommandContext context, Settings settings)
0 commit comments