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