mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 05:03:33 +01:00
Increment internal version to 1.24.20 and update release notes
This commit is contained in:
parent
587e6db4f1
commit
699a0a3ca5
Binary file not shown.
@ -39,12 +39,13 @@ <h1>Release Notes</h1>
|
||||
<strong>Note to users who created volumes with 1.17 version of VeraCrypt or earlier: </strong><br/>
|
||||
<span style="color:#ff0000;">To avoid hinting whether your volumes contain a hidden volume or not, or if you depend on plausible deniability when using hidden volumes/OS, then you must recreate both the outer and hidden volumes including system encryption and hidden OS, discarding existing volumes created prior to 1.18a version of VeraCrypt.</span></li>
|
||||
</p>
|
||||
<p><strong style="text-align:left">1.24-Update7</strong>(July 6<sup>th</sup>, 2020):</p>
|
||||
<p><strong style="text-align:left">1.24-Update7</strong>(July 22<sup>nd</sup>, 2020):</p>
|
||||
<ul>
|
||||
<li><strong>All OSes:</strong>
|
||||
<ul>
|
||||
<li>Don't allow Hidden volume to have the same password, PIM and keyfiles as Outer volume</li>
|
||||
<li>Fix random crash in 32-bit builds when using Streebog.</li>
|
||||
<li>Enable FIPS mode in JitterEntropy random generator.</li>
|
||||
<li>Minor code cleanup</li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -58,6 +59,9 @@ <h1>Release Notes</h1>
|
||||
<li>Use native Windows format program to perform formatting of volume since it is more reliable and only fallback to FormatEx function from fmifs.dll in case of issue.</li>
|
||||
<li>Don't use API for Processor Groups support if there is only 1 CPU group in the system. This can fix slowness issue observed on some PCs with AMD CPUs.</li>
|
||||
<li>Don't allow to encrypt the system drive if it is already encrypted by BitLocker.</li>
|
||||
<li>Implement detection of Hibernate and Fast Startup and disable them if RAM encryption is activated.</li>
|
||||
<li>Warn about Fast Startup if it is enabled during VeraCrypt installation/upgrade, when starting system encryption or when creating a volume, and propose to disable it.</li>
|
||||
<li>Add UI options to control the behavior of automatic bootloader fixing when System Encryption used.</li>
|
||||
<li>Update translations.</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -12,7 +12,7 @@ endif()
|
||||
|
||||
# - Set version of the package
|
||||
set( FULL_VERSION "1.24-Update7" )
|
||||
set( VERSION "1.24.19" )
|
||||
set( VERSION "1.24.20" )
|
||||
set( RELEASE "1" )
|
||||
|
||||
# - Set PROJECT_NAME and CONFLICT_PACKAGE values
|
||||
|
@ -74,7 +74,7 @@
|
||||
<string>TRUE</string>
|
||||
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.24.19</string>
|
||||
<string>1.24.20</string>
|
||||
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>_VERSION_</string>
|
||||
|
@ -74,7 +74,7 @@
|
||||
<string>TRUE</string>
|
||||
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.24.19</string>
|
||||
<string>1.24.20</string>
|
||||
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>_VERSION_</string>
|
||||
|
@ -67,7 +67,7 @@ extern unsigned short _rotl16(unsigned short value, unsigned char shift);
|
||||
#define VERSION_NUM 0x0124
|
||||
|
||||
// Release date
|
||||
#define TC_STR_RELEASE_DATE L"July 6, 2020"
|
||||
#define TC_STR_RELEASE_DATE L"July 22, 2020"
|
||||
#define TC_RELEASE_DATE_YEAR 2020
|
||||
#define TC_RELEASE_DATE_MONTH 7
|
||||
|
||||
|
@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -193,8 +193,8 @@ IDR_MOUNT_RSRC_HEADER HEADER "resource.h"
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -559,8 +559,8 @@ END
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
Binary file not shown.
Binary file not shown.
@ -10,7 +10,7 @@ signature = "$Windows NT$"
|
||||
Class = "Encryption" ;This is determined by the work this filter driver does
|
||||
ClassGuid = {a0a701c0-a511-42ff-aa6c-06dc0395576f} ;This value is determined by the Class
|
||||
Provider = %ProviderString%
|
||||
DriverVer = 07/02/2020,1.24.19.0
|
||||
DriverVer = 07/22/2020,1.24.20.0
|
||||
CatalogFile = veracrypt.cat
|
||||
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
@ -555,7 +555,7 @@
|
||||
<key>USE_HFS+_COMPRESSION</key>
|
||||
<false/>
|
||||
<key>VERSION</key>
|
||||
<string>1.24.19</string>
|
||||
<string>1.24.20</string>
|
||||
</dict>
|
||||
<key>TYPE</key>
|
||||
<integer>0</integer>
|
||||
|
@ -555,7 +555,7 @@
|
||||
<key>USE_HFS+_COMPRESSION</key>
|
||||
<false/>
|
||||
<key>VERSION</key>
|
||||
<string>1.24.19</string>
|
||||
<string>1.24.20</string>
|
||||
</dict>
|
||||
<key>TYPE</key>
|
||||
<integer>0</integer>
|
||||
|
@ -26,8 +26,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,24,19,0
|
||||
PRODUCTVERSION 1,24,19,0
|
||||
FILEVERSION 1,24,20,0
|
||||
PRODUCTVERSION 1,24,20,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
Loading…
Reference in New Issue
Block a user