mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v3.20 (Build 1929)
* Fix a Coverity warning and lock.yml syntax
This commit is contained in:
parent
fbad63666e
commit
b2bf29f652
5 changed files with 11 additions and 10 deletions
4
.github/workflows/lock.yml
vendored
4
.github/workflows/lock.yml
vendored
|
@ -12,8 +12,8 @@ jobs:
|
|||
- uses: dessant/lock-threads@v3
|
||||
with:
|
||||
github-token: ${{ github.token }}
|
||||
issue-lock-inactive-days: '90'
|
||||
issue-lock-comment: >
|
||||
issue-inactive-days: '90'
|
||||
issue-comment: >
|
||||
This thread has been automatically locked since there has not been
|
||||
any recent activity after it was closed. Please open a new issue
|
||||
if you think you have a related problem or query.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
o Version 3.20 (2022.08.??)
|
||||
o Version 3.20 (2022.08.03)
|
||||
Enable applicable Windows User Experience options for Windows 10
|
||||
Remember last Windows User Experience selection between sessions
|
||||
Add automatic local account creation and regional options duplication
|
||||
|
|
|
@ -21,11 +21,12 @@ Features
|
|||
* Create BIOS or UEFI bootable drives, including [UEFI bootable NTFS](https://github.com/pbatard/uefi-ntfs)
|
||||
* Create bootable drives from bootable ISOs (Windows, Linux, etc.)
|
||||
* Create bootable drives from bootable disk images, including compressed ones
|
||||
* Create Windows 11 installation drives for PCs that don't have TPM
|
||||
* Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot
|
||||
* Create [Windows To Go](https://en.wikipedia.org/wiki/Windows_To_Go) drives
|
||||
* Create persistent Linux partitions
|
||||
* Create VHD/DD images of a drive
|
||||
* Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image
|
||||
* Improve Windows installation experience by automatically setting up OOBE parameters (local account, privacy options, etc.)
|
||||
* Perform bad blocks checks, including detection of "fake" flash drives
|
||||
* Download official Microsoft Windows 7, Windows 8, Windows 10 or Windows 11 retail ISOs
|
||||
* Download [UEFI Shell](https://github.com/pbatard/UEFI-Shell) ISOs
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_ACCEPTFILES
|
||||
CAPTION "Rufus 3.20.1928"
|
||||
CAPTION "Rufus 3.20.1929"
|
||||
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
||||
|
@ -395,8 +395,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 3,20,1928,0
|
||||
PRODUCTVERSION 3,20,1928,0
|
||||
FILEVERSION 3,20,1929,0
|
||||
PRODUCTVERSION 3,20,1929,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -414,13 +414,13 @@ BEGIN
|
|||
VALUE "Comments", "https://rufus.ie"
|
||||
VALUE "CompanyName", "Akeo Consulting"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "3.20.1928"
|
||||
VALUE "FileVersion", "3.20.1929"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2022 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
||||
VALUE "OriginalFilename", "rufus-3.20.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "3.20.1928"
|
||||
VALUE "ProductVersion", "3.20.1929"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -744,7 +744,7 @@ BOOL WimIsValidIndex(const char* image, int index)
|
|||
|
||||
// Zero indexes are invalid
|
||||
if (index == 0)
|
||||
return FALSE;
|
||||
goto out;
|
||||
|
||||
hWim = pfWIMCreateFile(wimage, WIM_GENERIC_READ, WIM_OPEN_EXISTING,
|
||||
(img_report.wininst_version >= SPECIAL_WIM_VERSION) ? WIM_UNDOCUMENTED_BULLSHIT : 0, 0, NULL);
|
||||
|
|
Loading…
Reference in a new issue