source: trunk/changelog@ 7157

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

.

File size: 11.7 KB
Line 
1/* $Id: changelog,v 1.1776 2001-10-22 23:34:10 phaller Exp $ */
2
3 2001-10-22: Patrick Haller <patrick.haller@innotek.de>
4 - TESTAPP: o added keyboard test program for low-level testing
5 of the keyboard routines
6 (Queue, WH_KEYBOARD, WH_KEYBOARD_LL)
7 - PMKBDHK: o added initial version
8 - USER32: o enabled PMKBDHK
9 o fixed minor issue in WH_KEYBOARD_LL
10 - SHELL32: o minor speedup in PIDL handling
11 - KERNEL32: o removed experimental heap handle cache stats
12
13 2001-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
14 - WSOCK32: o Fix for sending FD_CLOSE notification when connection
15 is closed at the remote end.
16
17 2001-10-20: Achim Hasenmueller <achimha@innotek.de>
18 - WNASPI32: o do not fail in init routine in case ASPIROUT.SYS
19 is not present. Just return errors from all calls
20 if this is the case.
21 TODO: refine calls to not return any ASPI devices!
22
23 2001-10-19: Achim Hasenmueller <achimha@innotek.de>
24 - WSOCK32: o implemented error bit handling in Winsock 2.0
25 event semaphore notification for asynch select
26
27 2001-10-19: Patrick Haller <patrick.haller@innotek.de>
28 - COMCTL32: o updated listview and status to wine level
29 - COMDLG32: o fix crash in FileDlg95 (used freed memory object)
30
31 2001-10-18: knut stange osmundsen <kosmunds@csc.com>
32 - odin32.*.vac3*.mk:
33 o Added /noignorecase to ILIBFLAGS. Object libraries
34 is now using case sensitive names. This removes some
35 warnings during custombuild and fixes a duplicate symbol
36 problem in kKrnlLibR3.
37
38 2001-10-18: Achim Hasenmueller <achimha@innotek.de>
39 - USER32: o temporarily backed out a change from earlier today
40 in the color pointer conversion code that causes
41 severe regressions. Look for @@@AH in oslibres.cpp
42
43 2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
44 - DDRAW: o Check if DirectDraw object is associated with Clipper.
45 - SHELL32: o Compile fix for release build
46 - USER32: o Fix for pointer conversion
47 o Notify visible region callback when WM_SHOW arrives.
48 For some reason we don't receive a WM_VRNENABLED message
49 when a window is shown for the first time.
50 - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
51 - GDI32: o Removed wrong warnings about GpiQueryBitmapBits
52
53 2001-10-17: knut stange osmundsen <kosmunds@csc.com>
54 - common: o Corrected bug in kFile buffering which caused impdef to
55 crash in some cases.
56
57 2001-10-17: Patrick Haller <patrick.haller@innotek.de>
58 - SHELL32: o WINE resync 20011017
59 - KERNEL32: o minor heap optimization
60 - USER32: o minor handle mgmt optimizations
61 - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
62
63 2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
64 - DDRAW: o Fixes for DDBLT_COLORFILL
65 - WS2_32: o Added stubs for WSAEnumProtocolsA/W
66 - USER32: o SetFocus fix; don't always activate window because that
67 changes the z-order which interferes (among other things)
68 with GetNextDlgTabItem & GetNextDlgGroupItem
69 o Removed some GetNextDlgGroupItem changes which are no longer
70 necessary due to the SetFocus fix
71
72 2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
73 - KERNEL32, CUSTOMBUILD, USER32:
74 o Custom build fixes + changes
75 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
76 Some applications interpret this value as a signed long.
77 - USER32: o Fix for pointer conversion
78
79 2001-10-16: Patrick Haller <patrick.haller@innotek.de>
80 - WSOCK32: o enabled receive and send timeout socket options
81 (SO_SNDTIMEO, SO_RCVTIMEO)
82
83 2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
84 - KERNEL32, USER32, WNASPI32, DDRAW:
85 o Custom build updates
86
87 2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
88 - USER32: o Convert color cursor to monochrome if it only uses two colors.
89 This overcomes a silly limitation in some less advanced
90 display drivers. (SDD still has no support for color cursors!)
91 (fixes mouse cursor flickering & screen distortion when
92 accessing the frame buffer directly)
93 NOTE: This is a partial solution only. Real color cursors
94 still use GRADD's rather poor software emulation.
95
96 2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
97 - WSOCK32: o Overwrite IP header length in sendto for raw sockets
98 with IP_HDRINCL option set.
99 (fixes errors for apps that use big endian format for
100 the length word)
101 o WSAEnumNetworkEvents now reports (some) events properly
102 o Call WSACleanup during dll unload in case application
103 forgot to do that.
104
105 2000-10-12: Yuri Dario <mc6530@mclink.it>
106 - USER32: o GetNextDlgGroupItem fix for infinite loop in Opera
107
108 2001-10-12: Achim Hasenmueller <achimha@innotek.de>
109 - KERNEL32: o use bounce buffers if end of buffer crosses
110 tiled region barrier, not start of buffer
111 (yeah, being nit-picking here, OS/2 will actually
112 never give you a memory object that crosses the boundary...)
113
114 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
115 - include: o debugtools.h: memory corruption in debugstr_()
116 - KERNEL32: o (cheap) heap lookup acceleration
117 o better profiler calibration :)
118 o bounce buffers for DeviceIoControl() with
119 high memory buffers
120 - SHELL32: o ~10% speed improvement on shell folder operations ;-)
121
122 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
123 - USER32: o SetScrollRange: return error if min > max or out of range
124 (ERROR_INVALID_SCROLLBAR_RANGE)
125 (behaviour of NT4, SP6)
126 o Scrollbar control window not disabled properly when using
127 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
128 and call EnableScrollbar)
129 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
130 with size grip style)
131 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
132 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
133 wsock32
134
135 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
136 - KERNEL32: o added ODIN performance profiler
137 (perf_0.log for PROFILE builds)
138 - SHELL32: o ~30% speed improvement on shell folder operations
139
140 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
141 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
142 get called very often. (like IsWindow, GetParent & IsWindowVisible)
143 This tends to make logfiles very big...
144 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
145 IP_MULTICAST_TTL to setsockopt
146 o Add support for WS2_32 IPPROTO_IP options
147 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
148 wsock32
149 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
150 (surflock/unlock)
151
152 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
153 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
154 IOCTL_CDROM_LOAD_MEDIA
155 IOCTL_CDROM_PAUSE_AUDIO
156 IOCTL_CDROM_STOP_AUDIO
157 IOCTL_CDROM_RESUME_AUDIO
158 IOCTL_CDROM_PLAY_AUDIO_MSF
159 o added IOCTL_STORAGE_EJECT_MEDIA
160 IOCTL_STORAGE_LOAD_MEDIA
161 IOCTL_DISK_EJECT_MEDIA
162 IOCTL_DISK_CHECK_VERIFY
163 - IPHLPAPI: o added fake version of GetAdaptersInfo()
164 - ODINWRAP: o standard C compiler compatibility
165 - MAKE: o fixes to the profile make include
166 - SHELL32: o PIDL: instrumentation for performance tuning
167
168 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
169 - KERNEL32: o Image header page must be readonly
170 o Temporarily disabled high memory usage for heap
171
172 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
173 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
174 o added further messages to wndmsg.cpp
175 - KERNEL32: o added further error codes to error2WinError
176
177 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
178 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
179 if mp2 & AWP_ACTIVATE
180 (fixes activation of some inactive windows; used to be
181 activated but not brought to the top)
182
183 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
184 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
185 - USER32: o Eliminated flickering during frame sizing due to
186 unnecessary drawing
187 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
188 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
189
190 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
191 - QUARTZ/OLEAUT32:
192 o Wine 20011004 resync
193 - KERNEL32: o Reduce overhead for heap allocation
194 o Always allocate heap memory from high memory (if available)
195 o Allocate extra heap memory in 64kb units
196 MUST use 64kb here or else we are at risk of running out
197 of virtual memory space. (when allocating 4kb we actually
198 get 4kb + 60k uncommited)
199 (fixes out of resources error while loading big movies
200 in The Playa)
201
202 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
203 - DDRAW: o Added stretching support for blitting to the screen
204 (the Playa can now play movies in fullscreen mode)
205
206 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
207 - WINMM: o Allocate handle for new timer and verify handle
208 is valid before using it.
209 (prevents crashes when app attempts to delete timer twice
210 (DivX 4))
211 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
212 o Take clipping into account in SurfBlt4. Windowed DirectDraw
213 blitting now seems to work well.
214 (only tried DivX 4; needs more testing)
215 - USER32: o Rewrote sizing & moving of windows (frame tracking)
216 (ported Wine version + fixed some bugs)
217 Some applications (e.g. RealPlayer) resize themselves
218 when receiving WM_SIZING msgs. Not possible to send those
219 with PM's frame tracking.
220 TODO: fix flickering of size border (dynamic drag off)
221 TODO: WM_SIZING handling not 100% correct yet
222 TODO: Must display size/move cursor when starting action
223 from system menu
224 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
225 - OLEAUT32: o Wine update
226
227 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
228 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
229 (Some dlls (divx codec) call CoFreeUnusedLibraries which
230 unloads the same dll if we use CoLoadLibrary (-> crash)
231 NT's regsvr32 doesn't use CoLoadLibrary either)
232 - USER32: o OSLibWinGetMsg bugfix
233
234 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
235 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
236
Note: See TracBrowser for help on using the repository browser.