mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[iso] add versions 9.x for Red Hat derivative exceptions
* Closes #1943
This commit is contained in:
parent
746f91acc7
commit
591bec3cbe
2 changed files with 12 additions and 12 deletions
14
src/rufus.c
14
src/rufus.c
|
@ -1263,13 +1263,13 @@ DWORD WINAPI ImageScanThread(LPVOID param)
|
|||
// where we should apply an inst.stage2 ➔ inst.repo workaround for ISO
|
||||
// mode (per: https://github.com/rhinstaller/anaconda/pull/3529).
|
||||
const char* redhat8_derivative[] = {
|
||||
"^AlmaLinux-8.*", // AlmaLinux 8.x
|
||||
"^Fedora.*-3[3-9].*", // Fedora 33-39
|
||||
"^CentOS.*-8.*", // CentOS and CentOS Stream 8.x
|
||||
"^OL-8.*", // Oracle Linux 8.x
|
||||
"^RHEL-8.*", // Red Hat 8.x
|
||||
"^Rocky-8.*", // Rocky Linux 8.x
|
||||
"^MIRACLE-LINUX-8-.*", // MIRACLE LINUX 8.x
|
||||
"^AlmaLinux-[8-9].*", // AlmaLinux 8.x and 9.x
|
||||
"^Fedora.*-3[3-9].*", // Fedora 33-39
|
||||
"^CentOS.*-[8-9].*", // CentOS and CentOS Stream 8.and 9.x
|
||||
"^OL-[8-9].*", // Oracle Linux 8.x and 9.x
|
||||
"^RHEL-[8-9].*", // Red Hat 8.x and 9.x
|
||||
"^Rocky-[8-9].*", // Rocky Linux 8.x and 9.x
|
||||
"^MIRACLE-LINUX-[8-9].*", // MIRACLE LINUX 8.x and 9.x
|
||||
};
|
||||
int i, len;
|
||||
uint8_t arch;
|
||||
|
|
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.19.1892"
|
||||
CAPTION "Rufus 3.19.1893"
|
||||
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,19,1892,0
|
||||
PRODUCTVERSION 3,19,1892,0
|
||||
FILEVERSION 3,19,1893,0
|
||||
PRODUCTVERSION 3,19,1893,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.19.1892"
|
||||
VALUE "FileVersion", "3.19.1893"
|
||||
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.19.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "3.19.1892"
|
||||
VALUE "ProductVersion", "3.19.1893"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue