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