source: trunk/changelog@ 8786

Last change on this file since 8786 was 8786, checked in by sandervl, 23 years ago

* empty log message *

File size: 21.9 KB
Line 
1/* $Id: changelog,v 1.2192 2002-06-26 15:25:31 sandervl Exp $ */
2
3 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
4 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
5 DosDateTimeToFileTime functions;
6 Real problem lies in the fact that the times returned
7 by DosFindFirst, DosFindNext, DosQueryPathInfo &
8 DosQueryFileInfo are in local time; we must convert them
9 to file time (UTC)
10 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
11 floppy drives
12 o Fixed CreateFile for disks
13 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
14 fail if no disk present or when the media has been changed
15 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
16 always succeed
17 o Don't fail CreateFile for disk when DosOpen fails with
18 a sharing violation. Apparently this is allowed in windows;
19 although you can't do much with the handle. (limited to
20 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
21
22 2002-06-26: knut st. osmundsen <bird@anduin.net>
23 - KERNEL32\testcase:
24 o Added testcase for Test of SetConsoleCtrlHandler() and
25 GenerateConsoleCtrlEvent().
26 Note. The last part of it is known to fail since the
27 functions aren't 100% implemented yet.
28 o Added mini testcase for MultiByteToWideChar().
29 o Use the testsuite tools for unit testcases too.
30 - KERNEL32: o Partial implementation of Console Ctrl Handlers.
31 (Ctrl-Break and Ctrl-C)
32 o GetFileType on std files doesn't always return TYPE_CHAR.
33 Ask what kind of filehandle we have.
34 (Solves 'press key' problem with "wcc386.exe > file".)
35 o Enable writing to STDERR. (This might have brought into
36 light a redirection problem.)
37
38 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
39 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
40 key data; registry.dll returns the wrong value (too big;
41 appears size of internal storage)
42 o FileTimeToSystemTime fix (no problems with WGSS implementation)
43 o Removed bad unicode change
44
45 2002-06-25: knut st. osmundsen <bird@anduin.net>
46 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
47 is bad.
48 - SHELL32: o Bad linked list walking. (accessed node after free)
49 - USER32: o Allocate space the two missing RGB2 entries.
50 o Use "%.*s" and "%.*ls" when we have a string with a length.
51 (Crashing in logging is awfull. Creates zombies!)
52 - ODINCRT: o Reserve low 32MB of address space before initializing
53 the CRT IF we compile with the debug heap (kLib).
54
55 2002-06-24: knut st. osmundsen <bird@anduin.net>
56 - Testsuite:
57 o Most of the watcom case done and working.
58 - Make: o Corrected LIB paths of the win32 watcom setup.
59
60 2002-06-21: knut st. osmundsen <bird@anduin.net>
61 - KERNEL32: o LCMapStringW fix
62
63 2002-06-20: Platon Fomichev <platon@innotek.de>
64 - COMCTL32: o Don't erase background for ownerdrawn listview controls
65 (LISTVIEW_RefreshReport)
66
67 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
68 - OLE32: o Drag 'n drop fix
69 - USER32: o Drag 'n drop fix
70 o Enabled drag 'n drop again
71 o Added DisableDragDrop
72
73 2002-06-20: knut st. osmundsen <bird@anduin.net>
74 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
75 - Tools: o Added ExecTestcase.cmd for executing a testing and do
76 result logging.
77 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
78 - Testsuite:
79 o Use ExecTestcase.cmd for executing the testcases.
80 Logging & execute all testcases nomatter return values.
81 o Added watcomc.mak which is pretty simple watcom tests.
82 (currently noone of them really work 100%.)
83 o TODO: Make a timeout executer which kills the children when
84 they've been executing too long. This is required in order to
85 run the testsuite without human interaction.
86
87 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
88 - OLE32: o Drag 'n drop fixes
89
90 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
91 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
92 mouse state is out of sync and update if necessary
93
94 2002-06-18: knut st. osmundsen <bird@anduin.net>
95 - Win32k: o Fixed compiler warning which caused the M$ compiler
96 to choke on some systems.
97 - Testsuite:
98 o A collection of testcases running real win32 apps.
99 Not finished, just an idea currently, intended for
100 testing odin releases and changes.
101 Currently limiting ourselfs to CUI progs.
102 o A simple DoxyGen testcase is checked in.
103 o Read the micro howto in testsuite/Makefile.
104 - Make: o Synced with outside world. (NMAKE5 changes mostly.)
105 o Added support for TARGET_MODE = TESTCASE.
106 o Added separate tools file for the testsuite.
107
108 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
109 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
110
111 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
112 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
113 o Removed: LoadLibraryExA: expand library filename
114 (doesn't happen in Windows)
115 - INSTALL: o Create object for Odin User's Manual + fixed object
116 creation for OdinBug Manual
117 o Include OdinBug.HLP & OdinUser.INF
118 - SHELL32: o Fixed desktop object creation during win32 app install
119
120 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
121 - SETUPAPI: o Wine resync + added debug wrappers
122 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
123 o Check for NULL parameters in GetFullPathNameW
124 o hmfile.cpp: ParsePath fix; check boundary
125 o LoadLibraryExA: expand library filename; might contain
126 environment variables
127 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
128 registry.dll doesn't like this type for some reason
129 - USER32: o Do proper filtering for PeekMessage
130 - NTDLL: o Forward heap functions to kernel32
131 - QUARTZ: o Removed old code (stub dll now)
132 - AVIFIL32: o Resync with Wine
133 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
134
135 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
136 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
137 name used to synchronize global window handle array access
138 (to avoid name clash with Odin)
139 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
140 name used to synchronize global memory map list access
141 (to avoid name clash with Odin)
142
143 2002-06-13: Platon Fomichev <platon@innotek.de>
144 - USER32: o Only minimize or maximize window if appropriate style flag set
145
146 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
147 - KERNEL32: o If bytes present in COM device buffer, read them directly;
148 even for overlapped IO calls.
149
150 2002-06-11: Platon Fomichev <platon@innotek.de>
151 - SHELL32: o Ignore name changes for 'My Computer' and other non-file
152 objects (file dialogs)
153
154 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
155 - OLEAUT32, SHELL32:
156 o Some Wine updates
157 - KERNEL32: o Overlapped IO bugfixes
158 o Thread TEB linking bugfix
159 o Setup TEB structure before creating thread. Otherwise it's
160 created too late and thread functions called by the app
161 right after thread creation will fail.(e.g. SetThreadPriority)
162
163 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
164 - TOOLS\ODINBUG:
165 o Added VX-REXX sources for OdinBug
166 - DOC: o OdinBug.HLP update
167 - BIN: o OdinBug.exe update
168
169 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
170 - OLE32: o Fixed bug in StgStreamImpl_Seek
171 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
172 (fixes crash in Java 1.4 install)
173 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
174 overlapped IO
175
176 2002-06-09: knut st. osmundsen <bird@anduin.net>
177 - Makefiles:
178 o Exclude dummy.c from the dependencies.
179
180 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
181 - KERNEL32: o Corrections for Austrian NLS file
182
183 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
184 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
185 communication
186 (fixes OpenOffice 1.0 crash during install (at 76%))
187 o Skip window handle 0x68000000 (otherwise more difficult
188 to compare logs with old builds)
189 o Logging changes for comparing source file names
190 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
191 (fixes Java 1.4 installation (first dialog))
192 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
193 numeric id)
194 (fixes OpenOffice 1.0 file open dialog crash)
195 - WININET: o Fixed shlwapi imports
196 - OLE32: o Resync with latest Wine
197 - OLEAUT32: o Resync with latest Wine
198
199 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
200 - SHELL32: o Moved resource files to subdir
201 - COMDLG32: o Compile fix + moved resource files to subdir
202 - KERNEL32: o Export OSLibDosDevIOCtl
203 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
204 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
205 package from May 2001 (or newer) or recent JJSCDROM)
206 - DDRAW: o Fixed clipping bug with non-frame windows
207 o Print FOURCCs supported by Dive
208
209 2002-06-08: knut *st. osmundsen <bird@anduin.net>
210 - TOOLS\WRC:o Compile fix
211
212 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
213 - SHLWAPI: o Resync with latest Wine & added LGPL license
214 - SHELL32: o Some updates for upcoming resync
215
216 2002-06-06: knut st. osmundsen <bird@anduin.net>
217 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
218
219 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
220 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
221 opening an existing file
222
223 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
224 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
225
226 2002-06-06: Platon Fomichev <platon@innotek.de>
227 - SHELL32: o Always expand root when initializing treeview
228 o Do not sort tree in TVN_ITEMEXPANDINGA
229
230 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
231 - WINMM: o Put back original DART buffer size selection code
232 (new one messes up e.g. RealPlayer)
233 o Postpone recording when waveInStart called without
234 any buffers in the queue. Start in during next
235 waveInAddBuffer call.
236 o Fixed DART waveout resume
237
238 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
239 - USER32: o Fix for AltGr key combinations
240 - WINMM: o Updates for wave playback
241
242 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
243 - USER32, OLE32:
244 o Drag and drop fixes
245 - BIN\ODINBUG:
246 o Update by Herwig Bauernfeind (0.5.6a)
247 - DOC\MANUAL:
248 o Users manual sources by Herwig Bauernfeind
249 - DOC: o Added odinuser.inf by Herwig Bauernfeind
250
251 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
252 - USER32\CONTROLS:
253 o New dll for user32 controls (latest Wine)
254 (not activated, not finished (resync))
255 - USER32: o Moved drag & drop code to seperate file
256 o Updates for OLE drag 'n drop
257 - KERNEL32: o LogException: check lockcount before changing it on entry
258 (it is not always > 0 -> previously caused hang in exception
259 handler (zombie process))
260 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
261 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
262 (todo: Odin app -> WPS)
263
264 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
265 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
266 performance
267 o DragQueryFileW fix
268 - WINMM: o Implemented minimal control change notification
269 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
270 control (probably not 100% correct)
271 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
272 (works in notepad; drag file object from WPS into notepad
273 window)
274
275 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
276 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
277 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
278 (with LLMHF_INJECTED flag set)
279
280 2002-05-31: Platon Fomichev <platon@innotek.de>
281 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
282
283 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
284 - WINMM: o Mixer fixes
285
286 2002-05-30: Platon Fomichev <platon@innotek.de>
287 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
288 (seems to be done in windows)
289
290 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
291 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
292 (fixes AbiWord keyboard input)
293 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
294 o mixerGetLineInfoW fix
295 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
296 wrt cx parameter (when set to zero)
297 (fixes properties dialog of sndvol32.exe (windows mixer app))
298 o Updated status control to latest Wine & applied two
299 bugfixes (already sent to wine-patches)
300
301 2002-05-29: Platon Fomichev <platon@innotek.de>
302 - USER32: o GetAsyncKeyState fix for VK_MENU
303 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
304 (invalidate control to prevent leftovers of size grip)
305
306 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
307 - REGSVR32: o Fixed startup
308 - WINMM: o Completely implemented mixerSetControlDetails
309 o Mixer updates
310 o Support added for master volume (ioctl90 mode)
311 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
312 o Wave recording now works
313
314 2002-05-28: Platon Fomichev <platon@innotek.de>
315 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
316 - KERNEL32: o Debugger updates
317
318 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
319 - WINMM: o Completely implemented mixerGetControlDetailsA/W
320 o Mixer updates
321 - TESTAPP\MIXER:
322 o Test application for mixer functions
323
324 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
325 - WINMM: o Fix for soundcards without ioctl90 mixer support
326 o Many mixer updates
327
328 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
329 - WINMM: o More mixer updates (not yet finished)
330
331 2002-05-23: Yuri Dario <mc6530@mclink.it>
332 - USER32: o Don't beep when unable to find menu item when alt key pressed
333
334 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
335 - WINMM: o Mixer updates (not yet finished)
336
337 2002-05-23: Platon Fomichev <platon@innotek.de>
338 - USER32: o Keyboard fixes for right alt & right shift
339
340 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
341 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
342 (fixes RealPlayer (PostThreadMessage))
343 - WINMM: o Added debug wrappers
344 o Started with mixer api rewrite
345
346 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
347 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
348
349 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
350 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
351 since a dll that depends on dlls with an exitlist handler
352 doesn't get properly unloaded (initterm not called for unload
353 nor for a 2nd load)
354
355 2002-05-20: Dmitry Froloff <froloff@os2.ru>
356 - KERNEL32: o Removed 64 MB memory mapped file limit
357 o Fix for opening memory mapped file with size larger than
358 the file size
359
360 2002-05-17: Platon Fomichev <platon@innotek.de>
361 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
362 if window is not visible (fixes endless loop in
363 property sheet when switching page with keyboard)
364
365 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
366 - OLEAUT32: o Resync with latest Wine
367 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
368 (IOCTL_CDROM_CURRENT_POSITION only)
369 o IOCTL_CDROM_READ_TOC fix
370
371 2002-05-16: knut st. osmundsen <bird@anduin.net>
372 - MAKE: o Merged in latest changes.
373 o Create NewConfigure.cmd for this environment.
374 Try NewConfigure.cmd -? first.
375 (Do 'nmake needed' before calling this. (stupid!))
376 o Please note that this is still not 100% configured for
377 Odin32 yet. But eventually it will replace the existing
378 make system.
379
380 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
381 - NTDLL: o Partial resync with Wine
382 - KERNEL32: o Export some functions for NTDLL
383 o Fixed creation of logfile for executables on readonly volumes
384 o RegQueryInfoKeyW fix
385 o TLS fix for pe2lx images
386 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
387 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
388 SystemParametersInfoA parameters
389 - OLE32: o Resync with latest Wine
390
391 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
392 - DINPUT: o Made mouse code reentrant
393 - GDI32: o Fix for EnumFontFamiliesA/W
394 - SETUPAPI: o Resync with latest Wine
395
396 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
397 - KERNEL32: o CustForce2GBFileSize function added to force
398 GetVolumeInformation to tell the app all partitions are FAT
399 (2 GB file size limitation)
400 - COMCTL32: o Merged property sheet control with latest Wine version
401
402 2002-05-14: Platon Fomichev <platon@innotek.de>
403 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
404 SWP_FOCUS(DE)ACTIVATE message.
405
406 2002-05-10: Platon Fomichev <platon@innotek.de>
407 - KERNEL32: o Parallel port updates (use resource manager to query
408 hardware configuration)
409
410 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
411 - KERNEL32: o Applications are now allowed to read physical disks or
412 mounted partitions. Write access is only allowed for
413 unmounted partitions or floppy disks.
414 o Implemented GetFileSize for disk objects; corrected
415 return value for some failures (-1)
416
417 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
418 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
419 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
420 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
421 mountpoints (e.g. C:\)
422 o Rewrote FindFirst/NextVolume to use LVM interface (if
423 availabe; else fail)
424 o Extended GetDriveType & GetVolumeInformation for volume
425 names (instead of only disk names (e.g. C:\))
426 o GetVolumeInformation change: keep file system name if
427 NTFS or FAT32
428 o Implemented unmounted volume and physical disk access
429
430 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
431 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
432 toolbar, tab, pager, nativefont, imagelist code
433 o Updated license (LGPL) for comctl32
434 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
435 in NTDLL)
436 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
437 - KERNEL32: o Implemented volume & volume mountpoint functions
438 (win2k and up)
439 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
440 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
441
442 2002-05-08: Platon Fomichev <platon@innotek.de>
443 - COMCTL32: o Merged listview control with latest Wine
444
445 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
446 - USER32: o WH_MOUSE_LL hook fixes
447
448 2002-05-07: Platon Fomichev <platon@innotek.de>
449 - USER32: o Listbox/combobox fix for MFC apps
450 o SetParent doesn't change WS_CHILD style
451 o Experimental change for getParent
452
453 2002-05-07: knut st. osmundsen <bird@anduin.net>
454 - CmdQd: o The daemon shouldn't inherit standard handles when started.
455 (Hung the daily build, since we use tee to do logging.)
456
457 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
458 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
459
460 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
461 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
462 translation array
463
Note: See TracBrowser for help on using the repository browser.