| 1 | /* $Id: changelog,v 1.1729 2001-10-09 20:24:34 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - KERNEL32: o Image header page must be readonly
|
|---|
| 5 | o Temporarily disabled high memory usage for heap
|
|---|
| 6 |
|
|---|
| 7 | 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 8 | - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
|
|---|
| 9 | o added further messages to wndmsg.cpp
|
|---|
| 10 | - KERNEL32: o added further error codes to error2WinError
|
|---|
| 11 |
|
|---|
| 12 | 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 13 | - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
|
|---|
| 14 | if mp2 & AWP_ACTIVATE
|
|---|
| 15 | (fixes activation of some inactive windows; used to be
|
|---|
| 16 | activated but not brought to the top)
|
|---|
| 17 |
|
|---|
| 18 | 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 19 | - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
|
|---|
| 20 | - USER32: o Eliminated flickering during frame sizing due to
|
|---|
| 21 | unnecessary drawing
|
|---|
| 22 | o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
|
|---|
| 23 | o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
|
|---|
| 24 |
|
|---|
| 25 | 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 26 | - QUARTZ/OLEAUT32:
|
|---|
| 27 | o Wine 20011004 resync
|
|---|
| 28 | - KERNEL32: o Reduce overhead for heap allocation
|
|---|
| 29 | o Always allocate heap memory from high memory (if available)
|
|---|
| 30 | o Allocate extra heap memory in 64kb units
|
|---|
| 31 | MUST use 64kb here or else we are at risk of running out
|
|---|
| 32 | of virtual memory space. (when allocating 4kb we actually
|
|---|
| 33 | get 4kb + 60k uncommited)
|
|---|
| 34 | (fixes out of resources error while loading big movies
|
|---|
| 35 | in The Playa)
|
|---|
| 36 |
|
|---|
| 37 | 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 38 | - DDRAW: o Added stretching support for blitting to the screen
|
|---|
| 39 | (the Playa can now play movies in fullscreen mode)
|
|---|
| 40 |
|
|---|
| 41 | 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 42 | - WINMM: o Allocate handle for new timer and verify handle
|
|---|
| 43 | is valid before using it.
|
|---|
| 44 | (prevents crashes when app attempts to delete timer twice
|
|---|
| 45 | (DivX 4))
|
|---|
| 46 | - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
|
|---|
| 47 | o Take clipping into account in SurfBlt4. Windowed DirectDraw
|
|---|
| 48 | blitting now seems to work well.
|
|---|
| 49 | (only tried DivX 4; needs more testing)
|
|---|
| 50 | - USER32: o Rewrote sizing & moving of windows (frame tracking)
|
|---|
| 51 | (ported Wine version + fixed some bugs)
|
|---|
| 52 | Some applications (e.g. RealPlayer) resize themselves
|
|---|
| 53 | when receiving WM_SIZING msgs. Not possible to send those
|
|---|
| 54 | with PM's frame tracking.
|
|---|
| 55 | TODO: fix flickering of size border (dynamic drag off)
|
|---|
| 56 | TODO: WM_SIZING handling not 100% correct yet
|
|---|
| 57 | TODO: Must display size/move cursor when starting action
|
|---|
| 58 | from system menu
|
|---|
| 59 | o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
|
|---|
| 60 | - OLEAUT32: o Wine update
|
|---|
| 61 |
|
|---|
| 62 | 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 63 | - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
|
|---|
| 64 | (Some dlls (divx codec) call CoFreeUnusedLibraries which
|
|---|
| 65 | unloads the same dll if we use CoLoadLibrary (-> crash)
|
|---|
| 66 | NT's regsvr32 doesn't use CoLoadLibrary either)
|
|---|
| 67 | - USER32: o OSLibWinGetMsg bugfix
|
|---|
| 68 |
|
|---|
| 69 | 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 70 | - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
|
|---|
| 71 |
|
|---|