diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index cbbeff6c..f662dfb6 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -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. diff --git a/ChangeLog.txt b/ChangeLog.txt index 146b99a2..b3266f7c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/README.md b/README.md index c174af3c..ff7499f4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/rufus.rc b/src/rufus.rc index 3496684e..c004e4f8 100644 --- a/src/rufus.rc +++ b/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" diff --git a/src/vhd.c b/src/vhd.c index ab41746b..e420c538 100644 --- a/src/vhd.c +++ b/src/vhd.c @@ -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);