Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-22 | Increment version to 1.24-Update3 for Linux and update Release NotesVeraCrypt_1.24-Update3 | Mounir IDRASSI | 4 | -4/+13 | |
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 | Documentation: Adding information of availability of RAM encryption and that ↵ | Mounir IDRASSI | 3 | -1/+6 | |
in EFI mode we can't encrypt whole disk | |||||
2019-12-16 | Update version information in preparation for 1.24-Update2 release | Mounir IDRASSI | 13 | -17/+17 | |
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 | Documentation: Add entries for /quick and /fastCreateFile CLI switches of ↵ | Mounir IDRASSI | 2 | -1/+9 | |
VeraCrypt Format. | |||||
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-15 | remove extra carriage return from Release Notes | Mounir IDRASSI | 2 | -1/+1 | |
2019-12-13 | Update Release Notes for 1.24-Update2-RC | Mounir IDRASSI | 2 | -0/+66 | |
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 | Documentation: better wording for Rescue Disk page | Mounir IDRASSI | 2 | -8/+8 | |
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 | 59 | -77/+77 | |
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-03 | Documentation: Update Rescue Disk page to include information about EFI ↵ | Mounir IDRASSI | 2 | -18/+18 | |
Rescue Disk and not only MBR legacy one. | |||||
2019-12-02 | fixed typo "this [is (#559) | vstoykovbg | 1 | -1/+1 | |
2019-12-01 | Documentation: Add a note in "Favorite Volumes" section referring to issues ↵ | Mounir IDRASSI | 1 | -1/+4 | |
caused by Windows "Fast Startup" | |||||
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 | |||||
2019-11-27 | Windows: compatibility with multi-OS boot configuration by only setting ↵ | Mounir IDRASSI | 3 | -9/+38 | |
VeraCrypt as first bootloader of the system if the current first bootloader is Windows one. | |||||
2019-11-27 | Windows: Don't restore MBR to VeraCrypt value if it is coming from a loader ↵ | Mounir IDRASSI | 1 | -2/+25 | |
different from us or different from Microsoft one. | |||||
2019-11-22 | Windows: Add new registry flags for SystemFavoritesService to control ↵ | Mounir IDRASSI | 3 | -23/+46 | |
updating of EFI BIOS boot menu on shutdown. This will help better manage multi-boot scenarios where we should not mess up with boot order (e.g. grub2 case) | |||||
2019-11-22 | 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 "ActionFailed" not working and add "ActionCancelled" to customize handling of user hitting ESC on password prompt | |||||
2019-11-18 | Linux: Fix failure to run VeraCrypt binary built for console mode on ↵ | Mounir IDRASSI | 1 | -2/+0 | |
headless machines (fix issue https://github.com/veracrypt/VeraCrypt/issues/531) | |||||
2019-11-17 | Linux/MacOS: text mode did not recognize Unicode in passwords (#540) (#551) | alt3r 3go | 1 | -1/+3 | |
2019-11-15 | Debug build: fix ParameterIncorrect error on hash benchmark start (#542) (#544) | alt3r 3go | 1 | -1/+1 | |
2019-11-13 | XML Languages files: Update Finnish translations contributed by Matti Ruhanen. | Mounir IDRASSI | 1 | -53/+53 | |