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