Skip to content

Commit

Permalink
v1.4.0 - TAKE THREE (build 343)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbatard committed Dec 2, 2013
1 parent c4b2c48 commit 054035f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/rufus.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ static BOOL PopulateProperties(int ComboIndex)
bt = (j==0)?BT_BIOS:BT_UEFI;
pt = (j==2)?PARTITION_STYLE_GPT:PARTITION_STYLE_MBR;
IGNORE_RETVAL(ComboBox_SetItemData(hPartitionScheme, ComboBox_AddStringU(hPartitionScheme,
lmprintf(MSG_031+j, PartitionTypeLabel[pt])), (bt<<16)|pt));
lmprintf((j==0)?MSG_031:MSG_033, PartitionTypeLabel[pt])), (bt<<16)|pt));

}
break;
Expand Down
10 changes: 5 additions & 5 deletions src/rufus.rc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDD_DIALOG DIALOGEX 12, 12, 206, 329
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION "Rufus v1.4.0.342"
CAPTION "Rufus v1.4.0.343"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "Start",IDC_START,94,291,50,14
Expand Down Expand Up @@ -288,8 +288,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,0,342
PRODUCTVERSION 1,4,0,342
FILEVERSION 1,4,0,343
PRODUCTVERSION 1,4,0,343
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -306,13 +306,13 @@ BEGIN
BEGIN
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "1.4.0.342"
VALUE "FileVersion", "1.4.0.343"
VALUE "InternalName", "Rufus"
VALUE "LegalCopyright", "� 2011-2013 Pete Batard (GPL v3)"
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
VALUE "OriginalFilename", "rufus.exe"
VALUE "ProductName", "Rufus"
VALUE "ProductVersion", "1.4.0.342"
VALUE "ProductVersion", "1.4.0.343"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 054035f

Please sign in to comment.