mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Deprecate RombaSharp
This commit is contained in:
@@ -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).
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user