mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[misc] also use SHA-256 for timestamping
* This should ensure that we are SHA-256 everywhere now
This commit is contained in:
parent
a952221a9b
commit
48219af36a
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
:retry
|
:retry
|
||||||
@set /p password=Please enter PFX password:
|
@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
|
@if ERRORLEVEL 1 goto retry
|
||||||
@set password=
|
@set password=
|
||||||
@exit
|
@exit
|
||||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -32,7 +32,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
|
||||||
CAPTION "Rufus 2.7.827"
|
CAPTION "Rufus 2.7.828"
|
||||||
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
|
||||||
|
@ -319,8 +319,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 2,7,827,0
|
FILEVERSION 2,7,828,0
|
||||||
PRODUCTVERSION 2,7,827,0
|
PRODUCTVERSION 2,7,828,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -337,13 +337,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.7.827"
|
VALUE "FileVersion", "2.7.828"
|
||||||
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.7.827"
|
VALUE "ProductVersion", "2.7.828"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -1671,7 +1671,7 @@ LPCDLGTEMPLATE GetDialogTemplate(int Dialog_ID)
|
||||||
// 'Segoe UI'... but Cyrillic won't work with 'Segoe UI Symbol'
|
// '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 '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))
|
&& (safe_strcmp(selected_locale->txt[0], "th-TH") == 0))
|
||||||
return rcTemplate;
|
return rcTemplate;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue