Merge pull request #10803 from obrakmann/player-census
Add ability to collect system information from users' systems
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -273,5 +273,10 @@ namespace OpenRA
|
||||
{
|
||||
return Device.SetClipboardText(text);
|
||||
}
|
||||
|
||||
public string GLVersion
|
||||
{
|
||||
get { return Device.GLVersion; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user