Fixed InstallLib .NSI space-in-path script bug (bug #1222)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7092 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
36cf6ec2b3
commit
ba5ca3a463
2 changed files with 6 additions and 4 deletions
|
@ -16,12 +16,14 @@ ANSI targets are deprecated, consider moving to Unicode.
|
||||||
|
|
||||||
\b Added \R{loadandsetimage}{LoadAndSetImage}
|
\b Added \R{loadandsetimage}{LoadAndSetImage}
|
||||||
|
|
||||||
\b Fixed -O stderr stream issue (\W{http://sf.net/p/nsis/bugs/1221}{bug #1221})
|
|
||||||
|
|
||||||
\b Allow quoted library path in System::Call (\W{http://sf.net/p/nsis/bugs/546}{bug #546})
|
\b Allow quoted library path in System::Call (\W{http://sf.net/p/nsis/bugs/546}{bug #546})
|
||||||
|
|
||||||
\b %1 in !finalize command can be specified multiple times
|
\b %1 in !finalize command can be specified multiple times
|
||||||
|
|
||||||
|
\b Fixed -O stderr stream issue (\W{http://sf.net/p/nsis/bugs/1221}{bug #1221})
|
||||||
|
|
||||||
|
\b Fixed InstallLib .NSI space-in-path bug (\W{http://sf.net/p/nsis/bugs/1222}{bug #1222})
|
||||||
|
|
||||||
|
|
||||||
\S2{} Translations
|
\S2{} Translations
|
||||||
|
|
||||||
|
|
|
@ -148,8 +148,8 @@
|
||||||
|
|
||||||
!macro __InstallLib_Helper_CmpPackedVer64 oldhi oldlo newhi newlo jeq jle jgt
|
!macro __InstallLib_Helper_CmpPackedVer64 oldhi oldlo newhi newlo jeq jle jgt
|
||||||
|
|
||||||
IntCmpU ${oldhi} ${newhi} 0 ${jle} ${jgt}
|
IntCmpU ${oldhi} ${newhi} "0" "${jle}" "${jgt}"
|
||||||
IntCmpU ${oldlo} ${newlo} ${jeq} ${jle} ${jgt}
|
IntCmpU ${oldlo} ${newlo} "${jeq}" "${jle}" "${jgt}"
|
||||||
|
|
||||||
!macroend
|
!macroend
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue