source: trunk/changelog@ 8966

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

* empty log message *

File size: 31.9 KB
RevLine 
[8966]1/* $Id: changelog,v 1.2249 2002-08-08 07:21:59 sandervl Exp $ */
[7715]2
[8966]3 2002-08-08: Sander van Leeuwen <sandervl@innotek >
4 - ChangeLog:o Obfuscated email addresses because people continue to
5 post the ChangeLog in mailinglists/newsgroups.
6
7 2002-08-07: Platon Fomichev <platon@innotek >
[8965]8 - USER32: o Listbox fix for keyboard search (Rewind (Wine/X11))
[8963]9
[8966]10 2002-08-05: Sander van Leeuwen <sandervl@innotek >
[8959]11 - USER32: o MsgWaitForMultipleObjects changes; check objects before
12 message queue status
[8961]13 o Translate WM_DRAWCLIPBOARD for clipboard change notification
[8959]14
[8966]15 2002-08-04: Sander van Leeuwen <sandervl@innotek >
[8957]16 - KERNEL32: o Return ERROR_OPERATION_ABORTED in GetOverlappedResult if
17 request was cancelled
18
[8966]19 2002-08-01: Sander van Leeuwen <sandervl@innotek >
[8950]20 - WINMM: o Keep filling DART buffers during WaveOutWrite until there's
21 no more room.
22 o Fill DART buffers during resume
23 - KERNEL32: o Create event semaphore during TEB setup. Used for
24 Post(Thread)Message in combination with MsgWaitForMultipleObjects
25 - USER32: o MsgWaitForMultipleObjects; change for waiting for object &
26 message (timeout != 0, fWaitAll == FALSE, nCount > 0)
27 If dwWakeMsg & QS_POSTMESSAGE, also wait for post msg event
28 semaphore.
29 o Signal post message event semaphore in PostMessageA/W &
30 PostThreadMessage
31
[8966]32 2002-07-31: Sander van Leeuwen <sandervl@innotek >
[8946]33 - WINMM: o Custom build function SetFixedWaveBufferSize added
34 (Call to tell winmm to expect simple fixed size buffers, so
35 it doesn't have to use very small DART buffers; this will
36 only work in very specific cases; it is not a good general
37 purpose solution)
[8948]38 - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns
39 on arrival of proper window message. (previously only
40 for sent messages; it should also support posted msgs)
[8946]41
[8966]42 2002-07-30: Platon Fomichev <platon@innotek >
[8937]43 - KERNEL32: o Unicode update
[8936]44
[8966]45 2002-07-29: Sander van Leeuwen <sandervl@innotek >
[8932]46 - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)
47
[8966]48 2002-07-28: Sander van Leeuwen <sandervl@innotek >
[8928]49 - KERNEL32: o Added function to disable os2cdrom.dmd aspi support
[8930]50 - WNASPI32: o Fixes for cdrom drive/burner recognition
[8928]51
[8966]52 2002-07-26: Sander van Leeuwen <sandervl@innotek >
[8924]53 - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread)
54 o Detach all dlls (LIFO order) before really unloading them; this
55 should take care of circular dependencies (crash while accessing
56 memory of a dll that has just been freed)
57 o Terminated & Resume suspended threads in ExitProcess to
58 prevent the process from getting stuck in the exitlist handler.
59 (OS/2 is allergic to suspended threads)
60 o Terminate thread when exception occurs after ExitProcess
61 o Protect larger part of on-demand page load handler
62 (DosEnterCritSec)
[8926]63 - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version
[8924]64
[8966]65 2002-07-24: Platon Fomichev <platon@innotek >
[8915]66 - USER32: o Pass on WM_PAINT of client window to default PM handler
67 if window is minimized
68 (fixes possible endless loop of WM_PAINT messages when
69 minimizing a window)
70
[8966]71 2002-07-23: Sander van Leeuwen <sandervl@innotek >
[8909]72 - KERNEL32: o Enhanced CreateWin32PeLdrExe
[8912]73 o Enhanced PE loader class to support files with PE image
74 starting at an offset != 0 (custom build)
75 o Fixes for memory map view with offset
[8909]76 - PELDR: o Modified for new CreateWin32PeLdrExe
77
[8966]78 2002-07-22: Sander van Leeuwen <sandervl@innotek >
[8905]79 - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us.
80
[8966]81 2002-07-21: Sander van Leeuwen <sandervl@innotek >
[8897]82 - KERNEL32: o Use shared memory in high region (> 512MB) if available
83 o Interface changes for shared memory allocation
84
[8966]85 2002-07-19: Sander van Leeuwen <sandervl@innotek >
[8894]86 - ODINCRT: o Dos*CriticalSection fixes
[8893]87
[8966]88 2002-07-16: Sander van Leeuwen <sandervl@innotek >
[8881]89 - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)
90
[8966]91 2002-07-15: Sander van Leeuwen <sandervl@innotek >
[8869]92 - GDI32: o Graphics handle management updates
93 o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,
94 CreateDIBitmap)
95 o DEFAULT_GUI_FONT is a system object (applications are not allowed
96 to delete it)
[8879]97 o Dynamically allocate GDI handle array to prevent waste of
98 shared memory (as it is a private array)
[8869]99 - USER32: o Updates for new handle management
100 o System pens & brushes can't be deleted by applications
[8876]101 - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory
102 o Allocate fake PE headers in high memory
103 o Allocate win32 & code heap memory in 64kb chunks
104 o Allocate PE image memory at 64kb boundary
[8879]105 o Dynamically allocate handlemanager array to prevent waste of
106 shared memory (as it is a private array (for now))
[8869]107
[8966]108 2002-07-13: Sander van Leeuwen <sandervl@innotek >
[8862]109 - KERNEL32: o We do NOT want to use any win32k services with custom builds
[8865]110 o Disabled 64kb alignment in VirtualAlloc for now
[8867]111 (algorithm lead to infinite recursion on SMP kernels,
112 pending a better algorithm)
[8862]113
[8966]114 2002-07-12: Platon Fomichev <platon@innotek >
[8860]115 - USER32: o Close menu when RMB is pressed outside menu window
116
[8966]117 2002-07-12: Sander van Leeuwen <sandervl@innotek >
[8856]118 - WINMM: o Changed init order; do not check for MMPM2 presence if
119 wave audio was already disabled
120 o Minor cleanup for mixer code
[8859]121 o Touch GETAPIMAP array to force OS/2 to make it valid; some
122 braindead audio drivers do not check pointers.
[8856]123
[8966]124 2002-07-11: Platon Fomichev <platon@innotek >
[8851]125 - COMCTL32: o Listview: clear background for area without items (ownerdrawn)
[8854]126 - USER32: o OSLibWinShowTaskList must query task list window
127 handle from OS/2 and not assume a constant handle value
[8851]128
[8966]129 2002-07-08: Sander van Leeuwen <sandervl@innotek >
[8845]130 - USER32: o Changed SetFocus fix; only disallow focus change for minimized
131 and disabled windows.
[8850]132 o Put back focus fix from 2001-11-20
[8845]133
[8966]134 2002-07-06: Sander van Leeuwen <sandervl@innotek >
[8843]135 - KERNEL32: o Com overlapped IO changes for reference counts
136
[8966]137 2002-07-05: Platon Fomichev <platon@innotek >
[8841]138 - USER32: o SetFocus not allowed on invisible windows
139
[8966]140 2002-07-05: Sander van Leeuwen <sandervl@innotek >
[8837]141 - KERNEL32: o Dump exception log to except.log in system32 directory
[8832]142 o Added functions to customize logging (filename +
143 enable/disable
[8837]144 o Keep reference count for overlapped IO objects to avoid
145 premature destruction
[8832]146
[8966]147 2002-07-03: Sander van Leeuwen <sandervl@innotek >
[8827]148 - WS2_32: o Added WSASendDisconnect stub
[8829]149 - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)
150 o Fill fixes for single lines (horizontal & vertical)
151 o Optimized 8, 16 & 32bpp Fills
[8827]152
[8966]153 2002-07-02: Sander van Leeuwen <sandervl@innotek >
[8820]154 - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
155 (problem located in GDI32)
156
[8966]157 2002-07-01: Sander van Leeuwen <sandervl@innotek >
[8811]158 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
159 (Wine doesn't do this, but experiments in Windows 2000 show
160 different behaviour)
[8813]161 o Edit control: don't beep when receiving Enter (single line
162 control)
[8815]163 - DDRAW: o Color fill bugfixes:
164 - fill up to height, not height - 1
165 - check for single pixel line fills -> avoid heap corruption
[8819]166 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
167 o SurfReleaseDC; initialize BITMAPINFO structure properly
168 before calling GetDIBits + fix for 16 bpp GetDIBits
169 (which always returns data in RGB555 format in our case)
170 o Fill16on16: convert RGB555 color value to RGB565
171 o Mark surface as changed (ChangeUniquenessValue) after
172 blit & fill
173 - KERNEL32: o Print win32 module name when exception occurs
[8811]174
[8966]175 2002-06-30: Sander van Leeuwen <sandervl@innotek >
[8805]176 - KERNEL32: o WriteFile for standard out: convert line feed without
177 carriage return into CR+LF
[8808]178 o VirtualFree; don't allow app to decommit stack pages
179 (VAC runtime uses last stack page to store some internal
180 data; if freed pe/pec will crash during exit)
[8805]181
[8966]182 2002-06-28: Sander van Leeuwen <sandervl@innotek >
[8796]183 - USER32: o Removed focus fix from 2001-11-20; controls of child
184 dialogs can receive input focus (CVP wizard dialogs)
[8798]185 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
186 flag is set (otherwise the hook will be called twice)
187 o Call message filter hook in IsDialogMessageA/W
188 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
[8796]189
[8966]190 2002-06-27: Platon Fomichev <platon@innotek >
[8793]191 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
192 done in windows)
193
[8966]194 2002-06-27: Sander van Leeuwen <sandervl@innotek >
[8791]195 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
196 is valid. (COMDLG32_UpdateCurrentDir)
197 (fixes crash in file dialog when double clicking on abstract
198 objects like 'My Computer')
199
[8966]200 2002-06-26: Sander van Leeuwen <sandervl@innotek >
[8778]201 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
202 DosDateTimeToFileTime functions;
203 Real problem lies in the fact that the times returned
204 by DosFindFirst, DosFindNext, DosQueryPathInfo &
205 DosQueryFileInfo are in local time; we must convert them
206 to file time (UTC)
[8781]207 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
208 floppy drives
209 o Fixed CreateFile for disks
[8786]210 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
211 fail if no disk present or when the media has been changed
212 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
213 always succeed
214 o Don't fail CreateFile for disk when DosOpen fails with
215 a sharing violation. Apparently this is allowed in windows;
216 although you can't do much with the handle. (limited to
217 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
[8778]218
[8966]219 2002-06-26: knut st. osmundsen <bird@anduin >
[8776]220 - KERNEL32\testcase:
221 o Added testcase for Test of SetConsoleCtrlHandler() and
222 GenerateConsoleCtrlEvent().
223 Note. The last part of it is known to fail since the
224 functions aren't 100% implemented yet.
225 o Added mini testcase for MultiByteToWideChar().
226 o Use the testsuite tools for unit testcases too.
227 - KERNEL32: o Partial implementation of Console Ctrl Handlers.
228 (Ctrl-Break and Ctrl-C)
229 o GetFileType on std files doesn't always return TYPE_CHAR.
230 Ask what kind of filehandle we have.
231 (Solves 'press key' problem with "wcc386.exe > file".)
232 o Enable writing to STDERR. (This might have brought into
233 light a redirection problem.)
234
[8966]235 2002-06-25: Sander van Leeuwen <sandervl@innotek >
[8761]236 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
237 key data; registry.dll returns the wrong value (too big;
238 appears size of internal storage)
[8764]239 o FileTimeToSystemTime fix (no problems with WGSS implementation)
[8767]240 o Removed bad unicode change
[8761]241
[8966]242 2002-06-25: knut st. osmundsen <bird@anduin >
[8761]243 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
244 is bad.
245 - SHELL32: o Bad linked list walking. (accessed node after free)
246 - USER32: o Allocate space the two missing RGB2 entries.
247 o Use "%.*s" and "%.*ls" when we have a string with a length.
248 (Crashing in logging is awfull. Creates zombies!)
249 - ODINCRT: o Reserve low 32MB of address space before initializing
250 the CRT IF we compile with the debug heap (kLib).
[8749]251
[8966]252 2002-06-24: knut st. osmundsen <bird@anduin >
[8748]253 - Testsuite:
254 o Most of the watcom case done and working.
255 - Make: o Corrected LIB paths of the win32 watcom setup.
256
[8966]257 2002-06-21: knut st. osmundsen <bird@anduin >
[8742]258 - KERNEL32: o LCMapStringW fix
259
[8966]260 2002-06-20: Platon Fomichev <platon@innotek >
[8738]261 - COMCTL32: o Don't erase background for ownerdrawn listview controls
262 (LISTVIEW_RefreshReport)
263
[8966]264 2002-06-20: Sander van Leeuwen <sandervl@innotek >
[8732]265 - OLE32: o Drag 'n drop fix
266 - USER32: o Drag 'n drop fix
267 o Enabled drag 'n drop again
[8737]268 o Added DisableDragDrop
[8732]269
[8966]270 2002-06-20: knut st. osmundsen <bird@anduin >
[8726]271 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
[8731]272 - Tools: o Added ExecTestcase.cmd for executing a testing and do
273 result logging.
274 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
275 - Testsuite:
276 o Use ExecTestcase.cmd for executing the testcases.
277 Logging & execute all testcases nomatter return values.
278 o Added watcomc.mak which is pretty simple watcom tests.
279 (currently noone of them really work 100%.)
280 o TODO: Make a timeout executer which kills the children when
281 they've been executing too long. This is required in order to
282 run the testsuite without human interaction.
[8726]283
[8966]284 2002-06-19: Sander van Leeuwen <sandervl@innotek >
[8719]285 - OLE32: o Drag 'n drop fixes
[8726]286
[8966]287 2002-06-18: Sander van Leeuwen <sandervl@innotek >
[8719]288 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
289 mouse state is out of sync and update if necessary
290
[8966]291 2002-06-18: knut st. osmundsen <bird@anduin >
[8704]292 - Win32k: o Fixed compiler warning which caused the M$ compiler
293 to choke on some systems.
[8718]294 - Testsuite:
295 o A collection of testcases running real win32 apps.
296 Not finished, just an idea currently, intended for
297 testing odin releases and changes.
298 Currently limiting ourselfs to CUI progs.
299 o A simple DoxyGen testcase is checked in.
300 o Read the micro howto in testsuite/Makefile.
301 - Make: o Synced with outside world. (NMAKE5 changes mostly.)
302 o Added support for TARGET_MODE = TESTCASE.
303 o Added separate tools file for the testsuite.
[8704]304
[8966]305 2002-06-17: Sander van Leeuwen <sandervl@innotek >
[8701]306 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
307
[8966]308 2002-06-16: Sander van Leeuwen <sandervl@innotek >
[8692]309 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
310 o Removed: LoadLibraryExA: expand library filename
311 (doesn't happen in Windows)
[8695]312 - INSTALL: o Create object for Odin User's Manual + fixed object
313 creation for OdinBug Manual
314 o Include OdinBug.HLP & OdinUser.INF
[8698]315 - SHELL32: o Fixed desktop object creation during win32 app install
[8692]316
[8966]317 2002-06-15: Sander van Leeuwen <sandervl@innotek >
[8668]318 - SETUPAPI: o Wine resync + added debug wrappers
[8673]319 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
[8674]320 o Check for NULL parameters in GetFullPathNameW
[8684]321 o hmfile.cpp: ParsePath fix; check boundary
322 o LoadLibraryExA: expand library filename; might contain
323 environment variables
[8704]324 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
[8688]325 registry.dll doesn't like this type for some reason
[8684]326 - USER32: o Do proper filtering for PeekMessage
[8671]327 - NTDLL: o Forward heap functions to kernel32
[8676]328 - QUARTZ: o Removed old code (stub dll now)
[8678]329 - AVIFIL32: o Resync with Wine
[8682]330 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
[8664]331
[8966]332 2002-06-13: Sander van Leeuwen <sandervl@innotek >
[8655]333 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
[8704]334 name used to synchronize global window handle array access
[8655]335 (to avoid name clash with Odin)
[8657]336 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
[8704]337 name used to synchronize global memory map list access
[8657]338 (to avoid name clash with Odin)
[8655]339
[8966]340 2002-06-13: Platon Fomichev <platon@innotek >
[8653]341 - USER32: o Only minimize or maximize window if appropriate style flag set
342
[8966]343 2002-06-12: Sander van Leeuwen <sandervl@innotek >
[8704]344 - KERNEL32: o If bytes present in COM device buffer, read them directly;
[8651]345 even for overlapped IO calls.
346
[8966]347 2002-06-11: Platon Fomichev <platon@innotek >
[8649]348 - SHELL32: o Ignore name changes for 'My Computer' and other non-file
349 objects (file dialogs)
350
[8966]351 2002-06-11: Sander van Leeuwen <sandervl@innotek >
[8641]352 - OLEAUT32, SHELL32:
353 o Some Wine updates
[8643]354 - KERNEL32: o Overlapped IO bugfixes
[8704]355 o Thread TEB linking bugfix
[8646]356 o Setup TEB structure before creating thread. Otherwise it's
357 created too late and thread functions called by the app
358 right after thread creation will fail.(e.g. SetThreadPriority)
[8641]359
[8966]360 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon >
[8635]361 - TOOLS\ODINBUG:
362 o Added VX-REXX sources for OdinBug
363 - DOC: o OdinBug.HLP update
364 - BIN: o OdinBug.exe update
365
[8966]366 2002-06-10: Sander van Leeuwen <sandervl@xs4all >
[8630]367 - OLE32: o Fixed bug in StgStreamImpl_Seek
368 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
369 (fixes crash in Java 1.4 install)
[8637]370 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
371 overlapped IO
[8630]372
[8966]373 2002-06-09: knut st. osmundsen <bird@anduin >
[8618]374 - Makefiles:
375 o Exclude dummy.c from the dependencies.
376
[8966]377 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon >
[8615]378 - KERNEL32: o Corrections for Austrian NLS file
379
[8966]380 2002-06-09: Sander van Leeuwen <sandervl@xs4all >
[8606]381 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
382 communication
383 (fixes OpenOffice 1.0 crash during install (at 76%))
[8615]384 o Skip window handle 0x68000000 (otherwise more difficult
385 to compare logs with old builds)
[8622]386 o Logging changes for comparing source file names
[8623]387 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
388 (fixes Java 1.4 installation (first dialog))
[8610]389 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
390 numeric id)
391 (fixes OpenOffice 1.0 file open dialog crash)
[8606]392 - WININET: o Fixed shlwapi imports
[8619]393 - OLE32: o Resync with latest Wine
[8622]394 - OLEAUT32: o Resync with latest Wine
[8606]395
[8966]396 2002-06-08: Sander van Leeuwen <sandervl@xs4all >
[8595]397 - SHELL32: o Moved resource files to subdir
398 - COMDLG32: o Compile fix + moved resource files to subdir
[8598]399 - KERNEL32: o Export OSLibDosDevIOCtl
400 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
401 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
402 package from May 2001 (or newer) or recent JJSCDROM)
403 - DDRAW: o Fixed clipping bug with non-frame windows
[8603]404 o Print FOURCCs supported by Dive
[8595]405
[8966]406 2002-06-08: knut *st. osmundsen <bird@anduin >
[8597]407 - TOOLS\WRC:o Compile fix
408
[8966]409 2002-06-07: Sander van Leeuwen <sandervl@innotek >
[8592]410 - SHLWAPI: o Resync with latest Wine & added LGPL license
411 - SHELL32: o Some updates for upcoming resync
412
[8966]413 2002-06-06: knut st. osmundsen <bird@anduin >
[8591]414 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
[8590]415
[8966]416 2002-06-06: Mark Paulus <mark.paulus@wcom >
[8590]417 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
[8581]418 opening an existing file
419
[8966]420 2002-06-06: Sander van Leeuwen <sandervl@innotek >
[8578]421 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
422
[8966]423 2002-06-06: Platon Fomichev <platon@innotek >
[8576]424 - SHELL32: o Always expand root when initializing treeview
425 o Do not sort tree in TVN_ITEMEXPANDINGA
426
[8966]427 2002-06-05: Sander van Leeuwen <sandervl@innotek >
[8569]428 - WINMM: o Put back original DART buffer size selection code
429 (new one messes up e.g. RealPlayer)
[8571]430 o Postpone recording when waveInStart called without
431 any buffers in the queue. Start in during next
432 waveInAddBuffer call.
[8573]433 o Fixed DART waveout resume
[8569]434
[8966]435 2002-06-04: Sander van Leeuwen <sandervl@innotek >
[8565]436 - USER32: o Fix for AltGr key combinations
[8567]437 - WINMM: o Updates for wave playback
[8565]438
[8966]439 2002-06-03: Sander van Leeuwen <sandervl@innotek >
[8554]440 - USER32, OLE32:
441 o Drag and drop fixes
[8561]442 - BIN\ODINBUG:
443 o Update by Herwig Bauernfeind (0.5.6a)
444 - DOC\MANUAL:
445 o Users manual sources by Herwig Bauernfeind
446 - DOC: o Added odinuser.inf by Herwig Bauernfeind
[8554]447
[8966]448 2002-06-02: Sander van Leeuwen <sandervl@innotek >
[8546]449 - USER32\CONTROLS:
450 o New dll for user32 controls (latest Wine)
451 (not activated, not finished (resync))
452 - USER32: o Moved drag & drop code to seperate file
[8550]453 o Updates for OLE drag 'n drop
[8549]454 - KERNEL32: o LogException: check lockcount before changing it on entry
[8547]455 (it is not always > 0 -> previously caused hang in exception
456 handler (zombie process))
[8550]457 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
458 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
459 (todo: Odin app -> WPS)
[8546]460
[8966]461 2002-06-01: Sander van Leeuwen <sandervl@innotek >
[8536]462 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
463 performance
[8538]464 o DragQueryFileW fix
465 - WINMM: o Implemented minimal control change notification
466 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
467 control (probably not 100% correct)
468 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
[8590]469 (works in notepad; drag file object from WPS into notepad
[8538]470 window)
[8536]471
[8966]472 2002-05-31: Sander van Leeuwen <sandervl@innotek >
[8531]473 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
474 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
475 (with LLMHF_INJECTED flag set)
476
[8966]477 2002-05-31: Platon Fomichev <platon@innotek >
[8534]478 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
479
[8966]480 2002-05-30: Sander van Leeuwen <sandervl@innotek >
[8529]481 - WINMM: o Mixer fixes
482
[8966]483 2002-05-30: Platon Fomichev <platon@innotek >
[8527]484 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
485 (seems to be done in windows)
486
[8966]487 2002-05-29: Sander van Leeuwen <sandervl@innotek >
[8511]488 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
489 (fixes AbiWord keyboard input)
[8516]490 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
491 o mixerGetLineInfoW fix
[8590]492 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
[8523]493 wrt cx parameter (when set to zero)
[8519]494 (fixes properties dialog of sndvol32.exe (windows mixer app))
[8521]495 o Updated status control to latest Wine & applied two
496 bugfixes (already sent to wine-patches)
[8511]497
[8966]498 2002-05-29: Platon Fomichev <platon@innotek >
[8513]499 - USER32: o GetAsyncKeyState fix for VK_MENU
[8525]500 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
501 (invalidate control to prevent leftovers of size grip)
[8513]502
[8966]503 2002-05-28: Sander van Leeuwen <sandervl@innotek >
[8505]504 - REGSVR32: o Fixed startup
505 - WINMM: o Completely implemented mixerSetControlDetails
506 o Mixer updates
[8509]507 o Support added for master volume (ioctl90 mode)
[8507]508 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
509 o Wave recording now works
[8505]510
[8966]511 2002-05-28: Platon Fomichev <platon@innotek >
[8502]512 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
[8503]513 - KERNEL32: o Debugger updates
[8502]514
[8966]515 2002-05-27: Sander van Leeuwen <sandervl@innotek >
[8494]516 - WINMM: o Completely implemented mixerGetControlDetailsA/W
517 o Mixer updates
[8496]518 - TESTAPP\MIXER:
519 o Test application for mixer functions
[8494]520
[8966]521 2002-05-25: Sander van Leeuwen <sandervl@innotek >
[8487]522 - WINMM: o Fix for soundcards without ioctl90 mixer support
[8491]523 o Many mixer updates
[8487]524
[8966]525 2002-05-24: Sander van Leeuwen <sandervl@innotek >
[8484]526 - WINMM: o More mixer updates (not yet finished)
527
[8966]528 2002-05-23: Yuri Dario <mc6530@mclink >
[8475]529 - USER32: o Don't beep when unable to find menu item when alt key pressed
530
[8966]531 2002-05-23: Sander van Leeuwen <sandervl@innotek >
[8475]532 - WINMM: o Mixer updates (not yet finished)
533
[8966]534 2002-05-23: Platon Fomichev <platon@innotek >
[8473]535 - USER32: o Keyboard fixes for right alt & right shift
536
[8966]537 2002-05-22: Sander van Leeuwen <sandervl@innotek >
[8466]538 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
539 (fixes RealPlayer (PostThreadMessage))
[8467]540 - WINMM: o Added debug wrappers
[8471]541 o Started with mixer api rewrite
[8466]542
[8966]543 2002-05-21: Sander van Leeuwen <sandervl@innotek >
[8460]544 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
545
[8966]546 2002-05-20: Sander van Leeuwen <sandervl@innotek >
[8458]547 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
548 since a dll that depends on dlls with an exitlist handler
549 doesn't get properly unloaded (initterm not called for unload
550 nor for a 2nd load)
551
[8966]552 2002-05-20: Dmitry Froloff <froloff@os2 >
[8455]553 - KERNEL32: o Removed 64 MB memory mapped file limit
554 o Fix for opening memory mapped file with size larger than
555 the file size
556
[8966]557 2002-05-17: Platon Fomichev <platon@innotek >
[8451]558 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
559 if window is not visible (fixes endless loop in
560 property sheet when switching page with keyboard)
561
[8966]562 2002-05-17: Sander van Leeuwen <sandervl@innotek >
[8447]563 - OLEAUT32: o Resync with latest Wine
[8453]564 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
565 (IOCTL_CDROM_CURRENT_POSITION only)
566 o IOCTL_CDROM_READ_TOC fix
[8447]567
[8966]568 2002-05-16: knut st. osmundsen <bird@anduin >
[8435]569 - MAKE: o Merged in latest changes.
570 o Create NewConfigure.cmd for this environment.
571 Try NewConfigure.cmd -? first.
572 (Do 'nmake needed' before calling this. (stupid!))
573 o Please note that this is still not 100% configured for
574 Odin32 yet. But eventually it will replace the existing
575 make system.
576
[8966]577 2002-05-16: Sander van Leeuwen <sandervl@innotek >
[8425]578 - NTDLL: o Partial resync with Wine
[8430]579 - KERNEL32: o Export some functions for NTDLL
580 o Fixed creation of logfile for executables on readonly volumes
581 o RegQueryInfoKeyW fix
[8437]582 o TLS fix for pe2lx images
583 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
[8590]584 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
[8437]585 SystemParametersInfoA parameters
[8440]586 - OLE32: o Resync with latest Wine
[8425]587
[8966]588 2002-05-15: Sander van Leeuwen <sandervl@innotek >
[8414]589 - DINPUT: o Made mouse code reentrant
[8417]590 - GDI32: o Fix for EnumFontFamiliesA/W
[8419]591 - SETUPAPI: o Resync with latest Wine
[8414]592
[8966]593 2002-05-14: Sander van Leeuwen <sandervl@innotek >
[8435]594 - KERNEL32: o CustForce2GBFileSize function added to force
[8407]595 GetVolumeInformation to tell the app all partitions are FAT
596 (2 GB file size limitation)
[8412]597 - COMCTL32: o Merged property sheet control with latest Wine version
[8407]598
[8966]599 2002-05-14: Platon Fomichev <platon@innotek >
[8405]600 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
601 SWP_FOCUS(DE)ACTIVATE message.
602
[8966]603 2002-05-10: Platon Fomichev <platon@innotek >
[8402]604 - KERNEL32: o Parallel port updates (use resource manager to query
605 hardware configuration)
606
[8966]607 2002-05-10: Sander van Leeuwen <sandervl@innotek >
[8399]608 - KERNEL32: o Applications are now allowed to read physical disks or
609 mounted partitions. Write access is only allowed for
610 unmounted partitions or floppy disks.
611 o Implemented GetFileSize for disk objects; corrected
612 return value for some failures (-1)
613
[8966]614 2002-05-09: Sander van Leeuwen <sandervl@innotek >
[8435]615 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
[8395]616 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
617 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
618 mountpoints (e.g. C:\)
619 o Rewrote FindFirst/NextVolume to use LVM interface (if
620 availabe; else fail)
621 o Extended GetDriveType & GetVolumeInformation for volume
622 names (instead of only disk names (e.g. C:\))
[8399]623 o GetVolumeInformation change: keep file system name if
624 NTFS or FAT32
625 o Implemented unmounted volume and physical disk access
[8395]626
[8966]627 2002-05-08: Sander van Leeuwen <sandervl@innotek >
[8383]628 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
629 toolbar, tab, pager, nativefont, imagelist code
630 o Updated license (LGPL) for comctl32
[8388]631 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
632 in NTDLL)
[8390]633 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
[8395]634 - KERNEL32: o Implemented volume & volume mountpoint functions
[8393]635 (win2k and up)
[8435]636 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
[8395]637 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
[8383]638
[8966]639 2002-05-08: Platon Fomichev <platon@innotek >
[8383]640 - COMCTL32: o Merged listview control with latest Wine
641
[8966]642 2002-05-07: Sander van Leeuwen <sandervl@innotek >
[8379]643 - USER32: o WH_MOUSE_LL hook fixes
644
[8966]645 2002-05-07: Platon Fomichev <platon@innotek >
[8378]646 - USER32: o Listbox/combobox fix for MFC apps
647 o SetParent doesn't change WS_CHILD style
648 o Experimental change for getParent
649
[8966]650 2002-05-07: knut st. osmundsen <bird@anduin >
[8376]651 - CmdQd: o The daemon shouldn't inherit standard handles when started.
652 (Hung the daily build, since we use tee to do logging.)
653
[8966]654 2002-05-06: Sander van Leeuwen <sandervl@innotek >
[8371]655 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
656
[8966]657 2002-05-01: Sander van Leeuwen <sandervl@innotek >
[8363]658 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
659 translation array
660
Note: See TracBrowser for help on using the repository browser.