Skip to content

Commit 0e14725

Browse files
committed
Rufus 4.0 (Build 2035)
* Also make sure we only upload the x86_64 MinGW binary to VirusTotal since the x86_32 will conflict with the MSVC one.
1 parent 18645c9 commit 0e14725

File tree

8 files changed

+92
-68
lines changed

8 files changed

+92
-68
lines changed

.github/workflows/mingw.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: sha256sum ./${{ matrix.exe }}
8585

8686
- name: Upload to VirusTotal
87-
if: ${{ github.event_name == 'push' }}
87+
if: ${{ github.event_name == 'push' && matrix.env == 'x86_64' }}
8888
continue-on-error: true
8989
run: |
9090
curl --request POST --url https://www.virustotal.com/vtapi/v2/file/scan --form apikey=${{ secrets.VIRUSTOTAL_API_KEY }} --form file=@./${{ matrix.exe }}

ChangeLog.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
o Version 4.0 (2023.04.26)
2+
Fix persistence partition not working with Ubuntu 23.04
3+
Fix out of range pointer error with Ubuntu 23.04 when booting in BIOS mode
4+
Fix boot freeze with Ubuntu Studio when Secure Boot is enabled
5+
Fix incorrect architecture detection when checking for updates
6+
Fix a Windows Store application crash when processing GRUB bootloaders
7+
Fix a Windows Store application crash when enumerating processes that contain a % sign
8+
Fix a Windows Store application crash when using the German localization
9+
Note that the major version was bumped on account of:
10+
- New versions of Rufus requiring Windows 8 or later
11+
- New versions of Rufus defaulting to a 64-bit executable
12+
- Old versions of Rufus potentially not being able to update properly
13+
114
o Version 3.22 (2023.03.25)
215
Add SHA-1 and SHA-256 x86 acceleration on CPUs that support it (courtesy of Jeffrey Walton)
316
Add an option to disable BitLocker device encryption in the Windows User Experience dialog
6.4 KB
Loading
2.17 KB
Loading
821 Bytes
Loading
7.92 KB
Loading

res/appstore/listing/listing.csv

+73-62
Large diffs are not rendered by default.

src/rufus.rc

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
3333
IDD_DIALOG DIALOGEX 12, 12, 232, 326
3434
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
3535
EXSTYLE WS_EX_ACCEPTFILES
36-
CAPTION "Rufus 4.0.2034"
36+
CAPTION "Rufus 4.0.2035"
3737
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
3838
BEGIN
3939
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
@@ -392,8 +392,8 @@ END
392392
//
393393

394394
VS_VERSION_INFO VERSIONINFO
395-
FILEVERSION 4,0,2034,0
396-
PRODUCTVERSION 4,0,2034,0
395+
FILEVERSION 4,0,2035,0
396+
PRODUCTVERSION 4,0,2035,0
397397
FILEFLAGSMASK 0x3fL
398398
#ifdef _DEBUG
399399
FILEFLAGS 0x1L
@@ -411,13 +411,13 @@ BEGIN
411411
VALUE "Comments", "https://rufus.ie"
412412
VALUE "CompanyName", "Akeo Consulting"
413413
VALUE "FileDescription", "Rufus"
414-
VALUE "FileVersion", "4.0.2034"
414+
VALUE "FileVersion", "4.0.2035"
415415
VALUE "InternalName", "Rufus"
416416
VALUE "LegalCopyright", "© 2011-2023 Pete Batard (GPL v3)"
417417
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
418418
VALUE "OriginalFilename", "rufus-4.0.exe"
419419
VALUE "ProductName", "Rufus"
420-
VALUE "ProductVersion", "4.0.2034"
420+
VALUE "ProductVersion", "4.0.2035"
421421
END
422422
END
423423
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)