Merge pull request #10803 from obrakmann/player-census

Add ability to collect system information from users' systems
This commit is contained in:
abcdefg30
2016-03-04 16:27:32 +01:00
10 changed files with 81 additions and 18 deletions

View File

@@ -78,6 +78,8 @@ namespace OpenRA
IHardwareCursor CreateHardwareCursor(string name, Size size, byte[] data, int2 hotspot);
void SetHardwareCursor(IHardwareCursor cursor);
string GLVersion { get; }
}
public interface IVertexBuffer<T> : IDisposable

View File

@@ -273,5 +273,10 @@ namespace OpenRA
{
return Device.SetClipboardText(text);
}
public string GLVersion
{
get { return Device.GLVersion; }
}
}
}

View File

@@ -92,6 +92,8 @@ namespace OpenRA
public bool SanityCheckUnsyncedCode = false;
public int Samples = 25;
public bool IgnoreVersionMismatch = false;
public bool SendSystemInformation = true;
public string UUID = System.Guid.NewGuid().ToString();
}
public class GraphicSettings
@@ -179,7 +181,7 @@ namespace OpenRA
public Modifiers ZoomModifier = Modifiers.Ctrl;
public bool FetchNews = true;
public string NewsUrl = "http://www.openra.net/gamenews";
public string NewsUrl = "http://master.openra.net/gamenews";
}
public class KeySettings