WhatsNew.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. release 2.
  2. 1. Syntax, with inline input
  3. 2. Int64 full support (conversion/operations/comparison)
  4. 3. Structures support
  5. 4. Callbacks support, including multilevel callbacks
  6. 5. Some useful routines (Alloc, Free, Copy)
  7. 6. CDecl and StdCall calling conventions
  8. release 3, 22 march 2003.
  9. 1. Custom Message Boxes (with icons etc) -> bug in case of GetModuleHandle and
  10. call to FreeLibrary (sysfunc.nsh)
  11. 2. GetFileSysTime -> No SystemTimeToTzSpecificLocalTime at win9x bug,
  12. changed to use FileTimeToLocalFileTime (sysfunc.nsh)
  13. 3. Incorrect automatic structure size (&l) bug, value actually never filled
  14. into the structure (strange -> winxp takes no care of the structure size
  15. members, such as cbSize, and win98 does...) (system.c)
  16. 4. Changed Secondary Stack Allocation behavior - now we just leave 65kb of the
  17. stack NSIS give to us to the NSIS itself, and use the other part as the stack
  18. for our calls. (system.c)
  19. 5. Secondary Stack Optimization - in case of no more pending callback procs -
  20. "free" the secondary stack pointer. (system.c)
  21. 6. PlaySound("", 0, 0) plays the default windows sound at win9x, so changed to
  22. PlaySound(NULL, 0, 0) for effective sound stopping after splash (sysfunc.nsh).
  23. release 4, 3 september 2003.
  24. 1. Division by zero fatal error at Int64Op killed.
  25. 2. bool type removed (use int instead).
  26. 3. GUID (g) and LPWSTR (w) types added.
  27. 4. Memory cleanup after using t (string), g (guid) and w (unicode string) added.
  28. 5. Automatic A-letter at proc name discovery.
  29. 6. COM optimized: new proc specification "x->y", where x is interface ptr, and
  30. y is vtable member index. For such procs Interface pointer passed as first arg
  31. automatically.
  32. release 5, 11 september 2003.
  33. 1. u flag - unload dll after procedure call.
  34. 2. some changes to asm to turn on Whole Program Optimization.
  35. 3. Dll shrunk by 1 kb.
  36. bug-fix-release, 4.06.2004
  37. 1. System::Copy /SIZE fixed (Kichik).
  38. 2. System::Copy with destination auto-allocation now pushes destination
  39. address on stack.
  40. 3. Callbacks fixed (Kichik's kick is awesome).
  41. 4. Bug with proc call parts redefinition, # for example (pointed by Kichik).
  42. 5. Bug with memory protection during callback processing (Kichik).