diff --git a/_sign.cmd b/_sign.cmd index 038cf346..bd53a8e4 100644 --- a/_sign.cmd +++ b/_sign.cmd @@ -1,6 +1,6 @@ :retry @set /p password=Please enter PFX password: -@"C:\Program Files (x86)\Windows Kits\8.1\bin\x64\signtool" sign /v /fd SHA256 /f D:\Secured\akeo\akeo.p12 /p %password% /tr http://timestamp.comodoca.com/rfc3161 %1 %2 %3 %4 +@"C:\Program Files (x86)\Windows Kits\8.1\bin\x64\signtool" sign /v /fd SHA256 /f D:\Secured\akeo\akeo.p12 /p %password% /tr http://timestamp.comodoca.com/rfc3161 /td SHA256 %1 %2 %3 %4 @if ERRORLEVEL 1 goto retry @set password= @exit diff --git a/src/rufus.rc b/src/rufus.rc index 1d7835b3..7d6be2bf 100644 --- a/src/rufus.rc +++ b/src/rufus.rc @@ -32,7 +32,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 -CAPTION "Rufus 2.7.827" +CAPTION "Rufus 2.7.828" FONT 8, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Device",IDS_DEVICE_TXT,9,6,200,8 @@ -319,8 +319,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,7,827,0 - PRODUCTVERSION 2,7,827,0 + FILEVERSION 2,7,828,0 + PRODUCTVERSION 2,7,828,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -337,13 +337,13 @@ BEGIN BEGIN VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "2.7.827" + VALUE "FileVersion", "2.7.828" 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.7.827" + VALUE "ProductVersion", "2.7.828" END END BLOCK "VarFileInfo" diff --git a/src/stdlg.c b/src/stdlg.c index c7f689c5..c9d02a85 100644 --- a/src/stdlg.c +++ b/src/stdlg.c @@ -1671,7 +1671,7 @@ LPCDLGTEMPLATE GetDialogTemplate(int Dialog_ID) // 'Segoe UI'... but Cyrillic won't work with 'Segoe UI Symbol' // If 'Segoe UI Symbol' is available, and we are using Thai, we're done here - if (IsFontAvailable("Segoe UI Symbol") && (selected_locale != 0) + if (IsFontAvailable("Segoe UI Symbol") && (selected_locale != NULL) && (safe_strcmp(selected_locale->txt[0], "th-TH") == 0)) return rcTemplate;