Changelog.txt 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. DLL version 2.47 (4/27/2007)
  2. * Line breaks support in Link control
  3. * Added HLine and VLine controls
  4. DLL version 2.46 (3/31/2007)
  5. * Use installer's name for message boxes
  6. DLL version 2.45 (1/23/2007)
  7. * Added FOCUS flag for setting focus to a control other than the first
  8. DLL version 2.44 (10/11/2005)
  9. * Added HWND and HWND2 entries to the INI file to avoid messy calculations of the correct control id
  10. DLL version 2.43 (10/4/2005)
  11. * Fixed alteration of the working directory by FileRequest
  12. * Added WS_EX_LEFTSCROLLBAR in RTL mode
  13. DLL version 2.42 (1/21/2005)
  14. * Added TRANSPARENT flag for BITMAP fields (funded by Chris Morgan)
  15. DLL version 2.41 (8/5/2004)
  16. * Bitmaps are now automatically centered
  17. * Fixed a bug which prevented enabling the next button from the leave function of InstallOptions pages
  18. * Fixed a rare freeze
  19. DLL version 2.4 (1/4/2004)
  20. * Initial focus is set in "initDialog" making it possible to override it from NSIS prior to calling "show"
  21. * When initial focus is to a Text field InstallOptions now follows standard Windows behaviour by having the text selected
  22. * Label and other static fields no longer have State= written to the INI file when leaving the dialog
  23. * NOTIFY flag can now be used with Link fields (State should be omitted in this case)
  24. * Likewise, State can now be used with Button fields (behaves the same as with Link fields)
  25. * NOTIFY flag can also now be used with ListBox and DropList fields to have NSIS notified when the selection changes
  26. * Meaning of RIGHT flag is now reversed in right-to-left language mode
  27. * HSCROLL and VSCROLL flags are no longer restricted to Text fields
  28. * Various Link field fixes
  29. DLL version 2.3 (12/4/2003)
  30. * Added new control type "Button"
  31. * Added new flag "NOTIFY"
  32. * Added new flag "NOWORDWRAP" for multi-line text boxes
  33. * Reduced size down to 12K
  34. * Better RTL support
  35. DLL version 2.2 (6/10/2003)
  36. * Added New control type LINK
  37. * \r\n converts to newline in Multiline edit box
  38. * Support for multiline edit box
  39. * Better tab order in DirRequest and FileRequest
  40. * Added READONLY option to text box
  41. * Minor fixes
  42. DLL version 2.1 (3/15/2003)
  43. * \r\n converts to newline in both label Text and ValidateText
  44. * New browse dialog style (modern)
  45. * Word wrapping for check boxes and radio buttons
  46. * No ugly border for edit fields under XP
  47. * Scroll bar for list boxes
  48. * Works with SetStaticBkColor
  49. * DISABLED dir and file request fields now disable the browse button too
  50. * No more STATE value for labels
  51. * Minor fixes
  52. DLL version 2.0 (1/4/2003)
  53. * Supports custom font and DPI settings (by Joost Verburg)
  54. * INI files should contain dialog units now, no pixels (by Joost Verburg)
  55. * RESIZETOFIT flag for Bitmap control (by Amir Szekely)
  56. * New documentation (by Joost Verburg)
  57. * New GROUP/NOTABSTOP/DISABLED flags
  58. DLL version 1.7 beta (11/2/2002)
  59. * Added initDialog and show DLL functions
  60. DLL version 1.6 beta (9/30/2002)
  61. * CancelConfirmIcon becomes CancelConfirmFlags and can now take the other common MessageBox flags
  62. DLL version 1.5 beta (9/26/2002)
  63. * Made close [x] button behave like Cancel (thanks brainsucker)
  64. DLL version 1.4 beta (9/4/2002)
  65. * Added Icon and Bitmap controls (by Amir Szekely)
  66. DLL version 1.3 beta (8/15/2002)
  67. * Added CancelShow (by ORTIM)
  68. * Added pixel transformation for widgets (by ORTIM)
  69. DLL version 1.2 beta (7/31/2002)
  70. * Added CancelEnabled (by ORTIM)
  71. * Added CancelConfirmCaption and CancelConfirmIcon (by Amir Szekely)
  72. DLL version 1.1 beta (7/22/2002)
  73. * Font is now taken from the main NSIS window (by Amir Szekely)
  74. DLL version 1.0 beta (12/16/2001)
  75. * Moved to DLL, no longer need parentwnd ini writing
  76. * Tons of changes - no longer fully compatible (see source for a big list)
  77. * removed support for silent installers (it seems the old version would bring up it's own dialog)
  78. version 1.4 (11/18/2001)
  79. * Added Listbox controls.
  80. * Added MULTISELECT flag.
  81. * Made the HWND list for the parent window controls dynamically allocated. This prevents a crash if NSIS ever gets more than 150 controls on it's main window.
  82. * The TEXT property of DirRequest control can be used to specify an initial directory. The current directory is automatically selected when clicking the browse button of the DirRequest control.
  83. * Added ROOT property to DirRequest which can be used to set the root directory (mostly due to felfert)
  84. * Edit controls will now auto scroll (thanks felfert)
  85. * Fixed a problem where the window wouldn't draw properly on some systems (thanks felfert)
  86. version 1.3 (11/03/2001)
  87. * Got rid of the call to RedrawWindow() because it's no longer needed with the WS_CLIPCHILDREN flag for NSIS.
  88. * Removed a few hardcoded limits of buffer sizes
  89. * Added Checkbox and RadioButton controls
  90. * Added RIGHT and CHECKED flags
  91. version 1.2.2 (10/30/2001)
  92. * Additional size reductions. Further reduced the size down to 8k.
  93. * The text parameter to a combobox can now be used to specify the initial value
  94. * Changed from InvalidateRect() to RedrawWindow() to force a redraw after a browse dialog
  95. * On startup, set the flags of the NSIS window to include WS_CLIPCHILDREN. Otherwise, our controls don't get drawn right.
  96. version 1.2.1 (10/28/2001)
  97. * Bug fix. ControlID for the caption and the OK button were reused by the first two controls. (Thanks Schultz)
  98. version 1.2j (10/28/2001)
  99. * 8.5kb from 44kb. heh. (by Justin Frankel)
  100. version 1.2 (10/28/2001)
  101. * Still 44k
  102. * Added the "FileRequest" and "DirRequest" control types (thanks Schultz)
  103. * Added "MinLen", "MaxLen", and "ValidateText" properties to fields
  104. * Added "Flags" as a way to specify additional parameters for controls
  105. * Few more changes to the documentation
  106. * Cleaned the code in a few places...still trying to make it smaller
  107. version 1.1 (10/27/2001)
  108. * Added the "Title" option (thanks Alex)
  109. * Moved the OK button so it is in the same location as the buttons on the main NSIS window (thanks Alex)
  110. * Pressing "ENTER" will now automatically select the OK button (thanks Alex)
  111. * Slightly improved the documentation
  112. version 1.01 (10/25/2001)
  113. * Fixed the SetFocus loop so it exits after the first control like it was supposed to
  114. * Added the license to the documentation
  115. version 1.0 (10/25/2001)
  116. * Barely qualifies as a distribution