mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v3.9 (build 1624)
* Fix endianness detection regression for ARM platforms that was
introduced in [c1613ab7fc
].
This commit is contained in:
parent
121257c584
commit
44385829f6
4 changed files with 10 additions and 10 deletions
|
@ -1,13 +1,13 @@
|
|||
o Version 3.9 (2020.02.??)
|
||||
o Version 3.9 (2020.02.29)
|
||||
Add exFAT support when creating blank UEFI:NTFS drives [EXPERIMENTAL]
|
||||
Fix ext2/ext3 corruption for partitions larger than 4 GB
|
||||
Fix early boot files not being usable on compressed NTFS partitions
|
||||
Fix writing of compressed streams that don't end on sector boundary
|
||||
Fix percent not being displayed on slow format
|
||||
Improve file preallocation and speed up ISO extraction (courtesy of Mattiwatti)
|
||||
Improve ex2/ext3 formatting speed
|
||||
Improve ext2/ext3 formatting speed
|
||||
Improve protective MBR message for GPT partitioned drives
|
||||
Improve reporting on Syslinux/GRUB download errors
|
||||
Improve reporting of Syslinux/GRUB download errors
|
||||
Improve reporting of partition types and of Windows' version
|
||||
Report the usage of UDF symbolic links
|
||||
Update embedded Syslinux to 6.04-pre1
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
for an interesting struggle, when you also happen to have a comma in one of the fields... -->
|
||||
<Identity
|
||||
Name="Rufus"
|
||||
Version="3.9.1580.0"
|
||||
Version="3.9.1624.0"
|
||||
ProcessorArchitecture="@ARCH@"
|
||||
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET=24 Grey Rock, L=Milford, S=Co. Donegal, PostalCode=F92 D667, C=IE' />
|
||||
<Properties>
|
||||
|
|
|
@ -220,7 +220,7 @@ static __inline uint64_t bswap_64(uint64_t x)
|
|||
#elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN
|
||||
# define BB_BIG_ENDIAN 0
|
||||
# define BB_LITTLE_ENDIAN 1
|
||||
#elif defined(__386__) || defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
|
||||
#elif defined(__386__) || defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64) || defined(_M_ARM) || (defined(_M_ARM64))
|
||||
# define BB_BIG_ENDIAN 0
|
||||
# define BB_LITTLE_ENDIAN 1
|
||||
#else
|
||||
|
|
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.9.1623"
|
||||
CAPTION "Rufus 3.9.1624"
|
||||
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,9,1623,0
|
||||
PRODUCTVERSION 3,9,1623,0
|
||||
FILEVERSION 3,9,1624,0
|
||||
PRODUCTVERSION 3,9,1624,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.9.1623"
|
||||
VALUE "FileVersion", "3.9.1624"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
||||
VALUE "OriginalFilename", "rufus-3.9.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "3.9.1623"
|
||||
VALUE "ProductVersion", "3.9.1624"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue