* PageEx - every page can be used everywhere and as many times as needed
* DirVar - easy way to add another dir page * default strings in the language file (Page directory is enough, no need for DirText) * strings from the language file are now LangStrings that can be used in the script * no more /LANG - one string for all languages * any lang strings can be used everywhere, installer or uninstaller (no un.) * no more unprocessed strings - variables can be used almost everywhere (except in licenseData and InstallDirRegKey) * DirText parm for browse dialog text * SetBkColor -> SetCtlColors - can now set text color too * fixed SetOutPath and File /r bug * fixed File /a /oname bug * added $_CLICK for pages * added quotes support in lang files (patch #752620) * extraction progress * separate RTL dialogs for RTL langs (improved RTL too) * InstallOptions RTL * StartMenu RTL * fixed RegDLL? * added IfSilent and SetSilent (SetSilent only works from .onInit) * fixed verify window (it never showed) (bug #792494) * fixed ifnewer readonly file problem (patch #783782) * fixed wininit.ini manipulation when there is another section after [rename] * fixed some ClearType issues * fixed a minor bug in the resource editor * fixed !ifdef/!endif stuff, rewritten * lots of code and comments clean ups * got rid of some useless exceptions handling and STL classes (still much more to go) * lots of optimizations, of course ;) * updated system.dll with support for GUID, WCHAR, and fast VTable calling (i.e. COM ready) * minor bug fixes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2823 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
bb8879b7ae
commit
74ea2dc585
91 changed files with 5180 additions and 4101 deletions
|
@ -5,6 +5,10 @@
|
|||
|
||||
\b User variables ($VARNAME) that can be declared with the \R{var}{Var} command
|
||||
|
||||
\b Added \R{pageex}{PageEx}, \R{pagecallbacks}{PageCallbacks} and \R{adirvar}{DirVar} - it's now a lot easier to add the same page type twice
|
||||
|
||||
\b Extraction progress
|
||||
|
||||
\b \W{../Contrib/Modern UI/Readme.html}{Modern UI 1.65}: Easier page macro system, language specific fonts, \R{alicenseforceselection}{LicenseForceSelection} support, new options for Finish page / language selection dialog, fixes, more
|
||||
|
||||
\b Added \R{asetallowskipfiles}{AllowSkipFiles}: Set whether the user should be able to skip a file when overwriting failed
|
||||
|
@ -15,7 +19,19 @@
|
|||
|
||||
\b \W{../Contrib/Makensisw/Readme.txt}{MakeNSISW 2.0}: UI to define symbols, toolbar, more
|
||||
|
||||
\b NLF language files (v5): More strings translatable (K/M/G Byte, registering, unregistering), language specific fonts
|
||||
\b NLF language files (v6): language specific fonts, RTL and more strings
|
||||
|
||||
\b Full \R{rtl}{RTL} support (set in language file)
|
||||
|
||||
\b Inner LangStrings can be used in the script
|
||||
|
||||
\b No more /LANG, only LangStrings - easier to set one string to all languages
|
||||
|
||||
\b LangStrings are no longer installer/uninstaller specific (no un.)
|
||||
|
||||
\b No more unprocessed strings, variables can be used everywhere
|
||||
|
||||
\b Added \R{ifsilent}{IfSilent} and \R{setsilent}{SetSilent} to allow better /S interaction
|
||||
|
||||
\b /o Switch for \R{ssection}{Section} provides ability to unselect the section by default
|
||||
|
||||
|
@ -23,6 +39,10 @@
|
|||
|
||||
\b Added \R{ssectionsetsize}{SectionSetSize}, \R{ssectiongetsize}{SectionGetSize}, \R{ssetcurinsttype}{SetCurInstType}, \R{sgetcurinsttype}{GetCurInstType}
|
||||
|
||||
\b New parameter for DirText to set the browse dialog text
|
||||
|
||||
\b Better ClearType support
|
||||
|
||||
\b System Plug-in: Fixed a bug with calling proc(void) and added e switch to get GetLastError return value
|
||||
|
||||
\b Components Tree: Fixed problems with sub-sections with RO sections as children, SF_EXPAND now refreshes the components tree, Added SF_PSELECTED for partially selected sub-sections
|
||||
|
@ -37,7 +57,7 @@
|
|||
|
||||
\b Added \R{rmdir}{RMDir /REBOOTOK}: Remove folders on reboot
|
||||
|
||||
\b Added \R{setbkcolor}{SetBkColor}: Background colors can be set for non-static controls, transparent background support
|
||||
\b Added \R{setctlcolors}{SetCtlColors}: Sets background and text color for every dialog control
|
||||
|
||||
\b \R{ainsttype}{InstType} /NOCUSTOM and /COMPONENTSONLYONCUSTOM work together
|
||||
|
||||
|
@ -47,9 +67,9 @@
|
|||
|
||||
\b Fixed a problem regarding borders in Plug-ins BgImage and InstallOptions
|
||||
|
||||
\b Fixed plug-ins directory init function generation
|
||||
\b Minor bug fixes
|
||||
|
||||
\b Fixed overlapping chars in directory input
|
||||
\b Code clean-ups and some more comments
|
||||
|
||||
\\<b\\>Notes:\\</b\\>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue