mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	v2.10 (build 973)
* Also fix an indentation warning from gcc 6.1
This commit is contained in:
		
							parent
							
								
									dcb0d561d5
								
							
						
					
					
						commit
						b32c7149eb
					
				
					 4 changed files with 13 additions and 12 deletions
				
			
		|  | @ -1,6 +1,7 @@ | ||||||
| o Version 2.10 (2016.07.??) | o Version 2.10 (2016.07.20) | ||||||
|     Add SHA-256 validation for downloaded files. You will now see an ✓ or ✗ in the log for relevant content |     Add SHA-256 validation for downloaded files. You will now see an ✓ or ✗ in the log for relevant content | ||||||
|     Add support for O2Micro PCI-E card readers |     Add support for O2Micro PCI-E card readers | ||||||
|  |     Add compressed NTFS support for UEFI:NTFS | ||||||
|     Improve automatic closure of the Windows default format prompt |     Improve automatic closure of the Windows default format prompt | ||||||
|     Improve support for Ubuntu (silence a benign warning), Springdale (use the actual label) and Antergos (Syslinux version detection) |     Improve support for Ubuntu (silence a benign warning), Springdale (use the actual label) and Antergos (Syslinux version detection) | ||||||
|     Work around a Windows bug that can render a GPT disk inaccessible after cleanup (e.g. ChromeOS image) |     Work around a Windows bug that can render a GPT disk inaccessible after cleanup (e.g. ChromeOS image) | ||||||
|  |  | ||||||
|  | @ -3,14 +3,14 @@ Rufus for NTFS UEFI boot support. See https://github.com/pbatard/uefi-ntfs. | ||||||
| 
 | 
 | ||||||
| This image, which you can mount as FAT filesystem or open in 7-zip, contains | This image, which you can mount as FAT filesystem or open in 7-zip, contains | ||||||
| the following data: | the following data: | ||||||
| o The NTFS UEFI drivers from efifs (https://github.com/pbatard/efifs) which were | o The NTFS UEFI drivers from efifs (https://github.com/pbatard/efifs). | ||||||
|   compiled, with compression disabled, using Visual Studio 2015 Community Edition. |   These are the \EFI\Rufus\ntfs_[ia32|x64|arm].efi files, which are binary | ||||||
|   These are the \EFI\Rufus\ntfs_[ia32|x64|arm].efi files. |   identical to the ones found at http://efi.akeo.ie | ||||||
| o The UEFI:NTFS binaries (https://github.com/pbatard/uefi-ntfs), which were also | o The UEFI:NTFS binaries (https://github.com/pbatard/uefi-ntfs), which were also | ||||||
|   compiled using Visual Studio 2015 Community Edition. |   compiled using Visual Studio 2015 Community Edition (with Clang/C2). | ||||||
|   These are the \EFI\Boot\boot[ia32|x64|arm].efi files. |   These are the \EFI\Boot\boot[ia32|x64|arm].efi files. | ||||||
| 
 | 
 | ||||||
| The FAT partition was created on Debian GNU/Linux using the following commands | The FAT partition was created on Debian GNU/Linux using the following commands | ||||||
|   dd if=/dev/zero of=uefi-ntfs.img bs=512 count=1024 |   dd if=/dev/zero of=uefi-ntfs.img bs=512 count=512 | ||||||
|   mkfs.vfat -n UEFI_NTFS uefi-ntfs.img |   mkfs.vfat -n UEFI_NTFS uefi-ntfs.img | ||||||
| and then mounting the uefi-ntfs.img image and copying the relevant files. | and then mounting the uefi-ntfs.img image and copying the relevant files. | ||||||
|  |  | ||||||
							
								
								
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||||||
| IDD_DIALOG DIALOGEX 12, 12, 242, 376 | IDD_DIALOG DIALOGEX 12, 12, 242, 376 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| EXSTYLE WS_EX_ACCEPTFILES | EXSTYLE WS_EX_ACCEPTFILES | ||||||
| CAPTION "Rufus 2.10.972" | CAPTION "Rufus 2.10.973" | ||||||
| FONT 8, "Segoe UI Symbol", 400, 0, 0x0 | FONT 8, "Segoe UI Symbol", 400, 0, 0x0 | ||||||
| BEGIN | BEGIN | ||||||
|     LTEXT           "Device",IDS_DEVICE_TXT,9,6,200,8 |     LTEXT           "Device",IDS_DEVICE_TXT,9,6,200,8 | ||||||
|  | @ -320,8 +320,8 @@ END | ||||||
| // | // | ||||||
| 
 | 
 | ||||||
| VS_VERSION_INFO VERSIONINFO | VS_VERSION_INFO VERSIONINFO | ||||||
|  FILEVERSION 2,10,972,0 |  FILEVERSION 2,10,973,0 | ||||||
|  PRODUCTVERSION 2,10,972,0 |  PRODUCTVERSION 2,10,973,0 | ||||||
|  FILEFLAGSMASK 0x3fL |  FILEFLAGSMASK 0x3fL | ||||||
| #ifdef _DEBUG | #ifdef _DEBUG | ||||||
|  FILEFLAGS 0x1L |  FILEFLAGS 0x1L | ||||||
|  | @ -338,13 +338,13 @@ BEGIN | ||||||
|         BEGIN |         BEGIN | ||||||
|             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" |             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" | ||||||
|             VALUE "FileDescription", "Rufus" |             VALUE "FileDescription", "Rufus" | ||||||
|             VALUE "FileVersion", "2.10.972" |             VALUE "FileVersion", "2.10.973" | ||||||
|             VALUE "InternalName", "Rufus" |             VALUE "InternalName", "Rufus" | ||||||
|             VALUE "LegalCopyright", "© 2011-2016 Pete Batard (GPL v3)" |             VALUE "LegalCopyright", "© 2011-2016 Pete Batard (GPL v3)" | ||||||
|             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" |             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" | ||||||
|             VALUE "OriginalFilename", "rufus.exe" |             VALUE "OriginalFilename", "rufus.exe" | ||||||
|             VALUE "ProductName", "Rufus" |             VALUE "ProductName", "Rufus" | ||||||
|             VALUE "ProductVersion", "2.10.972" |             VALUE "ProductVersion", "2.10.973" | ||||||
|         END |         END | ||||||
|     END |     END | ||||||
|     BLOCK "VarFileInfo" |     BLOCK "VarFileInfo" | ||||||
|  |  | ||||||
|  | @ -92,7 +92,7 @@ libfat_open(int (*readfunc) (intptr_t, void *, size_t, libfat_sector_t), | ||||||
|     } else |     } else | ||||||
| 	goto barf;		/* Impossibly many clusters */ | 	goto barf;		/* Impossibly many clusters */ | ||||||
| 
 | 
 | ||||||
| 	minfatsize = (minfatsize + LIBFAT_SECTOR_SIZE - 1) >> LIBFAT_SECTOR_SHIFT; |     minfatsize = (minfatsize + LIBFAT_SECTOR_SIZE - 1) >> LIBFAT_SECTOR_SHIFT; | ||||||
| 
 | 
 | ||||||
|     if (minfatsize > fatsize) |     if (minfatsize > fatsize) | ||||||
| 	goto barf;		/* The FATs don't fit */ | 	goto barf;		/* The FATs don't fit */ | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue