mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[dev] add exception for Intenso Speed Line flash drives
* This flash drive seems to declare itself as FIXED which resulted in a +1 score
This commit is contained in:
parent
07497fc231
commit
2e530d5ce7
3 changed files with 10 additions and 8 deletions
|
@ -149,9 +149,9 @@ static __inline BOOL IsRemovable(const char* buffer)
|
|||
/* For debugging user reports of HDDs vs UFDs */
|
||||
//#define FORCED_DEVICE
|
||||
#ifdef FORCED_DEVICE
|
||||
#define FORCED_VID 0x0BC2
|
||||
#define FORCED_PID 0x3312
|
||||
#define FORCED_NAME "Innostor Innostor USB Device"
|
||||
#define FORCED_VID 0x1F75
|
||||
#define FORCED_PID 0x0917
|
||||
#define FORCED_NAME "Intenso Speed Line USB Device"
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
@ -273,4 +273,6 @@ static vidpid_score_t vidpid_score[] = {
|
|||
{ 0x18a5, 0x0302, -20 },
|
||||
{ 0x18a5, 0x0304, -20 },
|
||||
{ 0x18a5, 0x3327, -20 },
|
||||
// More Innostor
|
||||
{ 0x1f75, 0x0917, -10 }, // Intenso Speed Line USB Device
|
||||
};
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 242, 376
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_ACCEPTFILES
|
||||
CAPTION "Rufus 2.10.946"
|
||||
CAPTION "Rufus 2.10.947"
|
||||
FONT 8, "Segoe UI Symbol", 400, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Device",IDS_DEVICE_TXT,9,6,200,8
|
||||
|
@ -320,8 +320,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,10,946,0
|
||||
PRODUCTVERSION 2,10,946,0
|
||||
FILEVERSION 2,10,947,0
|
||||
PRODUCTVERSION 2,10,947,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -338,13 +338,13 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "2.10.946"
|
||||
VALUE "FileVersion", "2.10.947"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2016 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||
VALUE "OriginalFilename", "rufus.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "2.10.946"
|
||||
VALUE "ProductVersion", "2.10.947"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue