diff --git a/README.MD b/README.MD index 2fc7d964..87b5f2cf 100644 --- a/README.MD +++ b/README.MD @@ -70,10 +70,12 @@ A small tool that allows users to extract, store, and remove copier headers for This tool is no longer hosted in this repository. If you wish to use this tool, you can find it [here](https://github.com/SabreTools/SabreTools.Skippers/). -### RombaSharp +### RombaSharp \[Deprecated\] An in-progress tool that will try to act as a C# port of the Go-based [Romba](https://github.com/uwedeportivo/romba/) program. All features that are not already a part of SabreTools will be attempted to be added to this program. It is NOT ready for use yet. For any inquiries into the full features of this tool, please contact the project. +As of 2024-10-29, this tool is considered deprecated and will be removed at some future point. Previous releases of RombaSharp will still be made available in their respective release pages. No further explicit updates will be made. + ## Builds Last stable releases can be found on [the Releases tab](https://github.com/SabreTools/SabreTools/releases). diff --git a/RombaSharp/Features/BaseFeature.cs b/RombaSharp/Features/BaseFeature.cs index 9956b652..0933575d 100644 --- a/RombaSharp/Features/BaseFeature.cs +++ b/RombaSharp/Features/BaseFeature.cs @@ -473,7 +473,7 @@ Possible values are: Verbose, User, Warning, Error"); System.IO.File.Create(db); // Open the database connection - SqliteConnection dbc = new SqliteConnection(connectionString); + var dbc = new SqliteConnection(connectionString); dbc.Open(); // Make sure the database has the correct schema diff --git a/RombaSharp/Program.cs b/RombaSharp/Program.cs index da9a5d9c..c4b5a921 100644 --- a/RombaSharp/Program.cs +++ b/RombaSharp/Program.cs @@ -49,7 +49,7 @@ namespace RombaSharp _help = RetrieveHelp(); // Credits take precidence over all - if ((new List(args)).Contains("--credits")) + if (new List(args).Contains("--credits")) { FeatureSet.OutputCredits(); LoggerImpl.Close(); @@ -104,7 +104,7 @@ namespace RombaSharp if (!Console.IsOutputRedirected && feature.ScriptMode) { Console.Clear(); - Globals.SetConsoleHeader("SabreTools"); + Globals.SetConsoleHeader("RombaSharp [Deprecated]"); } // Now process the current feature