update version display and project urls

This commit is contained in:
Mark Sturgill 2013-11-03 10:11:30 -07:00
parent d18b2254d8
commit 1fdb2d9a1f
3 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@ namespace Server.Gumps
private Mobile m_Mobile;
private Guild m_Guild;
private const string DefaultWebsite = "http://www.runuo.com/";
private const string DefaultWebsite = "https://github.com/runuo/";
public GuildCharterGump( Mobile from, Guild guild ) : base( 20, 30 )
{

View file

@ -166,7 +166,7 @@ namespace Server.Misc
AddBackground( 0, 0, 160, 120, 5054 );
AddButton( 10, 10, 0xFB7, 0xFB9, 1, GumpButtonType.Reply, 0 );
AddLabel( 45, 10, 0x34, "RunUO.com" );
AddLabel( 45, 10, 0x34, "RunUO" );
AddButton( 10, 35, 0xFB7, 0xFB9, 2, GumpButtonType.Reply, 0 );
AddLabel( 45, 35, 0x34, "List of skills" );
@ -182,9 +182,9 @@ namespace Server.Misc
{
switch ( info.ButtonID )
{
case 1: // RunUO.com
case 1: // RunUO
{
sender.LaunchBrowser( "http://www.RunUO.com" );
sender.LaunchBrowser("https://github.com/runuo/");
break;
}
case 2: // List of skills

View file

@ -487,8 +487,8 @@ namespace Server
Version ver = m_Assembly.GetName().Version;
// Added to help future code support on forums, as a 'check' people can ask for to it see if they recompiled core or not
Console.WriteLine( "RunUO - [www.runuo.com] Version {0}.{1}, Build {2}.{3}", ver.Major, ver.Minor, ver.Build, ver.Revision );
Console.WriteLine( "Core: Running on .NET Framework Version {0}.{1}.{2}", Environment.Version.Major, Environment.Version.Minor, Environment.Version.Build );
Console.WriteLine("RunUO - [https://github.com/runuo/] Version {0}.{1}.{2}.{3}", ver.Major, ver.Minor, ver.Build, ver.Revision);
Console.WriteLine("Core: Running on .NET Framework Version {0}.{1}.{2}", Environment.Version.Major, Environment.Version.Minor, Environment.Version.Build);
string s = Arguments;