getSystemStats
-
I was looking for a way to get the user's locale so I could provide some localization in my app. In the process I found the JUCE
SystemStats
class which I think provides a lot of info about the user's system that could be useful to us, especially for creating reports when users find a bug.I've added a function to the API to give us access to this class.
Engine.getSystemStats()
It returns an object which contains the following.
I didn't add everything available in the SystemStats class, just the things I thought might be most useful, if there are others that you think should be added, let me know.