source: trunk/changelog@ 7029

Last change on this file since 7029 was 7029, checked in by phaller, 24 years ago

.

File size: 6.2 KB
Line 
1/* $Id: changelog,v 1.1743 2001-10-12 07:06:39 phaller Exp $ */
2
3 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
4 - include: o debugtools.h: memory corruption in debugstr_()
5 - KERNEL32: o (cheap) heap lookup acceleration
6 o better profiler calibration :)
7
8 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
9 - USER32: o SetScrollRange: return error if min > max or out of range
10 (ERROR_INVALID_SCROLLBAR_RANGE)
11 (behaviour of NT4, SP6)
12 o Scrollbar control window not disabled properly when using
13 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
14 and call EnableScrollbar)
15 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
16 with size grip style)
17 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
18 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
19 wsock32
20
21 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
22 - KERNEL32: o added ODIN performance profiler
23 (perf_0.log for PROFILE builds)
24 - SHELL32: o ~30% speed improvement on shell folder operations
25
26 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
27 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
28 get called very often. (like IsWindow, GetParent & IsWindowVisible)
29 This tends to make logfiles very big...
30 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
31 IP_MULTICAST_TTL to setsockopt
32 o Add support for WS2_32 IPPROTO_IP options
33 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
34 wsock32
35 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
36 (surflock/unlock)
37
38 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
39 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
40 IOCTL_CDROM_LOAD_MEDIA
41 IOCTL_CDROM_PAUSE_AUDIO
42 IOCTL_CDROM_STOP_AUDIO
43 IOCTL_CDROM_RESUME_AUDIO
44 IOCTL_CDROM_PLAY_AUDIO_MSF
45 o added IOCTL_STORAGE_EJECT_MEDIA
46 IOCTL_STORAGE_LOAD_MEDIA
47 IOCTL_DISK_EJECT_MEDIA
48 IOCTL_DISK_CHECK_VERIFY
49 - IPHLPAPI: o added fake version of GetAdaptersInfo()
50 - ODINWRAP: o standard C compiler compatibility
51 - MAKE: o fixes to the profile make include
52 - SHELL32: o PIDL: instrumentation for performance tuning
53
54 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
55 - KERNEL32: o Image header page must be readonly
56 o Temporarily disabled high memory usage for heap
57
58 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
59 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
60 o added further messages to wndmsg.cpp
61 - KERNEL32: o added further error codes to error2WinError
62
63 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
64 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
65 if mp2 & AWP_ACTIVATE
66 (fixes activation of some inactive windows; used to be
67 activated but not brought to the top)
68
69 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
70 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
71 - USER32: o Eliminated flickering during frame sizing due to
72 unnecessary drawing
73 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
74 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
75
76 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
77 - QUARTZ/OLEAUT32:
78 o Wine 20011004 resync
79 - KERNEL32: o Reduce overhead for heap allocation
80 o Always allocate heap memory from high memory (if available)
81 o Allocate extra heap memory in 64kb units
82 MUST use 64kb here or else we are at risk of running out
83 of virtual memory space. (when allocating 4kb we actually
84 get 4kb + 60k uncommited)
85 (fixes out of resources error while loading big movies
86 in The Playa)
87
88 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
89 - DDRAW: o Added stretching support for blitting to the screen
90 (the Playa can now play movies in fullscreen mode)
91
92 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
93 - WINMM: o Allocate handle for new timer and verify handle
94 is valid before using it.
95 (prevents crashes when app attempts to delete timer twice
96 (DivX 4))
97 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
98 o Take clipping into account in SurfBlt4. Windowed DirectDraw
99 blitting now seems to work well.
100 (only tried DivX 4; needs more testing)
101 - USER32: o Rewrote sizing & moving of windows (frame tracking)
102 (ported Wine version + fixed some bugs)
103 Some applications (e.g. RealPlayer) resize themselves
104 when receiving WM_SIZING msgs. Not possible to send those
105 with PM's frame tracking.
106 TODO: fix flickering of size border (dynamic drag off)
107 TODO: WM_SIZING handling not 100% correct yet
108 TODO: Must display size/move cursor when starting action
109 from system menu
110 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
111 - OLEAUT32: o Wine update
112
113 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
114 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
115 (Some dlls (divx codec) call CoFreeUnusedLibraries which
116 unloads the same dll if we use CoLoadLibrary (-> crash)
117 NT's regsvr32 doesn't use CoLoadLibrary either)
118 - USER32: o OSLibWinGetMsg bugfix
119
120 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
121 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
122
Note: See TracBrowser for help on using the repository browser.