Age | Commit message (Collapse) | Author | Files | Lines |
|
libcurl support must be explicitely disabled
GKT2 must be explicitely set as defaut in VeraCrypt Makefile since
wxWidgets 3.2.2.1 uses GKT3 as default
|
|
Changes to be able to build latest wxWidgets stable 3.2.2.1.
Removed in 3.1.5, needs to be removed.
--disable-webkit
Added in 3.1.0, needs to be added.
--disable-addremovectrl
|
|
|
|
|
|
Currently if you fail the privilege escalation prompt, the second
one and consecutively every second will be ignored. This is because
if we do not --use-dummy-sudo-password and are on Linux/FreeBSD,
we will be prompted for password twice for one evaluation in the
while(!ElevatedServiceAvailable) loop.
For the fix, we make sure that we run the prompt only once for each
case.
|
|
|
|
for commit 5e4e2e0483436031edfd525215110f6229ac406d
|
|
|
|
|
|
|
|
|
|
|
|
"-R" switch was missing from the "cp" command
|
|
- Translation completed
|
|
|
|
|
|
on large volumes (relates to #1063)
We replace absolute file pointer moving by relative moving with respect to current position. This was implemented as a workaround to address the performance issues related to in-place encryption. When using SetFilePointerEx() with FILE_BEGIN as the reference point, reaching the end of large drives during in-place encryption can cause significant slowdowns. By moving the file pointer relatively, these performance issues are mitigated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Currently on a system without xterm or konsole (like fresh
Ubuntu install) the fsck check will not launch. Added
gnome-terminal as an alternative and fixed an issue where
konsole will always error out as --title and --caption are
no longer valid arguments.
Previously the error message was simply "xterm not found", so
new LangString LINUX_EX2MSG_TERMINALNOTFOUND was added to let the
user knows which programs they need to get the feature working.
|
|
|
|
* Update Corsican translation on 2023-05
* Update Corsican translation on 2023-05
|
|
|
|
This didn't cause any issue because SHA256_DIGESTSIZE is equal to
BLAKE2S_DIGESTSIZE
|
|
Removes the options exFAT and Btrfs being shown when creating a
volume in text mode when the system does not support them and will
end up erroring out at the end. Hide Btrfs option when the volume
is too small, as we will anyways fail right after.
Hardcoded numbering changed to dynamic as the available options
are not necessarily consecutive.
|
|
implementation
|
|
The lack of explicit hash initialization was causing issue with Blake2s
because it doesn't allow further processing once a digest value was
returned.
Other hash algorithms don't have this restriction.
Not we explicitely initialize all hash algorithms which is the correct
way to do things.
|
|
|
|
project configuration
|
|
|
|
* Update Language.nl.xml
Add new translations, update/edit some existing translations
* Update Language.nl.xml
* Update Language.nl.xml
|
|
- New translations for commit https://github.com/veracrypt/VeraCrypt/commit/8072207eb6ad0783a4e2c54addc4b3196738029e
- Fix the wrong part
|
|
* Update README.md
Update Copyright.
* Update README.md
Updated The zlib copyright.
* Revert "Update README.md"
This reverts commit be0742d8d1db0f1f25a7e5207fbb47e2a2ce8157.
|
|
* Libzip 1.9.2
Updated Libzip to latest version 1.9.2 and changed version number in the config.h from 1.7.3 to 1.9.2. Not sure if anything else needs to be tweaked :)
* Modified Libzip to work with Visual studio
* Update README.md
Update libzip copyright.
* Added the missing files.
I've added the missing files zipconf.h and config.h, I've missed those sorry for that!
|
|
No parent directory specified in the path, we assume current directory
We first check if parent directory exists before checking its free space
using wxgetDiskSpace
Based on idea proposed by @bogdro in PR#1025
|
|
|
|
Co-authored-by: Bogdan Drozdowski <>
|
|
commit
|
|
don't exist anymore after revert of sysenc commit
|
|
* Solve conflicts, and apply PR #817
Co-authored-by: lifansama <lifansama@users.noreply.github.com>
* Update Language.zh-cn.xml
translation for commit 8072207
---------
Co-authored-by: lifansama <lifansama@users.noreply.github.com>
|
|
|
|
* Update Language.zh-cn.xml
For commit c0ff7a7c521b1d658316d9a177383ab0c403007a and pull #957
* Optimize the use of quotation marks
use Chinese standardized quotation marks (“”) instead of unusual white lenticular bracket (〖〗)
* Unified the translation of RESCUE_DISK
* Optimize the use of quotation marks
use Chinese standardized quotation marks (“”) to replace other unusual usage of non-standardized quotation marks
* improve "SYSENC_INFO_2" translation
thanks to @ZhanYF in https://github.com/veracrypt/VeraCrypt/pull/961#pullrequestreview-1190980437
* improve "IDC_LINK_HASH_INFO" translation
thanks to @ZhanYF in veracrypt#961 (review)
* Update Language.zh-cn.xml
-unified the translation of "hash"
-improve "DECOY_OS_INSTRUCTIONS_PORTION_10" translation
|
|
|
|
|
|
|
|
* Removal of any of the any of `wxALIGN_RIGHT`/`wxALIGN_CENTRE_HORIZONTAL`/`wxALIGN_BOTTOM`/`wxALIGN_CENTRE_VERTICAL` when used in conjunction with `wxEXPAND`
wxWidget has an "assert" that gets triggered anytime `wxEXPAND` gets used with an alignment property (useless override). This leads to a popup backtrace everytime a non-compliant widget is opened.
* Removal of missed `wxALIGN_RIGHT`/`wxALIGN_CENTRE_HORIZONTAL`/`wxALIGN_BOTTOM`/`wxALIGN_CENTRE_VERTICAL` when used in conjunction with `wxEXPAND`
* Removed property 'label' for wxMenuBar as no longer used (wxFormBuilder)
* Removed redundant 'wxALIGN_RIGHT' for the "OK" button in the preference panel (there is a spacer already in-place that pushes the buttons to the right)
* Removed redundant 'wxALIGN_RIGHT' for items in the wizard panel's (`WizardFrameBase`) button bar and added width spacing for the 2 spacers between the buttons to make up for the change.
* Changed constructor signature for the `WizardPage` and all subclasses
The addition of the wxString 'name' arg brings it inline with the new wxFromBuilder v3.10.1 output so that editing+generating the forms from it won't brake the build now.
* Removed remaining redundant 'wxALIGN_*' that were paired with 'wxEXPAND'.
* Added missing default flags to wxFileName::Normalize(..) method
The old empty initialization which was fine up to v2.8.12 of wxWidget gives off a compile warning. Since the default `wxPATH_NORM_ALL` is now depreciated (v3.x) the equivalent individual flags must be explicitly given.
* Changed spaces to tabs to bring last commit inline with the rest of the src code
|