Add descriptions to RV dats and bump version

This commit is contained in:
Matt Nadareski
2016-03-25 11:01:23 -07:00
parent cc16b451c6
commit 8b0f15fa35
2 changed files with 3 additions and 2 deletions

View File

@@ -202,7 +202,8 @@ namespace DATabase
if (lastgame != rom.Game) if (lastgame != rom.Game)
{ {
state += (_old ? "game (\n\tname \"" + rom.Game + "\"\n" : state += (_old ? "game (\n\tname \"" + rom.Game + "\"\n" +
"\tdescription \"" + rom.Game + "\"\n" :
"\t<machine name=\"" + HttpUtility.HtmlEncode(rom.Game) + "\">\n" + "\t<machine name=\"" + HttpUtility.HtmlEncode(rom.Game) + "\">\n" +
"\t\t<description>" + HttpUtility.HtmlEncode(rom.Game) + "</description>\n"); "\t\t<description>" + HttpUtility.HtmlEncode(rom.Game) + "</description>\n");
} }

View File

@@ -11,7 +11,7 @@ namespace DATabase
{ {
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.0.5.2"; private static string _version = "0.0.5.3";
private static string _header = private static string _header =
@"+-----------------------------------------------------------------------------+ @"+-----------------------------------------------------------------------------+
| DATabase " + _version + @" | | DATabase " + _version + @" |