source: trunk/changelog@ 7249

Last change on this file since 7249 was 7249, checked in by sandervl, 24 years ago

* empty log message *

File size: 16.7 KB
Line 
1/* $Id: changelog,v 1.1804 2001-10-28 15:24:59 sandervl Exp $ */
2
3 2001-10-28: Sander van Leeuwen <sandervl@xs4all.nl>
4 - COMCTL32: o LISTVIEW_GetItemWidth bugfix: item can never be bigger
5 than the client area
6 - USER32: o Fixes for Set/GetWindowLong for dialogs. (unicode flag not
7 passed to parent class methods)
8 o Added SetDialogHook function for custom build
9 - KERNEL32: o Added RegisterCustomDriver
10
11 2001-10-27: Sander van Leeuwen <sandervl@xs4all.nl>
12 - KERNEL32: o IOCTL_SCSI_GET_ADDRESS: fail if wnaspi32 not loaded
13 - WINMM: o Added option to turn off audio by setting a key in the registry
14 HKEY_LOCAL_MACHINE\\System\\CustomBuild
15 DisableAudio = [0|1] (DWORD type)
16 - USER32: o CreateIconIndirect bugfix
17
18 2001-10-26: Achim Hasenmueller <achimha@innotek.de>
19 - WNASPI32: o don't fail DLL loading if ASPI library fails to init
20
21 2001-10-26: Sander van Leeuwen <sandervl@xs4all.nl>
22 - KERNEL32: o Better implementation of IOCTL_CDROM(DISK/STORAGE)_CHECK_VERIFY
23 o CDROM ioctls: Use signature returned by IOCD_IDENTIFY ioctl
24 o Implemented IOCTL_CDROM_READ_TOC
25
26 2001-10-26: Patrick Haller <patrick.haller@innotek.de>
27 - USER32: o fixed ESC keyboard event
28 o fixed passing thru special key events to the frame window
29 o partial fix for shift key processing
30 o fixed right shift processing (and possibly numerous
31 other extended keys)
32 o fixed this &%$&%! Alt-Gr-Key-Emulation
33 remaining issues:
34 AltGr won't toggle GetAsyncKeyState() or GetKeyState()
35
36 2001-10-25: Patrick Haller <patrick.haller@innotek.de>
37 - USER32: o fixed scancodes for [Pause] and [PrtScr]
38
39 2001-10-25: Sander van Leeuwen <sandervl@xs4all.nl>
40 - USER32: o Fixed sending of WM_ACTIVATEAPP messages. Only send them
41 to top-level windows when application gains or loses focus
42 from/to a window of another process.
43 o Fix for window tracking with thin frame (moving/sizing
44 window left tracks on the screen (fullscreen dragging disabled))
45 - KERNEL32: o Never use DosError to disable hard errors! Use SetErrorMode
46 *and* restore old error mode afterwards.
47 o IOCTL_DISK_GET_DRIVE_GEOMETRY change:
48 Applications can use this IOCTL to check if the floppy has
49 been changed. OSLibDosGetDiskGeometry won't fail when that
50 happens so we read one byte from the disk and return
51 ERROR_MEDIA_CHANGED if it fails with ERROR_WRONG_DISK.
52 - COMCTL32: o ListView: LVM_SETITEMA: update item even when 'new' text is
53 the same.
54 (CVP depends on this)
55
56 2001-10-24: Patrick Haller <patrick.haller@innotek.de>
57 - USER32: o added translation between PM Scancodes and
58 Windows Scancodes
59 Note: Open32 uses always PM Scancodes!
60 o fixed GetKeyNameText as far as possible
61 Despite we'll have to implement a flexible keyboard
62 layout scheme in the future.
63
64 2001-10-24: Achim Hasenmueller <achimha@innotek.de>
65 - PMKBDHK: o link statically with C runtime
66
67 2001-10-24: Sander van Leeuwen <sandervl@xs4all.nl>
68 - USER32: o SCROLLBAR: Only set focus to scrollbar control if it has
69 the WS_TABSTOP style (bugfix taken from Wine)
70 o IsWindowVisible: check for WS_CHILD style before checking
71 parents
72 (CVP: fixes moving of dialog with invisible owner)
73 o Frame tracking: activate and bring window to top when
74 control key is not pressed (OS/2 look)
75 (fixes activation by clicking on title bar and you can now
76 track frame without activating it)
77 o Double mouse click sent two up messages
78 o Double click on system menu now closes window
79 (SetCapture interferes with double click message generation)
80 - WINMM: o Dynamically load MDM; Windows applications (that don't
81 require sound) will no longer fail when MMPM/2 isn't available.
82
83 2001-10-23: Sander van Leeuwen <sandervl@xs4all.nl>
84 - COMCTL32: o ListView: WM_KEYDOWN -> if WM_NOTIFY returns TRUE, then
85 don't process key anymore; the app did it for us
86 o ListView: First focus change didn't work
87 o Partial implementation of draglists. Only sends DL_BEGINDRAG
88 DRAGLISTMSGSTRING message which is enough for CVP.
89 - USER32: o Fixed moving of window with RMB
90
91 2001-10-23: Patrick Haller <patrick.haller@innotek.de>
92 - USER32: o major improvement on keyboard handling
93 Special AltGr mapping missing yet
94 o partial fix to GetKeyNameText(),
95 two Open32 bugs remaining:
96 (injected scancodes ignored (undoc),
97 extended key bit ignored)
98
99 2001-10-22: Patrick Haller <patrick.haller@innotek.de>
100 - TESTAPP: o added keyboard test program for low-level testing
101 of the keyboard routines
102 (Queue, WH_KEYBOARD, WH_KEYBOARD_LL)
103 - PMKBDHK: o added initial version
104 - USER32: o enabled PMKBDHK
105 o fixed minor issue in WH_KEYBOARD_LL
106 - SHELL32: o minor speedup in PIDL handling
107 - KERNEL32: o removed experimental heap handle cache stats
108
109 2001-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
110 - WSOCK32: o Fix for sending FD_CLOSE notification when connection
111 is closed at the remote end.
112
113 2001-10-20: Achim Hasenmueller <achimha@innotek.de>
114 - WNASPI32: o do not fail in init routine in case ASPIROUT.SYS
115 is not present. Just return errors from all calls
116 if this is the case.
117 TODO: refine calls to not return any ASPI devices!
118
119 2001-10-19: Achim Hasenmueller <achimha@innotek.de>
120 - WSOCK32: o implemented error bit handling in Winsock 2.0
121 event semaphore notification for async select
122
123 2001-10-19: Patrick Haller <patrick.haller@innotek.de>
124 - COMCTL32: o updated listview and status to wine level
125 - COMDLG32: o fix crash in FileDlg95 (used freed memory object)
126
127 2001-10-18: knut stange osmundsen <kosmunds@csc.com>
128 - odin32.*.vac3*.mk:
129 o Added /noignorecase to ILIBFLAGS. Object libraries
130 is now using case sensitive names. This removes some
131 warnings during custombuild and fixes a duplicate symbol
132 problem in kKrnlLibR3.
133
134 2001-10-18: Achim Hasenmueller <achimha@innotek.de>
135 - USER32: o temporarily backed out a change from earlier today
136 in the color pointer conversion code that causes
137 severe regressions. Look for @@@AH in oslibres.cpp
138
139 2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
140 - DDRAW: o Check if DirectDraw object is associated with Clipper.
141 - SHELL32: o Compile fix for release build
142 - USER32: o Fix for pointer conversion
143 o Notify visible region callback when WM_SHOW arrives.
144 For some reason we don't receive a WM_VRNENABLED message
145 when a window is shown for the first time.
146 - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
147 - GDI32: o Removed wrong warnings about GpiQueryBitmapBits
148
149 2001-10-17: knut stange osmundsen <kosmunds@csc.com>
150 - common: o Corrected bug in kFile buffering which caused impdef to
151 crash in some cases.
152
153 2001-10-17: Patrick Haller <patrick.haller@innotek.de>
154 - SHELL32: o WINE resync 20011017
155 - KERNEL32: o minor heap optimization
156 - USER32: o minor handle mgmt optimizations
157 - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
158
159 2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
160 - DDRAW: o Fixes for DDBLT_COLORFILL
161 - WS2_32: o Added stubs for WSAEnumProtocolsA/W
162 - USER32: o SetFocus fix; don't always activate window because that
163 changes the z-order which interferes (among other things)
164 with GetNextDlgTabItem & GetNextDlgGroupItem
165 o Removed some GetNextDlgGroupItem changes which are no longer
166 necessary due to the SetFocus fix
167
168 2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
169 - KERNEL32, CUSTOMBUILD, USER32:
170 o Custom build fixes + changes
171 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
172 Some applications interpret this value as a signed long.
173 - USER32: o Fix for pointer conversion
174
175 2001-10-16: Patrick Haller <patrick.haller@innotek.de>
176 - WSOCK32: o enabled receive and send timeout socket options
177 (SO_SNDTIMEO, SO_RCVTIMEO)
178
179 2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
180 - KERNEL32, USER32, WNASPI32, DDRAW:
181 o Custom build updates
182
183 2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
184 - USER32: o Convert color cursor to monochrome if it only uses two colors.
185 This overcomes a silly limitation in some less advanced
186 display drivers. (SDD still has no support for color cursors!)
187 (fixes mouse cursor flickering & screen distortion when
188 accessing the frame buffer directly)
189 NOTE: This is a partial solution only. Real color cursors
190 still use GRADD's rather poor software emulation.
191
192 2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
193 - WSOCK32: o Overwrite IP header length in sendto for raw sockets
194 with IP_HDRINCL option set.
195 (fixes errors for apps that use big endian format for
196 the length word)
197 o WSAEnumNetworkEvents now reports (some) events properly
198 o Call WSACleanup during dll unload in case application
199 forgot to do that.
200
201 2000-10-12: Yuri Dario <mc6530@mclink.it>
202 - USER32: o GetNextDlgGroupItem fix for infinite loop in Opera
203
204 2001-10-12: Achim Hasenmueller <achimha@innotek.de>
205 - KERNEL32: o use bounce buffers if end of buffer crosses
206 tiled region barrier, not start of buffer
207 (yeah, being nit-picking here, OS/2 will actually
208 never give you a memory object that crosses the boundary...)
209
210 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
211 - include: o debugtools.h: memory corruption in debugstr_()
212 - KERNEL32: o (cheap) heap lookup acceleration
213 o better profiler calibration :)
214 o bounce buffers for DeviceIoControl() with
215 high memory buffers
216 - SHELL32: o ~10% speed improvement on shell folder operations ;-)
217
218 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
219 - USER32: o SetScrollRange: return error if min > max or out of range
220 (ERROR_INVALID_SCROLLBAR_RANGE)
221 (behaviour of NT4, SP6)
222 o Scrollbar control window not disabled properly when using
223 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
224 and call EnableScrollbar)
225 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
226 with size grip style)
227 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
228 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
229 wsock32
230
231 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
232 - KERNEL32: o added ODIN performance profiler
233 (perf_0.log for PROFILE builds)
234 - SHELL32: o ~30% speed improvement on shell folder operations
235
236 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
237 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
238 get called very often. (like IsWindow, GetParent & IsWindowVisible)
239 This tends to make logfiles very big...
240 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
241 IP_MULTICAST_TTL to setsockopt
242 o Add support for WS2_32 IPPROTO_IP options
243 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
244 wsock32
245 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
246 (surflock/unlock)
247
248 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
249 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
250 IOCTL_CDROM_LOAD_MEDIA
251 IOCTL_CDROM_PAUSE_AUDIO
252 IOCTL_CDROM_STOP_AUDIO
253 IOCTL_CDROM_RESUME_AUDIO
254 IOCTL_CDROM_PLAY_AUDIO_MSF
255 o added IOCTL_STORAGE_EJECT_MEDIA
256 IOCTL_STORAGE_LOAD_MEDIA
257 IOCTL_DISK_EJECT_MEDIA
258 IOCTL_DISK_CHECK_VERIFY
259 - IPHLPAPI: o added fake version of GetAdaptersInfo()
260 - ODINWRAP: o standard C compiler compatibility
261 - MAKE: o fixes to the profile make include
262 - SHELL32: o PIDL: instrumentation for performance tuning
263
264 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
265 - KERNEL32: o Image header page must be readonly
266 o Temporarily disabled high memory usage for heap
267
268 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
269 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
270 o added further messages to wndmsg.cpp
271 - KERNEL32: o added further error codes to error2WinError
272
273 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
274 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
275 if mp2 & AWP_ACTIVATE
276 (fixes activation of some inactive windows; used to be
277 activated but not brought to the top)
278
279 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
280 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
281 - USER32: o Eliminated flickering during frame sizing due to
282 unnecessary drawing
283 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
284 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
285
286 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
287 - QUARTZ/OLEAUT32:
288 o Wine 20011004 resync
289 - KERNEL32: o Reduce overhead for heap allocation
290 o Always allocate heap memory from high memory (if available)
291 o Allocate extra heap memory in 64kb units
292 MUST use 64kb here or else we are at risk of running out
293 of virtual memory space. (when allocating 4kb we actually
294 get 4kb + 60k uncommited)
295 (fixes out of resources error while loading big movies
296 in The Playa)
297
298 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
299 - DDRAW: o Added stretching support for blitting to the screen
300 (the Playa can now play movies in fullscreen mode)
301
302 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
303 - WINMM: o Allocate handle for new timer and verify handle
304 is valid before using it.
305 (prevents crashes when app attempts to delete timer twice
306 (DivX 4))
307 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
308 o Take clipping into account in SurfBlt4. Windowed DirectDraw
309 blitting now seems to work well.
310 (only tried DivX 4; needs more testing)
311 - USER32: o Rewrote sizing & moving of windows (frame tracking)
312 (ported Wine version + fixed some bugs)
313 Some applications (e.g. RealPlayer) resize themselves
314 when receiving WM_SIZING msgs. Not possible to send those
315 with PM's frame tracking.
316 TODO: fix flickering of size border (dynamic drag off)
317 TODO: WM_SIZING handling not 100% correct yet
318 TODO: Must display size/move cursor when starting action
319 from system menu
320 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
321 - OLEAUT32: o Wine update
322
323 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
324 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
325 (Some dlls (divx codec) call CoFreeUnusedLibraries which
326 unloads the same dll if we use CoLoadLibrary (-> crash)
327 NT's regsvr32 doesn't use CoLoadLibrary either)
328 - USER32: o OSLibWinGetMsg bugfix
329
330 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
331 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
332
Note: See TracBrowser for help on using the repository browser.