GH-4014 change updater to recognize new Qt 5.15.2 builds
This commit is contained in:
@ -4,10 +4,24 @@
|
||||
namespace Sys
|
||||
{
|
||||
const uint64_t mebibyte = 1024ull * 1024ull;
|
||||
|
||||
enum class KernelType {
|
||||
Undetermined,
|
||||
Windows,
|
||||
Darwin,
|
||||
Linux
|
||||
};
|
||||
|
||||
struct KernelInfo
|
||||
{
|
||||
QString kernelName;
|
||||
QString kernelVersion;
|
||||
|
||||
KernelType kernelType = KernelType::Undetermined;
|
||||
int kernelMajor = 0;
|
||||
int kernelMinor = 0;
|
||||
int kernelPatch = 0;
|
||||
bool isCursed = false;
|
||||
};
|
||||
|
||||
KernelInfo getKernelInfo();
|
||||
|
Reference in New Issue
Block a user