source: trunk/changelog@ 8758

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

* empty log message *

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