From: Brian S. <xue...@us...> - 2008-05-13 14:12:11
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24656 Modified Files: Tag: b0_22_2 adduser-Version.nsh adduser.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. To do: check for other default strings which need to be explicitly set like this in order to avoid problems when an MBCS language is selected. Index: adduser-Version.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Version.nsh,v retrieving revision 1.6.2.23 retrieving revision 1.6.2.24 diff -C2 -d -r1.6.2.23 -r1.6.2.24 *** adduser-Version.nsh 10 May 2008 12:52:25 -0000 1.6.2.23 --- adduser-Version.nsh 13 May 2008 14:12:15 -0000 1.6.2.24 *************** *** 7,11 **** #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.4.2" #-------------------------------------------------------------------------- --- 7,11 ---- #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.4.3" #-------------------------------------------------------------------------- Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.59.4.25 retrieving revision 1.59.4.26 diff -C2 -d -r1.59.4.25 -r1.59.4.26 *** adduser.nsi 10 May 2008 12:52:25 -0000 1.59.4.25 --- adduser.nsi 13 May 2008 14:12:15 -0000 1.59.4.26 *************** *** 632,637 **** --- 632,640 ---- ; 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" |