Use 5GB as HDD free space requirement

This commit is contained in:
Jack Andersen 2018-04-01 18:28:04 -10:00
parent 007ad244ee
commit 602ed824e4
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ QVariant SysReqTableModel::data(const QModelIndex& index, int role) const
case 2:
return m_memorySize >= 0xC0000000;
case 3:
return m_freeDiskSpace >= qint64(16) * 1000 * 1000 * 1000;
return m_freeDiskSpace >= qint64(5) * 1000 * 1000 * 1000;
case 4:
#ifdef __APPLE__
return m_macosMajor > 10 || m_macosMinor >= 9;
@ -215,7 +215,7 @@ QVariant SysReqTableModel::data(const QModelIndex& index, int role) const
case 2:
return QStringLiteral("3 GiB");
case 3:
return QStringLiteral("16 GB (MP1)");
return QStringLiteral("5 GB (MP1)");
case 4:
#ifdef __APPLE__
return QStringLiteral("macOS 10.9");