mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	[net] switch to SSL and use https://rufus.ie as our main domain
This commit is contained in:
		
							parent
							
								
									fbe47c1abd
								
							
						
					
					
						commit
						e6d8f25bf1
					
				
					 3 changed files with 9 additions and 10 deletions
				
			
		|  | @ -404,7 +404,7 @@ static DWORD WINAPI CheckForUpdatesThread(LPVOID param) | ||||||
| { | { | ||||||
| 	BOOL releases_only, found_new_version = FALSE; | 	BOOL releases_only, found_new_version = FALSE; | ||||||
| 	int status = 0; | 	int status = 0; | ||||||
| 	const char* server_url = RUFUS_NO_SSL_URL "/"; | 	const char* server_url = RUFUS_URL "/"; | ||||||
| 	int i, j, k, max_channel, verbose = 0, verpos[4]; | 	int i, j, k, max_channel, verbose = 0, verpos[4]; | ||||||
| 	static const char* archname[] = {"win_x86", "win_x64"}; | 	static const char* archname[] = {"win_x86", "win_x64"}; | ||||||
| 	static const char* channel[] = {"release", "beta", "test"};		// release channel
 | 	static const char* channel[] = {"release", "beta", "test"};		// release channel
 | ||||||
|  |  | ||||||
|  | @ -72,10 +72,9 @@ | ||||||
| #define FAT32_CLUSTER_THRESHOLD     1.011f		// For FAT32, cluster size changes don't occur at power of 2 boundaries but sligthly above
 | #define FAT32_CLUSTER_THRESHOLD     1.011f		// For FAT32, cluster size changes don't occur at power of 2 boundaries but sligthly above
 | ||||||
| #define DD_BUFFER_SIZE              65536		// Minimum size of the buffer we use for DD operations
 | #define DD_BUFFER_SIZE              65536		// Minimum size of the buffer we use for DD operations
 | ||||||
| #define UBUFFER_SIZE                2048 | #define UBUFFER_SIZE                2048 | ||||||
| #define RUFUS_URL                   "https://rufus.akeo.ie"
 | #define RUFUS_URL                   "https://rufus.ie"
 | ||||||
| #define RUFUS_NO_SSL_URL            "http://rufus.akeo.ie"	// Stupid XP can't handle a recent SSL implementation...
 | #define DOWNLOAD_URL                RUFUS_URL "/downloads" | ||||||
| #define DOWNLOAD_URL                RUFUS_NO_SSL_URL "/downloads" | #define FILES_URL                   RUFUS_URL "/files" | ||||||
| #define FILES_URL                   RUFUS_NO_SSL_URL "/files" |  | ||||||
| #define SEVENZIP_URL                "http://www.7-zip.org"
 | #define SEVENZIP_URL                "http://www.7-zip.org"
 | ||||||
| #define FILES_DIR                   "rufus_files" | #define FILES_DIR                   "rufus_files" | ||||||
| #define IGNORE_RETVAL(expr)         do { (void)(expr); } while(0) | #define IGNORE_RETVAL(expr)         do { (void)(expr); } while(0) | ||||||
|  |  | ||||||
							
								
								
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||||||
| IDD_DIALOG DIALOGEX 12, 12, 232, 326 | IDD_DIALOG DIALOGEX 12, 12, 232, 326 | ||||||
| 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 3.0.1225" | CAPTION "Rufus 3.0.1226" | ||||||
| FONT 9, "Segoe UI Symbol", 400, 0, 0x0 | FONT 9, "Segoe UI Symbol", 400, 0, 0x0 | ||||||
| BEGIN | BEGIN | ||||||
|     LTEXT           "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP |     LTEXT           "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP | ||||||
|  | @ -371,8 +371,8 @@ END | ||||||
| // | // | ||||||
| 
 | 
 | ||||||
| VS_VERSION_INFO VERSIONINFO | VS_VERSION_INFO VERSIONINFO | ||||||
|  FILEVERSION 2,18,1225,0 |  FILEVERSION 2,18,1226,0 | ||||||
|  PRODUCTVERSION 2,18,1225,0 |  PRODUCTVERSION 2,18,1226,0 | ||||||
|  FILEFLAGSMASK 0x3fL |  FILEFLAGSMASK 0x3fL | ||||||
| #ifdef _DEBUG | #ifdef _DEBUG | ||||||
|  FILEFLAGS 0x1L |  FILEFLAGS 0x1L | ||||||
|  | @ -389,13 +389,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.18.1225" |             VALUE "FileVersion", "2.18.1226" | ||||||
|             VALUE "InternalName", "Rufus" |             VALUE "InternalName", "Rufus" | ||||||
|             VALUE "LegalCopyright", "© 2011-2018 Pete Batard (GPL v3)" |             VALUE "LegalCopyright", "© 2011-2018 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.18.1225" |             VALUE "ProductVersion", "2.18.1226" | ||||||
|         END |         END | ||||||
|     END |     END | ||||||
|     BLOCK "VarFileInfo" |     BLOCK "VarFileInfo" | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue