From 80c27ebd713128608175a28cd164027028e2cf86 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 10 Jun 2016 13:02:35 -0700 Subject: [PATCH] [DATabase] Disconnect menuing system for the time being The menus need a complete overhaul so they're being disconnected until they can get a proper treatment --- DATabase/DATabase.cs | 7 ++++++- README.MD | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/DATabase/DATabase.cs b/DATabase/DATabase.cs index 4cfcf6e7..67c1c047 100644 --- a/DATabase/DATabase.cs +++ b/DATabase/DATabase.cs @@ -59,9 +59,11 @@ namespace SabreTools return; } - // If there's no arguments, show the menu + // If there's no arguments, show help if (args.Length == 0) { + /* + // If there are no arguments, show the menu if (!Console.IsOutputRedirected) { ShowMainMenu(); @@ -70,6 +72,9 @@ namespace SabreTools { Build.Help(); } + */ + + Build.Help(); _logger.Close(); return; } diff --git a/README.MD b/README.MD index d75e54c5..f7230c01 100644 --- a/README.MD +++ b/README.MD @@ -38,7 +38,7 @@ The main tool of the SabreTools suite. Performs the majority of the core feature
  • Add and remove sources and systems from the database
  • Retrieve a list of all sources and systems that are available
  • -This tool can both be used with command line parameters or with the built-in text menu system. +This tool has a comprehensive list of command line parameters that can be used to do the above and much more. Headerer