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