From 1fdb2d9a1fbf9a34c662f296f11804f0d0a25238 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Sun, 3 Nov 2013 10:11:30 -0700 Subject: [PATCH] update version display and project urls --- Scripts/Gumps/Guilds/GuildCharterGump.cs | 2 +- Scripts/SpecialSystems/Engines/TestCenter.cs | 6 +++--- Server/Main.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Scripts/Gumps/Guilds/GuildCharterGump.cs b/Scripts/Gumps/Guilds/GuildCharterGump.cs index 4cee9af9d..9a80454a2 100644 --- a/Scripts/Gumps/Guilds/GuildCharterGump.cs +++ b/Scripts/Gumps/Guilds/GuildCharterGump.cs @@ -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 ) { diff --git a/Scripts/SpecialSystems/Engines/TestCenter.cs b/Scripts/SpecialSystems/Engines/TestCenter.cs index 588790ef5..3ade2d029 100644 --- a/Scripts/SpecialSystems/Engines/TestCenter.cs +++ b/Scripts/SpecialSystems/Engines/TestCenter.cs @@ -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 diff --git a/Server/Main.cs b/Server/Main.cs index 335b1653d..1c6836e4d 100644 --- a/Server/Main.cs +++ b/Server/Main.cs @@ -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;