Deprecate RombaSharp

This commit is contained in:
Matt Nadareski
2024-10-29 16:58:29 -04:00
parent 929dc28b6e
commit 396ae96ab0
3 changed files with 6 additions and 4 deletions

View File

@@ -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/). 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. 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 ## Builds
Last stable releases can be found on [the Releases tab](https://github.com/SabreTools/SabreTools/releases). Last stable releases can be found on [the Releases tab](https://github.com/SabreTools/SabreTools/releases).

View File

@@ -473,7 +473,7 @@ Possible values are: Verbose, User, Warning, Error");
System.IO.File.Create(db); System.IO.File.Create(db);
// Open the database connection // Open the database connection
SqliteConnection dbc = new SqliteConnection(connectionString); var dbc = new SqliteConnection(connectionString);
dbc.Open(); dbc.Open();
// Make sure the database has the correct schema // Make sure the database has the correct schema

View File

@@ -49,7 +49,7 @@ namespace RombaSharp
_help = RetrieveHelp(); _help = RetrieveHelp();
// Credits take precidence over all // Credits take precidence over all
if ((new List<string>(args)).Contains("--credits")) if (new List<string>(args).Contains("--credits"))
{ {
FeatureSet.OutputCredits(); FeatureSet.OutputCredits();
LoggerImpl.Close(); LoggerImpl.Close();
@@ -104,7 +104,7 @@ namespace RombaSharp
if (!Console.IsOutputRedirected && feature.ScriptMode) if (!Console.IsOutputRedirected && feature.ScriptMode)
{ {
Console.Clear(); Console.Clear();
Globals.SetConsoleHeader("SabreTools"); Globals.SetConsoleHeader("RombaSharp [Deprecated]");
} }
// Now process the current feature // Now process the current feature