Increase urgency of Logger.Error; bump version number

This commit is contained in:
Matt Nadareski
2016-03-30 13:38:38 -07:00
parent 2d4a4fa668
commit ab0392404e
4 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ namespace SabreTools
private static Logger logger; private static Logger logger;
private static string _dbName = "DATabase.sqlite"; private static string _dbName = "DATabase.sqlite";
private static string _connectionString = "Data Source=" + _dbName + ";Version = 3;"; private static string _connectionString = "Data Source=" + _dbName + ";Version = 3;";
private static string _version = "0.2.3.0"; private static string _version = "0.2.4.0";
private static string _header = private static string _header =
@"+-----------------------------------------------------------------------------+ @"+-----------------------------------------------------------------------------+
| DATabase " + _version + @" | | DATabase " + _version + @" |

View File

@@ -124,7 +124,7 @@ namespace SabreTools.Helper
/// <returns>True if the output could be written, false otherwise</returns> /// <returns>True if the output could be written, false otherwise</returns>
public bool Error(string output) public bool Error(string output)
{ {
return Log("Error: " + output); return Log("ERROR: " + output);
} }
} }
} }

View File

@@ -13,7 +13,7 @@ namespace SabreTools
/// </summary> /// </summary>
class Headerer class Headerer
{ {
private static string _version = "0.2.3.0"; private static string _version = "0.2.4.0";
private static string _dbName = "Headerer.sqlite"; private static string _dbName = "Headerer.sqlite";
private static string _connectionString = "Data Source=" + _dbName + ";Version = 3;"; private static string _connectionString = "Data Source=" + _dbName + ";Version = 3;";
private static Dictionary<string, int> types; private static Dictionary<string, int> types;

View File

@@ -261,7 +261,7 @@
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.menuStrip1;
this.Name = "SabreToolsUI"; this.Name = "SabreToolsUI";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "SabreTools UI 0.2.3.0"; this.Text = "SabreTools UI 0.2.4.0";
this.menuStrip1.ResumeLayout(false); this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.menuStrip1.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);