mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v3.0 (build 1303)
* Fix a 64-bit compilation warning * Fix appx generation
This commit is contained in:
parent
c3b79a06b7
commit
98ada80b1b
6 changed files with 24 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
|||
o Version 3.0 (2018.??.??)
|
||||
o Version 3.0 (2018.05.29)
|
||||
UI redesign to follow the flow of user operations (with thanks to Fahad Al-Riyami for the concept)
|
||||
Drop XP and Vista platform support
|
||||
Switch all downloads to SSL and use https://rufus.ie as the new base URL
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
for an interesting struggle, when you also happen to have a comma in one of the fields... -->
|
||||
<Identity
|
||||
Name="Rufus"
|
||||
Version="3.0.1213.0"
|
||||
Version="3.0.1303.0"
|
||||
ProcessorArchitecture="x86"
|
||||
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET="24, Grey Rock", L=Milford, S=Co Donegal, PostalCode=Co Donegal, C=IE' />
|
||||
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET=24 Grey Rock, L=Milford, S=Co. Donegal, PostalCode=F92 D667, C=IE' />
|
||||
<Properties>
|
||||
<DisplayName>Rufus</DisplayName>
|
||||
<PublisherDisplayName>Akeo Consulting</PublisherDisplayName>
|
||||
|
|
|
@ -8,10 +8,10 @@ del /q *.appx >NUL 2>&1
|
|||
rem As per the link below, you need "altform-unplated" icons and run MakePri to get transparent icons:
|
||||
rem https://social.msdn.microsoft.com/Forums/windowsapps/en-US/dc505f68-d120-43e3-a9e1-d7c77746d588/uwpdesktop-bridgeunplated-taskbar-icons-in-desktop-bridge-apps
|
||||
mkdir Assets >NUL 2>&1
|
||||
copy "..\icon-set\rufus-44.png" "Assets\Square44x44Logo.png"
|
||||
copy "..\icon-set\rufus-48.png" "Assets\Square44x44Logo.targetsize-48.png"
|
||||
copy "..\icon-set\rufus-48.png" "Assets\Square44x44Logo.targetsize-48_altform-unplated.png"
|
||||
copy "..\icon-set\rufus-150.png" "Assets\Square150x150Logo.png"
|
||||
copy "..\icons\rufus-44.png" "Assets\Square44x44Logo.png"
|
||||
copy "..\icons\rufus-48.png" "Assets\Square44x44Logo.targetsize-48.png"
|
||||
copy "..\icons\rufus-48.png" "Assets\Square44x44Logo.targetsize-48_altform-unplated.png"
|
||||
copy "..\icons\rufus-150.png" "Assets\Square150x150Logo.png"
|
||||
copy "..\..\rufus-%VERSION%.exe" "rufus.exe"
|
||||
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x64\MakePri" createconfig /o /dq en-US /cf priconfig.xml
|
||||
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x64\MakePri" new /o /pr . /cf priconfig.xml
|
||||
|
|
|
@ -2381,7 +2381,7 @@ static void PositionControls(HWND hDlg)
|
|||
SendMessage(hSaveToolbar, TB_GETIDEALSIZE, (WPARAM)FALSE, (LPARAM)&sz);
|
||||
SendMessage(hSaveToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(sz.cx, ddbh));
|
||||
// Microsoft, how I loathe thee!!!
|
||||
padding = SendMessage(hSaveToolbar, TB_GETPADDING, 0, 0);
|
||||
padding = (DWORD) SendMessage(hSaveToolbar, TB_GETPADDING, 0, 0);
|
||||
sz.cx = padding & 0xFFFF;
|
||||
sz.cy = padding >> 16;
|
||||
SendMessage(hSaveToolbar, TB_SETPADDING, 0, MAKELPARAM(sz.cx + 3, sz.cy + 2));
|
||||
|
@ -2393,7 +2393,7 @@ static void PositionControls(HWND hDlg)
|
|||
MapWindowPoints(NULL, hDlg, (POINT*)&rc, 2);
|
||||
SendMessage(hHashToolbar, TB_GETIDEALSIZE, (WPARAM)FALSE, (LPARAM)&sz);
|
||||
SendMessage(hHashToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(sz.cx, ddbh));
|
||||
padding = SendMessage(hHashToolbar, TB_GETPADDING, 0, 0);
|
||||
padding = (DWORD) SendMessage(hHashToolbar, TB_GETPADDING, 0, 0);
|
||||
sz.cx = padding & 0xFFFF;
|
||||
sz.cy = padding >> 16;
|
||||
SendMessage(hHashToolbar, TB_SETPADDING, 0, MAKELPARAM(sz.cx + 3, sz.cy + 2));
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_ACCEPTFILES
|
||||
CAPTION "Rufus 3.0.1302"
|
||||
CAPTION "Rufus 3.0.1303"
|
||||
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
||||
|
@ -389,8 +389,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 3,0,1302,0
|
||||
PRODUCTVERSION 3,0,1302,0
|
||||
FILEVERSION 3,0,1303,0
|
||||
PRODUCTVERSION 3,0,1303,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -407,13 +407,13 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "3.0.1302"
|
||||
VALUE "FileVersion", "3.0.1303"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2018 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||
VALUE "OriginalFilename", "rufus.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "3.0.1302"
|
||||
VALUE "ProductVersion", "3.0.1303"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue