From: Brian S. <xue...@us...> - 2008-05-15 19:08:36
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23556 Modified Files: Tag: b0_22_2 installer.nsi Log Message: A bug in the NSIS compiler corrupts the default text shown next to the "Show ReadMe" checkbox on the FINISH page when the Japanese language is selected. Setting the text for this checkbox to the default MUI string is a simple way to work around this bug. The main installer (setup.exe) only shows its FINISH page when the "/SSL" command-line option is used. Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.242.4.30 retrieving revision 1.242.4.31 diff -C2 -d -r1.242.4.30 -r1.242.4.31 *** installer.nsi 10 May 2008 12:52:25 -0000 1.242.4.30 --- installer.nsi 15 May 2008 19:08:20 -0000 1.242.4.31 *************** *** 697,702 **** --- 697,705 ---- ; Provide a checkbox to let user display the Release Notes for this version of POPFile + ; (MUI_FINISHPAGE_SHOWREADME_TEXT is set to the MUI default string here in order to + ; work around a NSIS compiler bug which corrupts the Japanese version of the string) !define MUI_FINISHPAGE_SHOWREADME + !define MUI_FINISHPAGE_SHOWREADME_TEXT "$(MUI_TEXT_FINISH_SHOWREADME)" !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED !define MUI_FINISHPAGE_SHOWREADME_FUNCTION "ShowReadMe" |