Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-03-10 | Windows: Fix text truncation in password dialog with some languages | Mounir IDRASSI | 1 | -3/+3 | |
2020-02-11 | Increment version to 1.24-Update5 and update signed Windows drivers. | Mounir IDRASSI | 20 | -38/+38 | |
2020-02-10 | Windows: Implement support for processor groups in the driver and fix build ↵ | Mounir IDRASSI | 4 | -62/+138 | |
issues caused by previous implementation | |||||
2020-02-10 | Windows: Fix warnings reported by Coverity static code analyzer | Mounir IDRASSI | 4 | -17/+37 | |
2020-02-04 | Windows: Fix groupbox alignment issue in UI of Fprmat wizard | Mounir IDRASSI | 1 | -1/+1 | |
2020-01-29 | Adding Processor Groups support for more than 64 processors (#581) | techvintage | 1 | -3/+57 | |
* Adding Processor Groups support for more than 64 processors * Revert " Adding Processor Groups support for more than 64 processors" This reverts commit e1d5fe0a55f46a53549450972c5b5506a43ca94c. * Adding Processor Groups support for >64 logical processors | |||||
2020-01-22 | Windows: restore Visual Studio solution and project files to default ↵VeraCrypt_1.24-Update4 | Mounir IDRASSI | 2 | -1/+3 | |
configuration | |||||
2020-01-22 | Windows: use fix for CVE-2019-19501 only when process elevated otherwise it ↵ | Mounir IDRASSI | 1 | -1/+22 | |
will not add any benefit compared to standard ShellExecute while at the same time potentially causing issue when opening links. | |||||
2020-01-22 | Increment version to 1.24-Update4 and update Release Notes | Mounir IDRASSI | 16 | -37/+36 | |
2020-01-22 | Linux: correct OpenSUSE build script to indicate that we link against GTK2 ↵ | Mounir IDRASSI | 1 | -2/+2 | |
and not GTK3 | |||||
2020-01-22 | Windows: Fix regression in Expander and Format when RAM encryption is enable ↵ | Mounir IDRASSI | 5 | -2/+217 | |
that was causing volume headers to be corrupted. | |||||
2020-01-21 | Windows: Support notifying WAITFOR.EXE Windows command when VeraCrypt.exe ↵ | Mounir IDRASSI | 1 | -0/+54 | |
exits if /q was specified in CLI. This done using the new switch "/signalExit" who must have a string parameter that must be the same as the one that will be specified for WAITFOR.EXE command. | |||||
2020-01-21 | Windows: Fix failure of Screen Readers (Accessibility support) to reader UI ↵ | Mounir IDRASSI | 5 | -3/+97 | |
by disabling newly introduced memory protection by default and adding a CLI switch (/protectMemory) to enable it when needed. This fixes issue https://github.com/veracrypt/VeraCrypt/issues/536 | |||||
2020-01-21 | Windows: don't display mount/dismount examples in help dialog for command ↵ | Mounir IDRASSI | 1 | -2/+2 | |
line in Format and Expander | |||||
2020-01-20 | Linux/MacOSX: Fix regression that limited the size available for hidden volumes | Mounir IDRASSI | 1 | -1/+1 | |
created on disk or partition. | |||||
2019-12-22 | Increment version to 1.24-Update3 for Linux and update Release NotesVeraCrypt_1.24-Update3 | Mounir IDRASSI | 2 | -4/+4 | |
2019-12-22 | Linux: Modify .deb build scripts to link against statically built wxWidgets ↵ | Mounir IDRASSI | 2 | -7/+29 | |
on Ubuntu 14.04, 12.04 and Debian 8 | |||||
2019-12-21 | Linux: Fix building and packaging console-only version to remove dependency ↵ | Mounir IDRASSI | 2 | -23/+41 | |
on GTK | |||||
2019-12-20 | Fix the compilation against WxWidgets when NOGUI=1 (#570) | Gokturk Yuksek | 3 | -1/+8 | |
* Revert "Linux: Fix failure to run VeraCrypt binary built for console mode on headless machines (fix issue https://github.com/veracrypt/VeraCrypt/issues/531)" The build failure still exists for system wxGTK compiled with '--disable-gui': ``` In file included from TextUserInterface.cpp:27: TextUserInterface.h: In member function ‘virtual bool VeraCrypt::TextUserInterface::Initialize(int&, wxChar**)’: TextUserInterface.h:50:63: error: ‘wxAppBase’ has not been declared 50 | virtual bool Initialize (int &argc, wxChar **argv) { return wxAppBase::Initialize(argc, argv); } ``` This reverts commit 737e1f126b8826ed02418266e590e195aebdd7c0. * Revert "Linux: fix compilation error when building console-only version of VeraCrypt that is statically linked to wxWidgets" The build failure still exists for system wxGTK compiled with '--disable-gui': ``` In file included from TextUserInterface.cpp:27: TextUserInterface.h: In member function ‘virtual bool VeraCrypt::TextUserInterface::Initialize(int&, wxChar**)’: TextUserInterface.h:50:63: error: ‘wxAppBase’ has not been declared 50 | virtual bool Initialize (int &argc, wxChar **argv) { return wxAppBase::Initialize(argc, argv); } ``` This reverts commit 14bee5e6a227701e78c5fec04064c0494f6361f0. * src/Main/Main.make: simplify the WX_CONFIG_LIBS logic Irrespective of whether we are linking against widgets statically or dynamically, pull in only 'base' when GUI is disabled, and 'adv,core,base' when GUI is enabled. When GUI is disabled, the C/CXX flag must include '-DwxUSE_GUI=0' for this to work. * src/Makefile: pass '-DwxUSE_GUI=0' when NOGUI=1 veracrypt with NOGUI=1 fails to properly link against wxGTK compiled with '--disable-gui' only using the 'base' library because the wx's setup.h implicitly defines wxUSE_GUI=1, which then changes the definition of various structures, requiring symbols from the core library as well. For example, wxwidgets include/wx/app.h defines: #if wxUSE_GUI class WXDLLIMPEXP_CORE wxAppBase : public wxAppConsole ... [snip] ... #else // !GUI // wxApp is defined in core and we cannot define another one in wxBase, // so use the preprocessor to allow using wxApp in console programs too #define wxApp wxAppConsole #endif // GUI/!GUI To fix this, pass '-DwxUSE_GUI=0' when compiling veracrypt with NOGUI=1. Closes: https://github.com/veracrypt/VeraCrypt/issues/531 | |||||
2019-12-17 | MacOSX: revert to using wxWidgets 3.1.2 following unexplained crash when ↵VeraCrypt_1.24-Update2 | Mounir IDRASSI | 1 | -2/+2 | |
using wxWidgets 3.1.3 | |||||
2019-12-16 | Linux: Fix build error when linking with old wxWidgets version | Mounir IDRASSI | 1 | -1/+3 | |
2019-12-16 | Update version information in preparation for 1.24-Update2 release | Mounir IDRASSI | 11 | -16/+16 | |
2019-12-16 | Update Format wizard bitmap using submission by Andreas Becker ↵ | Mounir IDRASSI | 1 | -0/+0 | |
(https://github.com/veracrypt/VeraCrypt/issues/9#issuecomment-565833478) | |||||
2019-12-16 | Windows: make /fastCreateFile switch apply to both UI and command line ↵ | Mounir IDRASSI | 1 | -1/+2 | |
creation of file containers | |||||
2019-12-16 | MacOSX: Ensure that the heading bar is always visible when window is moved ↵ | Mounir IDRASSI | 2 | -5/+27 | |
so that it can still be moved by user using mouse (https://github.com/veracrypt/VeraCrypt/issues/546) | |||||
2019-12-16 | MacOSX: Ensure that main window is visible on screen when About is display ↵ | Mounir IDRASSI | 2 | -0/+22 | |
as a way to workaround for situations where UI is not visible or can't be move (for example, when changing display monitor with a different resolution). | |||||
2019-12-16 | MacOSX: fix compilation error caused by missing StringConverter::ToWide ↵ | Mounir IDRASSI | 1 | -1/+1 | |
method that takes a size_t argument (we cast to uint32) | |||||
2019-12-13 | Windows: check "TrueCrypt Mode" in password dialog when mounting a file ↵ | Mounir IDRASSI | 3 | -1/+11 | |
container with .tc extension | |||||
2019-12-12 | Windows: Fix the checkbox for skipping verification of Rescue Disk not ↵ | Mounir IDRASSI | 1 | -0/+1 | |
reflecting the value of /noisocheck switch when specified in VeraCrypt Format command line. | |||||
2019-12-11 | Linux: fix compilation error when building console-only version of VeraCrypt ↵ | Mounir IDRASSI | 2 | -9/+0 | |
that is statically linked to wxWidgets | |||||
2019-12-10 | MacOSX: link against latest wxWidgets version 3.1.3 | Mounir IDRASSI | 1 | -3/+3 | |
2019-12-10 | Increment version to 1.24-Update2 | Mounir IDRASSI | 20 | -38/+38 | |
2019-12-10 | Windows: Align volume size field in Format wizard with other controls | Mounir IDRASSI | 1 | -1/+1 | |
2019-12-10 | Windows: Add switch /FastCreateFile for VeraCrypt Format.exe to speedup ↵ | Mounir IDRASSI | 3 | -2/+34 | |
creation of large file container if quick format is selected. This switch comes with security issues since it will embed existing content on disk into the file container which may expose sensitive content to an attacker who has access to the file container. | |||||
2019-12-09 | Windows Driver: Reduce memory usage of IOCTL_DISK_VERIFY handler. Now we ↵ | Mounir IDRASSI | 1 | -6/+22 | |
reader disk by chunks of at most 64 KiB. Fix https://github.com/veracrypt/VeraCrypt/issues/562. | |||||
2019-12-09 | Fix wrong check on the define CRYPTOPP_BOOL_X64 | Mounir IDRASSI | 1 | -1/+1 | |
2019-12-09 | Windows: Add latest 1.24 EFI bootloader files that are signed by Microsoft ↵ | Mounir IDRASSI | 12 | -0/+0 | |
that come with the following modifications: - Fix F5 showing previous password after failed authentication attempt. Ensure that even wrong password value are cleared from memory. | |||||
2019-12-09 | Linux/MacOSX: use x64 optimized SHA256 implementation instead of limiting it ↵ | Mounir IDRASSI | 1 | -1/+1 | |
to Windows. | |||||
2019-12-09 | Add burn calls for temporary ss variable (#569) | Hanno Böck | 1 | -0/+13 | |
2019-12-09 | Linux: fix NOASM compilation (#563) (#568) | alt3r 3go | 9 | -21/+22 | |
Signed-off-by: alt3r 3go <alt3r.3go@protonmail.com> | |||||
2019-12-08 | Windows: use fix for CVE-2019-19501 only on Vista and above since it doesn't ↵ | Mounir IDRASSI | 1 | -1/+2 | |
make sens under XP. | |||||
2019-12-08 | Windows: enhancements to the mechanism preserving file timestamps, ↵ | Mounir IDRASSI | 8 | -78/+138 | |
especially for keyfiles. | |||||
2019-12-08 | Windows: Add missing defines in Tcdefs.h | Mounir IDRASSI | 1 | -0/+9 | |
2019-12-05 | Make sure password gets deleted in case of exception in ↵ | Hanno Böck | 1 | -0/+1 | |
CoreUnix::MountVolume (#565) | |||||
2019-12-05 | Windows: Modify memory process protection when running with admin privileges ↵ | Mounir IDRASSI | 1 | -1/+12 | |
to allow calling functions needed for CVE-2019-19501 fix while still protecting against memory access by non-admin processes. | |||||
2019-12-05 | Windows: Enhancement to the fix for CVE-2019-19501 | Mounir IDRASSI | 1 | -3/+6 | |
2019-12-03 | Windows: Fix possible local privilege escalation vulnerability during ↵ | Mounir IDRASSI | 3 | -22/+232 | |
execution of VeraCrypt Expander (CVE-2019-19501) | |||||
2019-12-02 | fixed typo "this [is (#559) | vstoykovbg | 1 | -1/+1 | |
2019-12-01 | UNIX: make sector size mismatch error more verbose (#552) (#561) | alt3r 3go | 4 | -2/+8 | |
Signed-off-by: alt3r 3go <alt3r.3go@protonmail.com> | |||||
2019-11-28 | Windows: Don't write extra 0x00 byte at the end of DcsProp file when ↵ | Mounir IDRASSI | 1 | -3/+4 | |
modifying it through UI |