Update Version info to 1.7 in trunk, and use DateTime.Now instead of a string that needs to be updated

This commit is contained in:
adelikat 2014-04-22 21:59:56 +00:00
parent 04aa023cb9
commit 59af041247
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
using System;
static class VersionInfo
{
public const string MAINVERSION = "1.6.0";
public const string RELEASEDATE = "Beta built on January 20, 2014";
public const string MAINVERSION = "1.7.0";
public static string RELEASEDATE = "Beta built on " + DateTime.Now.ToShortDateString();
public static bool INTERIM = true;
public static string GetEmuVersion()