VeraCrypt
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2018-02-10Fix Location TypoDrunkenSasquatch1-1/+1
2018-01-26Merge pull request #267 from gv5470/patch-100Mounir IDRASSI1-2/+2
2018-01-21Fix wxWidgets assertion failed when backing up/restoring volume header (close...gv54701-2/+2
2017-12-29Language XML Files: Add untranslated Thai language file.Mounir IDRASSI1-0/+1480
2017-12-28Merge pull request #252 from Musikolo/developMounir IDRASSI1-213/+213
2017-12-28Merge pull request #250 from Atalanttore/patch-1Mounir IDRASSI1-11/+11
2017-12-28Fix a lot of typosUnknown1-71/+71
2017-12-27Fix minor typoUnknown1-1/+1
2017-12-26Add some missing changesUnknown1-135/+135
2017-12-26Update Spanish translationsUnknown1-133/+133
2017-12-26Update Language.de.xmlEttore Atalan1-10/+10
2017-12-26Update Language.de.xmlEttore Atalan1-11/+11
2017-12-13Docummentation: update Release Notes with fix for KDE GUI install.Mounir IDRASSI2-0/+5
2017-12-13Linux: fix failure to install GUI version under recent versions of KDE.Mounir IDRASSI1-2/+2
2017-12-09Linux: fix compilation error with older versions of gcc (e.g. 4.x)Mounir IDRASSI1-3/+3
2017-12-09Windows: Update signed driver files for 1.22-BETA4Mounir IDRASSI2-0/+0
2017-12-09Docummentation: update Release Notes for 1.22-BETA4Mounir IDRASSI2-1/+11
2017-12-09Increment version to 1.22-BETA4 (1.22.4)Mounir IDRASSI48-57/+57
2017-12-08MacOSX: fix issue that prevented some local help files from opening in the br...Mounir IDRASSI1-2/+6
2017-12-06MacOSX: Update reference of code signing certificate in Makefile to use new I...Mounir IDRASSI1-2/+2
2017-12-06Linux/MacOSX: Avoid OS leaking previously used directory if user choose not t...Mounir IDRASSI1-2/+12
2017-12-05Documentation: Remove codeplex reference from Flattr donation link.Mounir IDRASSI1-1/+1
2017-12-05Docummentation: correct Release Notes for 1.22-BETA3Mounir IDRASSI1-1/+2
2017-11-29Linux: Only add disk to mountable devices if it doesn't have a partition. Thi...Mounir IDRASSI1-4/+7
2017-11-28Language XML files: remove references to GOST89 since it is not supported any...Mounir IDRASSI38-43/+0
2017-11-28Merge pull request #243 from gv5470/patch-233-prMounir IDRASSI1-0/+23
2017-11-28Linux: autodetect host drive name using sysfs (closes #233)gv54701-0/+23
2017-11-27SIMD speed optimization for Kuznyechik cipher implementation (up to 2x speedu...Mounir IDRASSI10-167/+9834
2017-11-27Documentation: Add OSX 10.13 High Sierra to the list of support operating sys...Mounir IDRASSI2-0/+1
2017-11-27Merge pull request #206 from strazzere/patch-1Mounir IDRASSI1-1/+1
2017-11-27Merge pull request #226 from TigerxWood/patch-2Mounir IDRASSI1-12/+13
2017-11-27Merge pull request #230 from bmintz/issue-198Mounir IDRASSI1-2/+2
2017-11-27Merge pull request #227 from wwj402/patch-1Mounir IDRASSI1-65/+65
2017-11-27Merge pull request #234 from user9209/masterMounir IDRASSI1-1/+1
2017-11-10fixed kuznyechik blocksize in german descriptionGeorg Schmidt1-1/+1
2017-11-10Update ver. 1.22 beta3TigerxWood1-1/+1
2017-11-06Fix compilation on Linux (closes #198)bmintz1-2/+2
2017-11-05Update Language.zh-cn.xmlwwj4021-65/+65
2017-11-04Update to ver. 122 and made some corections.TigerxWood1-12/+13
2017-08-30Fix typoTim Strazzere1-1/+1
2017-08-09Language XML files: update Czech translation (contributed by Lagardere)Mounir IDRASSI1-20/+20
2017-08-02Docummentation: update Release Notes for 1.22-BETA3Mounir IDRASSI2-2/+3
2017-08-02Windows: Update signed driver files for 1.22-BETA3Mounir IDRASSI2-0/+0
2017-08-02Windows: Increment version to 1.22-BETA3Mounir IDRASSI46-54/+54
2017-08-02Windows MBR bootloader: reduce CPU usage during password prompt (Credit: Jaso...Mounir IDRASSI1-1/+22
2017-07-29Windows: Update signed driver files for 1.22-BETA2-Build6Mounir IDRASSI2-0/+0
2017-07-29Windows: increment version to 1.22-BETA2-Build6Mounir IDRASSI7-13/+13
2017-07-29Windows Driver: avoid allocating memory for some IOCTL_STORAGE_QUERY_PROPERTY...Mounir IDRASSI1-37/+16
2017-07-29Windows: Add portable installer that only extra binaries without the need of ...Mounir IDRASSI10-23/+846
2017-07-27Documentation: update release notes for 1.22-BETA2-Build5Mounir IDRASSI2-1/+1
ILTER_NUMERIC does not exclude - . , etc. const wxChar *valArr[] = { L"0", L"1", L"2", L"3", L"4", L"5", L"6", L"7", L"8", L"9" }; validator.SetIncludes (wxArrayString (array_capacity (valArr), (const wxChar **) &valArr)); VolumeSizeTextCtrl->SetValidator (validator); } uint64 VolumeSizeWizardPage::GetVolumeSize () const { uint64 prefixMult = 1; int selection = VolumeSizePrefixChoice->GetSelection(); if (selection == wxNOT_FOUND) return 0; prefixMult = reinterpret_cast <uint64> (VolumeSizePrefixChoice->GetClientData (selection)); uint64 val = StringConverter::ToUInt64 (wstring (VolumeSizeTextCtrl->GetValue())); if (val <= 0x7fffFFFFffffFFFFull / prefixMult) { val *= prefixMult; uint32 sectorSizeRem = val % SectorSize; if (sectorSizeRem != 0) val += SectorSize - sectorSizeRem; return val; } else return 0; } bool VolumeSizeWizardPage::IsValid () { if (!VolumeSizeTextCtrl->GetValue().empty() && Validate()) { try { if (GetVolumeSize() >= MinVolumeSize && (!MaxVolumeSizeValid || GetVolumeSize() <= MaxVolumeSize)) return true; } catch (...) { } } return false; } void VolumeSizeWizardPage::SetMaxStaticTextWidth (int width) { FreeSpaceStaticText->Wrap (width); InfoStaticText->Wrap (width); } void VolumeSizeWizardPage::SetVolumeSize (uint64 size) { if (size == 0) { VolumeSizePrefixChoice->Select (Prefix::MB); VolumeSizeTextCtrl->SetValue (L""); return; } if (size % (1024 * 1024 * 1024) == 0) { size /= 1024 * 1024 * 1024; VolumeSizePrefixChoice->Select (Prefix::GB); } else if (size % (1024 * 1024) == 0) { size /= 1024 * 1024; VolumeSizePrefixChoice->Select (Prefix::MB); } else { size /= 1024; VolumeSizePrefixChoice->Select (Prefix::KB); } VolumeSizeTextCtrl->SetValue (StringConverter::FromNumber (size)); } }