diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-19 22:04:48 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-19 23:18:40 +0200 |
commit | 12461a55a8246930c1bbeb19a60d0d4b52ff5abd (patch) | |
tree | 3b77f8a64ad37fc7ebcecb6ef72fb85dcc2b9774 /src/Main/Forms/VolumeFormatOptionsWizardPage.cpp | |
parent | 008d0503befa55311eb12dbca42a3df25c6f29a0 (diff) | |
download | VeraCrypt-12461a55a8246930c1bbeb19a60d0d4b52ff5abd.tar.gz VeraCrypt-12461a55a8246930c1bbeb19a60d0d4b52ff5abd.zip |
MacOSX: Support APFS for creating volumes.
Diffstat (limited to 'src/Main/Forms/VolumeFormatOptionsWizardPage.cpp')
-rw-r--r-- | src/Main/Forms/VolumeFormatOptionsWizardPage.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp index ec0d7780..38657059 100644 --- a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp +++ b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp @@ -13,6 +13,7 @@ #include "System.h" #include "Main/GraphicUserInterface.h" #include "VolumeFormatOptionsWizardPage.h" +#include <wx/platinfo.h> namespace VeraCrypt { @@ -40,6 +41,8 @@ namespace VeraCrypt #elif defined (TC_MACOSX) FilesystemTypeChoice->Append (L"Mac OS Extended", (void *) VolumeCreationOptions::FilesystemType::MacOsExt); FilesystemTypeChoice->Append (L"exFAT", (void *) VolumeCreationOptions::FilesystemType::exFAT); + if (wxPlatformInfo::Get().CheckOSVersion (10, 13)) + FilesystemTypeChoice->Append (L"APFS", (void *) VolumeCreationOptions::FilesystemType::APFS); #elif defined (TC_FREEBSD) || defined (TC_SOLARIS) FilesystemTypeChoice->Append (L"UFS", (void *) VolumeCreationOptions::FilesystemType::UFS); #endif @@ -81,6 +84,7 @@ namespace VeraCrypt case VolumeCreationOptions::FilesystemType::Ext3: FilesystemTypeChoice->SetStringSelection (L"Linux Ext3"); break; case VolumeCreationOptions::FilesystemType::Ext4: FilesystemTypeChoice->SetStringSelection (L"Linux Ext4"); break; case VolumeCreationOptions::FilesystemType::MacOsExt: FilesystemTypeChoice->SetStringSelection (L"Mac OS Extended"); break; + case VolumeCreationOptions::FilesystemType::APFS: FilesystemTypeChoice->SetStringSelection (L"APFS"); break; case VolumeCreationOptions::FilesystemType::UFS: FilesystemTypeChoice->SetStringSelection (L"UFS"); break; default: |