Changeset 8975
- Timestamp:
- Aug 8, 2002, 7:37:04 PM (23 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
changelog (modified) (2 diffs)
-
doc/ChangeLog-2002 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r8972 r8975 1 /* $Id: changelog,v 1.225 3 2002-08-08 17:11:24sandervl Exp $ */1 /* $Id: changelog,v 1.2254 2002-08-08 17:36:37 sandervl Exp $ */ 2 2 3 3 2002-08-08: Platon Fomichev <platon@innotek > … … 38 38 PostThreadMessage 39 39 40 2002-07-31: Sander van Leeuwen <sandervl@innotek >41 - WINMM: o Custom build function SetFixedWaveBufferSize added42 (Call to tell winmm to expect simple fixed size buffers, so43 it doesn't have to use very small DART buffers; this will44 only work in very specific cases; it is not a good general45 purpose solution)46 - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns47 on arrival of proper window message. (previously only48 for sent messages; it should also support posted msgs)49 50 2002-07-30: Platon Fomichev <platon@innotek >51 - KERNEL32: o Unicode update52 53 2002-07-29: Sander van Leeuwen <sandervl@innotek >54 - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)55 56 2002-07-28: Sander van Leeuwen <sandervl@innotek >57 - KERNEL32: o Added function to disable os2cdrom.dmd aspi support58 - WNASPI32: o Fixes for cdrom drive/burner recognition59 60 2002-07-26: Sander van Leeuwen <sandervl@innotek >61 - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread)62 o Detach all dlls (LIFO order) before really unloading them; this63 should take care of circular dependencies (crash while accessing64 memory of a dll that has just been freed)65 o Terminated & Resume suspended threads in ExitProcess to66 prevent the process from getting stuck in the exitlist handler.67 (OS/2 is allergic to suspended threads)68 o Terminate thread when exception occurs after ExitProcess69 o Protect larger part of on-demand page load handler70 (DosEnterCritSec)71 - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version72 73 2002-07-24: Platon Fomichev <platon@innotek >74 - USER32: o Pass on WM_PAINT of client window to default PM handler75 if window is minimized76 (fixes possible endless loop of WM_PAINT messages when77 minimizing a window)78 79 2002-07-23: Sander van Leeuwen <sandervl@innotek >80 - KERNEL32: o Enhanced CreateWin32PeLdrExe81 o Enhanced PE loader class to support files with PE image82 starting at an offset != 0 (custom build)83 o Fixes for memory map view with offset84 - PELDR: o Modified for new CreateWin32PeLdrExe85 86 2002-07-22: Sander van Leeuwen <sandervl@innotek >87 - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us.88 89 2002-07-21: Sander van Leeuwen <sandervl@innotek >90 - KERNEL32: o Use shared memory in high region (> 512MB) if available91 o Interface changes for shared memory allocation92 93 2002-07-19: Sander van Leeuwen <sandervl@innotek >94 - ODINCRT: o Dos*CriticalSection fixes95 96 2002-07-16: Sander van Leeuwen <sandervl@innotek >97 - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)98 99 2002-07-15: Sander van Leeuwen <sandervl@innotek >100 - GDI32: o Graphics handle management updates101 o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,102 CreateDIBitmap)103 o DEFAULT_GUI_FONT is a system object (applications are not allowed104 to delete it)105 o Dynamically allocate GDI handle array to prevent waste of106 shared memory (as it is a private array)107 - USER32: o Updates for new handle management108 o System pens & brushes can't be deleted by applications109 - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory110 o Allocate fake PE headers in high memory111 o Allocate win32 & code heap memory in 64kb chunks112 o Allocate PE image memory at 64kb boundary113 o Dynamically allocate handlemanager array to prevent waste of114 shared memory (as it is a private array (for now))115 116 2002-07-13: Sander van Leeuwen <sandervl@innotek >117 - KERNEL32: o We do NOT want to use any win32k services with custom builds118 o Disabled 64kb alignment in VirtualAlloc for now119 (algorithm lead to infinite recursion on SMP kernels,120 pending a better algorithm)121 122 2002-07-12: Platon Fomichev <platon@innotek >123 - USER32: o Close menu when RMB is pressed outside menu window124 125 2002-07-12: Sander van Leeuwen <sandervl@innotek >126 - WINMM: o Changed init order; do not check for MMPM2 presence if127 wave audio was already disabled128 o Minor cleanup for mixer code129 o Touch GETAPIMAP array to force OS/2 to make it valid; some130 braindead audio drivers do not check pointers.131 132 2002-07-11: Platon Fomichev <platon@innotek >133 - COMCTL32: o Listview: clear background for area without items (ownerdrawn)134 - USER32: o OSLibWinShowTaskList must query task list window135 handle from OS/2 and not assume a constant handle value136 137 2002-07-08: Sander van Leeuwen <sandervl@innotek >138 - USER32: o Changed SetFocus fix; only disallow focus change for minimized139 and disabled windows.140 o Put back focus fix from 2001-11-20141 142 2002-07-06: Sander van Leeuwen <sandervl@innotek >143 - KERNEL32: o Com overlapped IO changes for reference counts144 145 2002-07-05: Platon Fomichev <platon@innotek >146 - USER32: o SetFocus not allowed on invisible windows147 148 2002-07-05: Sander van Leeuwen <sandervl@innotek >149 - KERNEL32: o Dump exception log to except.log in system32 directory150 o Added functions to customize logging (filename +151 enable/disable152 o Keep reference count for overlapped IO objects to avoid153 premature destruction154 155 2002-07-03: Sander van Leeuwen <sandervl@innotek >156 - WS2_32: o Added WSASendDisconnect stub157 - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)158 o Fill fixes for single lines (horizontal & vertical)159 o Optimized 8, 16 & 32bpp Fills160 161 2002-07-02: Sander van Leeuwen <sandervl@innotek >162 - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC163 (problem located in GDI32)164 165 2002-07-01: Sander van Leeuwen <sandervl@innotek >166 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W167 (Wine doesn't do this, but experiments in Windows 2000 show168 different behaviour)169 o Edit control: don't beep when receiving Enter (single line170 control)171 - DDRAW: o Color fill bugfixes:172 - fill up to height, not height - 1173 - check for single pixel line fills -> avoid heap corruption174 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC175 o SurfReleaseDC; initialize BITMAPINFO structure properly176 before calling GetDIBits + fix for 16 bpp GetDIBits177 (which always returns data in RGB555 format in our case)178 o Fill16on16: convert RGB555 color value to RGB565179 o Mark surface as changed (ChangeUniquenessValue) after180 blit & fill181 - KERNEL32: o Print win32 module name when exception occurs182 183 2002-06-30: Sander van Leeuwen <sandervl@innotek >184 - KERNEL32: o WriteFile for standard out: convert line feed without185 carriage return into CR+LF186 o VirtualFree; don't allow app to decommit stack pages187 (VAC runtime uses last stack page to store some internal188 data; if freed pe/pec will crash during exit)189 190 2002-06-28: Sander van Leeuwen <sandervl@innotek >191 - USER32: o Removed focus fix from 2001-11-20; controls of child192 dialogs can receive input focus (CVP wizard dialogs)193 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE194 flag is set (otherwise the hook will be called twice)195 o Call message filter hook in IsDialogMessageA/W196 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)197 198 2002-06-27: Platon Fomichev <platon@innotek >199 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently200 done in windows)201 202 2002-06-27: Sander van Leeuwen <sandervl@innotek >203 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA204 is valid. (COMDLG32_UpdateCurrentDir)205 (fixes crash in file dialog when double clicking on abstract206 objects like 'My Computer')207 208 2002-06-26: Sander van Leeuwen <sandervl@innotek >209 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &210 DosDateTimeToFileTime functions;211 Real problem lies in the fact that the times returned212 by DosFindFirst, DosFindNext, DosQueryPathInfo &213 DosQueryFileInfo are in local time; we must convert them214 to file time (UTC)215 o Fixed bug in OSLibGetDriveType; broke GetDriveType for216 floppy drives217 o Fixed CreateFile for disks218 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should219 fail if no disk present or when the media has been changed220 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should221 always succeed222 o Don't fail CreateFile for disk when DosOpen fails with223 a sharing violation. Apparently this is allowed in windows;224 although you can't do much with the handle. (limited to225 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)226 227 2002-06-26: knut st. osmundsen <bird@anduin >228 - KERNEL32\testcase:229 o Added testcase for Test of SetConsoleCtrlHandler() and230 GenerateConsoleCtrlEvent().231 Note. The last part of it is known to fail since the232 functions aren't 100% implemented yet.233 o Added mini testcase for MultiByteToWideChar().234 o Use the testsuite tools for unit testcases too.235 - KERNEL32: o Partial implementation of Console Ctrl Handlers.236 (Ctrl-Break and Ctrl-C)237 o GetFileType on std files doesn't always return TYPE_CHAR.238 Ask what kind of filehandle we have.239 (Solves 'press key' problem with "wcc386.exe > file".)240 o Enable writing to STDERR. (This might have brought into241 light a redirection problem.)242 243 2002-06-25: Sander van Leeuwen <sandervl@innotek >244 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string245 key data; registry.dll returns the wrong value (too big;246 appears size of internal storage)247 o FileTimeToSystemTime fix (no problems with WGSS implementation)248 o Removed bad unicode change249 250 2002-06-25: knut st. osmundsen <bird@anduin >251 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length252 is bad.253 - SHELL32: o Bad linked list walking. (accessed node after free)254 - USER32: o Allocate space the two missing RGB2 entries.255 o Use "%.*s" and "%.*ls" when we have a string with a length.256 (Crashing in logging is awfull. Creates zombies!)257 - ODINCRT: o Reserve low 32MB of address space before initializing258 the CRT IF we compile with the debug heap (kLib).259 260 2002-06-24: knut st. osmundsen <bird@anduin >261 - Testsuite:262 o Most of the watcom case done and working.263 - Make: o Corrected LIB paths of the win32 watcom setup.264 265 2002-06-21: knut st. osmundsen <bird@anduin >266 - KERNEL32: o LCMapStringW fix267 268 2002-06-20: Platon Fomichev <platon@innotek >269 - COMCTL32: o Don't erase background for ownerdrawn listview controls270 (LISTVIEW_RefreshReport)271 272 2002-06-20: Sander van Leeuwen <sandervl@innotek >273 - OLE32: o Drag 'n drop fix274 - USER32: o Drag 'n drop fix275 o Enabled drag 'n drop again276 o Added DisableDragDrop277 278 2002-06-20: knut st. osmundsen <bird@anduin >279 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')280 - Tools: o Added ExecTestcase.cmd for executing a testing and do281 result logging.282 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.283 - Testsuite:284 o Use ExecTestcase.cmd for executing the testcases.285 Logging & execute all testcases nomatter return values.286 o Added watcomc.mak which is pretty simple watcom tests.287 (currently noone of them really work 100%.)288 o TODO: Make a timeout executer which kills the children when289 they've been executing too long. This is required in order to290 run the testsuite without human interaction.291 292 2002-06-19: Sander van Leeuwen <sandervl@innotek >293 - OLE32: o Drag 'n drop fixes294 295 2002-06-18: Sander van Leeuwen <sandervl@innotek >296 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput297 mouse state is out of sync and update if necessary298 299 2002-06-18: knut st. osmundsen <bird@anduin >300 - Win32k: o Fixed compiler warning which caused the M$ compiler301 to choke on some systems.302 - Testsuite:303 o A collection of testcases running real win32 apps.304 Not finished, just an idea currently, intended for305 testing odin releases and changes.306 Currently limiting ourselfs to CUI progs.307 o A simple DoxyGen testcase is checked in.308 o Read the micro howto in testsuite/Makefile.309 - Make: o Synced with outside world. (NMAKE5 changes mostly.)310 o Added support for TARGET_MODE = TESTCASE.311 o Added separate tools file for the testsuite.312 313 2002-06-17: Sander van Leeuwen <sandervl@innotek >314 - USER32: o Disabled drag 'n drop temporarily (not yet stable)315 316 2002-06-16: Sander van Leeuwen <sandervl@innotek >317 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ318 o Removed: LoadLibraryExA: expand library filename319 (doesn't happen in Windows)320 - INSTALL: o Create object for Odin User's Manual + fixed object321 creation for OdinBug Manual322 o Include OdinBug.HLP & OdinUser.INF323 - SHELL32: o Fixed desktop object creation during win32 app install324 325 2002-06-15: Sander van Leeuwen <sandervl@innotek >326 - SETUPAPI: o Wine resync + added debug wrappers327 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)328 o Check for NULL parameters in GetFullPathNameW329 o hmfile.cpp: ParsePath fix; check boundary330 o LoadLibraryExA: expand library filename; might contain331 environment variables332 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;333 registry.dll doesn't like this type for some reason334 - USER32: o Do proper filtering for PeekMessage335 - NTDLL: o Forward heap functions to kernel32336 - QUARTZ: o Removed old code (stub dll now)337 - AVIFIL32: o Resync with Wine338 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion339 340 2002-06-13: Sander van Leeuwen <sandervl@innotek >341 - USER32: o SetCustomWndHandleSemName added to override shared semaphore342 name used to synchronize global window handle array access343 (to avoid name clash with Odin)344 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore345 name used to synchronize global memory map list access346 (to avoid name clash with Odin)347 348 2002-06-13: Platon Fomichev <platon@innotek >349 - USER32: o Only minimize or maximize window if appropriate style flag set350 351 2002-06-12: Sander van Leeuwen <sandervl@innotek >352 - KERNEL32: o If bytes present in COM device buffer, read them directly;353 even for overlapped IO calls.354 355 2002-06-11: Platon Fomichev <platon@innotek >356 - SHELL32: o Ignore name changes for 'My Computer' and other non-file357 objects (file dialogs)358 359 2002-06-11: Sander van Leeuwen <sandervl@innotek >360 - OLEAUT32, SHELL32:361 o Some Wine updates362 - KERNEL32: o Overlapped IO bugfixes363 o Thread TEB linking bugfix364 o Setup TEB structure before creating thread. Otherwise it's365 created too late and thread functions called by the app366 right after thread creation will fail.(e.g. SetThreadPriority)367 368 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon >369 - TOOLS\ODINBUG:370 o Added VX-REXX sources for OdinBug371 - DOC: o OdinBug.HLP update372 - BIN: o OdinBug.exe update373 374 2002-06-10: Sander van Leeuwen <sandervl@xs4all >375 - OLE32: o Fixed bug in StgStreamImpl_Seek376 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible377 (fixes crash in Java 1.4 install)378 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for379 overlapped IO380 381 2002-06-09: knut st. osmundsen <bird@anduin >382 - Makefiles:383 o Exclude dummy.c from the dependencies.384 385 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon >386 - KERNEL32: o Corrections for Austrian NLS file387 388 2002-06-09: Sander van Leeuwen <sandervl@xs4all >389 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message390 communication391 (fixes OpenOffice 1.0 crash during install (at 76%))392 o Skip window handle 0x68000000 (otherwise more difficult393 to compare logs with old builds)394 o Logging changes for comparing source file names395 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed396 (fixes Java 1.4 installation (first dialog))397 - COMDLG32: o GetFileDialog95W fix (check if template name is string or398 numeric id)399 (fixes OpenOffice 1.0 file open dialog crash)400 - WININET: o Fixed shlwapi imports401 - OLE32: o Resync with latest Wine402 - OLEAUT32: o Resync with latest Wine403 404 2002-06-08: Sander van Leeuwen <sandervl@xs4all >405 - SHELL32: o Moved resource files to subdir406 - COMDLG32: o Compile fix + moved resource files to subdir407 - KERNEL32: o Export OSLibDosDevIOCtl408 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout409 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD410 package from May 2001 (or newer) or recent JJSCDROM)411 - DDRAW: o Fixed clipping bug with non-frame windows412 o Print FOURCCs supported by Dive413 414 2002-06-08: knut *st. osmundsen <bird@anduin >415 - TOOLS\WRC:o Compile fix416 417 2002-06-07: Sander van Leeuwen <sandervl@innotek >418 - SHLWAPI: o Resync with latest Wine & added LGPL license419 - SHELL32: o Some updates for upcoming resync420 421 2002-06-06: knut st. osmundsen <bird@anduin >422 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.423 424 2002-06-06: Mark Paulus <mark.paulus@wcom >425 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when426 opening an existing file427 428 2002-06-06: Sander van Leeuwen <sandervl@innotek >429 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls430 431 2002-06-06: Platon Fomichev <platon@innotek >432 - SHELL32: o Always expand root when initializing treeview433 o Do not sort tree in TVN_ITEMEXPANDINGA434 435 2002-06-05: Sander van Leeuwen <sandervl@innotek >436 - WINMM: o Put back original DART buffer size selection code437 (new one messes up e.g. RealPlayer)438 o Postpone recording when waveInStart called without439 any buffers in the queue. Start in during next440 waveInAddBuffer call.441 o Fixed DART waveout resume442 443 2002-06-04: Sander van Leeuwen <sandervl@innotek >444 - USER32: o Fix for AltGr key combinations445 - WINMM: o Updates for wave playback446 447 2002-06-03: Sander van Leeuwen <sandervl@innotek >448 - USER32, OLE32:449 o Drag and drop fixes450 - BIN\ODINBUG:451 o Update by Herwig Bauernfeind (0.5.6a)452 - DOC\MANUAL:453 o Users manual sources by Herwig Bauernfeind454 - DOC: o Added odinuser.inf by Herwig Bauernfeind455 456 2002-06-02: Sander van Leeuwen <sandervl@innotek >457 - USER32\CONTROLS:458 o New dll for user32 controls (latest Wine)459 (not activated, not finished (resync))460 - USER32: o Moved drag & drop code to seperate file461 o Updates for OLE drag 'n drop462 - KERNEL32: o LogException: check lockcount before changing it on entry463 (it is not always > 0 -> previously caused hang in exception464 handler (zombie process))465 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W466 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)467 (todo: Odin app -> WPS)468 469 2002-06-01: Sander van Leeuwen <sandervl@innotek >470 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve471 performance472 o DragQueryFileW fix473 - WINMM: o Implemented minimal control change notification474 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview475 control (probably not 100% correct)476 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)477 (works in notepad; drag file object from WPS into notepad478 window)479 480 2002-05-31: Sander van Leeuwen <sandervl@innotek >481 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)482 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos483 (with LLMHF_INJECTED flag set)484 485 2002-05-31: Platon Fomichev <platon@innotek >486 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)487 488 2002-05-30: Sander van Leeuwen <sandervl@innotek >489 - WINMM: o Mixer fixes490 491 2002-05-30: Platon Fomichev <platon@innotek >492 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)493 (seems to be done in windows)494 495 2002-05-29: Sander van Leeuwen <sandervl@innotek >496 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)497 (fixes AbiWord keyboard input)498 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes499 o mixerGetLineInfoW fix500 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA501 wrt cx parameter (when set to zero)502 (fixes properties dialog of sndvol32.exe (windows mixer app))503 o Updated status control to latest Wine & applied two504 bugfixes (already sent to wine-patches)505 506 2002-05-29: Platon Fomichev <platon@innotek >507 - USER32: o GetAsyncKeyState fix for VK_MENU508 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style509 (invalidate control to prevent leftovers of size grip)510 511 2002-05-28: Sander van Leeuwen <sandervl@innotek >512 - REGSVR32: o Fixed startup513 - WINMM: o Completely implemented mixerSetControlDetails514 o Mixer updates515 o Support added for master volume (ioctl90 mode)516 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)517 o Wave recording now works518 519 2002-05-28: Platon Fomichev <platon@innotek >520 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage521 - KERNEL32: o Debugger updates522 523 2002-05-27: Sander van Leeuwen <sandervl@innotek >524 - WINMM: o Completely implemented mixerGetControlDetailsA/W525 o Mixer updates526 - TESTAPP\MIXER:527 o Test application for mixer functions528 529 2002-05-25: Sander van Leeuwen <sandervl@innotek >530 - WINMM: o Fix for soundcards without ioctl90 mixer support531 o Many mixer updates532 533 2002-05-24: Sander van Leeuwen <sandervl@innotek >534 - WINMM: o More mixer updates (not yet finished)535 536 2002-05-23: Yuri Dario <mc6530@mclink >537 - USER32: o Don't beep when unable to find menu item when alt key pressed538 539 2002-05-23: Sander van Leeuwen <sandervl@innotek >540 - WINMM: o Mixer updates (not yet finished)541 542 2002-05-23: Platon Fomichev <platon@innotek >543 - USER32: o Keyboard fixes for right alt & right shift544 545 2002-05-22: Sander van Leeuwen <sandervl@innotek >546 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)547 (fixes RealPlayer (PostThreadMessage))548 - WINMM: o Added debug wrappers549 o Started with mixer api rewrite550 551 2002-05-21: Sander van Leeuwen <sandervl@innotek >552 - KERNEL32: o Round stack top & bottom (TIB) to page boundary553 554 2002-05-20: Sander van Leeuwen <sandervl@innotek >555 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)556 since a dll that depends on dlls with an exitlist handler557 doesn't get properly unloaded (initterm not called for unload558 nor for a 2nd load)559 560 2002-05-20: Dmitry Froloff <froloff@os2 >561 - KERNEL32: o Removed 64 MB memory mapped file limit562 o Fix for opening memory mapped file with size larger than563 the file size564 565 2002-05-17: Platon Fomichev <platon@innotek >566 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE567 if window is not visible (fixes endless loop in568 property sheet when switching page with keyboard)569 570 2002-05-17: Sander van Leeuwen <sandervl@innotek >571 - OLEAUT32: o Resync with latest Wine572 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL573 (IOCTL_CDROM_CURRENT_POSITION only)574 o IOCTL_CDROM_READ_TOC fix575 576 2002-05-16: knut st. osmundsen <bird@anduin >577 - MAKE: o Merged in latest changes.578 o Create NewConfigure.cmd for this environment.579 Try NewConfigure.cmd -? first.580 (Do 'nmake needed' before calling this. (stupid!))581 o Please note that this is still not 100% configured for582 Odin32 yet. But eventually it will replace the existing583 make system.584 585 2002-05-16: Sander van Leeuwen <sandervl@innotek >586 - NTDLL: o Partial resync with Wine587 - KERNEL32: o Export some functions for NTDLL588 o Fixed creation of logfile for executables on readonly volumes589 o RegQueryInfoKeyW fix590 o TLS fix for pe2lx images591 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,592 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE593 SystemParametersInfoA parameters594 - OLE32: o Resync with latest Wine595 596 2002-05-15: Sander van Leeuwen <sandervl@innotek >597 - DINPUT: o Made mouse code reentrant598 - GDI32: o Fix for EnumFontFamiliesA/W599 - SETUPAPI: o Resync with latest Wine600 601 2002-05-14: Sander van Leeuwen <sandervl@innotek >602 - KERNEL32: o CustForce2GBFileSize function added to force603 GetVolumeInformation to tell the app all partitions are FAT604 (2 GB file size limitation)605 - COMCTL32: o Merged property sheet control with latest Wine version606 607 2002-05-14: Platon Fomichev <platon@innotek >608 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends609 SWP_FOCUS(DE)ACTIVATE message.610 611 2002-05-10: Platon Fomichev <platon@innotek >612 - KERNEL32: o Parallel port updates (use resource manager to query613 hardware configuration)614 615 2002-05-10: Sander van Leeuwen <sandervl@innotek >616 - KERNEL32: o Applications are now allowed to read physical disks or617 mounted partitions. Write access is only allowed for618 unmounted partitions or floppy disks.619 o Implemented GetFileSize for disk objects; corrected620 return value for some failures (-1)621 622 2002-05-09: Sander van Leeuwen <sandervl@innotek >623 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &624 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS625 o Implemented GetVolumeNameForVolumeMountPointA/W for disk626 mountpoints (e.g. C:\)627 o Rewrote FindFirst/NextVolume to use LVM interface (if628 availabe; else fail)629 o Extended GetDriveType & GetVolumeInformation for volume630 names (instead of only disk names (e.g. C:\))631 o GetVolumeInformation change: keep file system name if632 NTFS or FAT32633 o Implemented unmounted volume and physical disk access634 635 2002-05-08: Sander van Leeuwen <sandervl@innotek >636 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,637 toolbar, tab, pager, nativefont, imagelist code638 o Updated license (LGPL) for comctl32639 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function640 in NTDLL)641 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE642 - KERNEL32: o Implemented volume & volume mountpoint functions643 (win2k and up)644 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &645 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS646 647 2002-05-08: Platon Fomichev <platon@innotek >648 - COMCTL32: o Merged listview control with latest Wine649 650 2002-05-07: Sander van Leeuwen <sandervl@innotek >651 - USER32: o WH_MOUSE_LL hook fixes652 653 2002-05-07: Platon Fomichev <platon@innotek >654 - USER32: o Listbox/combobox fix for MFC apps655 o SetParent doesn't change WS_CHILD style656 o Experimental change for getParent657 658 2002-05-07: knut st. osmundsen <bird@anduin >659 - CmdQd: o The daemon shouldn't inherit standard handles when started.660 (Hung the daily build, since we use tee to do logging.)661 662 2002-05-06: Sander van Leeuwen <sandervl@innotek >663 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)664 665 2002-05-01: Sander van Leeuwen <sandervl@innotek >666 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard667 translation array668 -
trunk/doc/ChangeLog-2002
r8490 r8975 1 /* $Id: ChangeLog-2002,v 1.4 2002-05-25 08:14:05 sandervl Exp $ */ 1 /* $Id: ChangeLog-2002,v 1.5 2002-08-08 17:37:04 sandervl Exp $ */ 2 3 2002-07-31: Sander van Leeuwen <sandervl@innotek > 4 - WINMM: o Custom build function SetFixedWaveBufferSize added 5 (Call to tell winmm to expect simple fixed size buffers, so 6 it doesn't have to use very small DART buffers; this will 7 only work in very specific cases; it is not a good general 8 purpose solution) 9 - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns 10 on arrival of proper window message. (previously only 11 for sent messages; it should also support posted msgs) 12 13 2002-07-30: Platon Fomichev <platon@innotek > 14 - KERNEL32: o Unicode update 15 16 2002-07-29: Sander van Leeuwen <sandervl@innotek > 17 - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler) 18 19 2002-07-28: Sander van Leeuwen <sandervl@innotek > 20 - KERNEL32: o Added function to disable os2cdrom.dmd aspi support 21 - WNASPI32: o Fixes for cdrom drive/burner recognition 22 23 2002-07-26: Sander van Leeuwen <sandervl@innotek > 24 - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread) 25 o Detach all dlls (LIFO order) before really unloading them; this 26 should take care of circular dependencies (crash while accessing 27 memory of a dll that has just been freed) 28 o Terminated & Resume suspended threads in ExitProcess to 29 prevent the process from getting stuck in the exitlist handler. 30 (OS/2 is allergic to suspended threads) 31 o Terminate thread when exception occurs after ExitProcess 32 o Protect larger part of on-demand page load handler 33 (DosEnterCritSec) 34 - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version 35 36 2002-07-24: Platon Fomichev <platon@innotek > 37 - USER32: o Pass on WM_PAINT of client window to default PM handler 38 if window is minimized 39 (fixes possible endless loop of WM_PAINT messages when 40 minimizing a window) 41 42 2002-07-23: Sander van Leeuwen <sandervl@innotek > 43 - KERNEL32: o Enhanced CreateWin32PeLdrExe 44 o Enhanced PE loader class to support files with PE image 45 starting at an offset != 0 (custom build) 46 o Fixes for memory map view with offset 47 - PELDR: o Modified for new CreateWin32PeLdrExe 48 49 2002-07-22: Sander van Leeuwen <sandervl@innotek > 50 - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us. 51 52 2002-07-21: Sander van Leeuwen <sandervl@innotek > 53 - KERNEL32: o Use shared memory in high region (> 512MB) if available 54 o Interface changes for shared memory allocation 55 56 2002-07-19: Sander van Leeuwen <sandervl@innotek > 57 - ODINCRT: o Dos*CriticalSection fixes 58 59 2002-07-16: Sander van Leeuwen <sandervl@innotek > 60 - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday) 61 62 2002-07-15: Sander van Leeuwen <sandervl@innotek > 63 - GDI32: o Graphics handle management updates 64 o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap, 65 CreateDIBitmap) 66 o DEFAULT_GUI_FONT is a system object (applications are not allowed 67 to delete it) 68 o Dynamically allocate GDI handle array to prevent waste of 69 shared memory (as it is a private array) 70 - USER32: o Updates for new handle management 71 o System pens & brushes can't be deleted by applications 72 - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory 73 o Allocate fake PE headers in high memory 74 o Allocate win32 & code heap memory in 64kb chunks 75 o Allocate PE image memory at 64kb boundary 76 o Dynamically allocate handlemanager array to prevent waste of 77 shared memory (as it is a private array (for now)) 78 79 2002-07-13: Sander van Leeuwen <sandervl@innotek > 80 - KERNEL32: o We do NOT want to use any win32k services with custom builds 81 o Disabled 64kb alignment in VirtualAlloc for now 82 (algorithm lead to infinite recursion on SMP kernels, 83 pending a better algorithm) 84 85 2002-07-12: Platon Fomichev <platon@innotek > 86 - USER32: o Close menu when RMB is pressed outside menu window 87 88 2002-07-12: Sander van Leeuwen <sandervl@innotek > 89 - WINMM: o Changed init order; do not check for MMPM2 presence if 90 wave audio was already disabled 91 o Minor cleanup for mixer code 92 o Touch GETAPIMAP array to force OS/2 to make it valid; some 93 braindead audio drivers do not check pointers. 94 95 2002-07-11: Platon Fomichev <platon@innotek > 96 - COMCTL32: o Listview: clear background for area without items (ownerdrawn) 97 - USER32: o OSLibWinShowTaskList must query task list window 98 handle from OS/2 and not assume a constant handle value 99 100 2002-07-08: Sander van Leeuwen <sandervl@innotek > 101 - USER32: o Changed SetFocus fix; only disallow focus change for minimized 102 and disabled windows. 103 o Put back focus fix from 2001-11-20 104 105 2002-07-06: Sander van Leeuwen <sandervl@innotek > 106 - KERNEL32: o Com overlapped IO changes for reference counts 107 108 2002-07-05: Platon Fomichev <platon@innotek > 109 - USER32: o SetFocus not allowed on invisible windows 110 111 2002-07-05: Sander van Leeuwen <sandervl@innotek > 112 - KERNEL32: o Dump exception log to except.log in system32 directory 113 o Added functions to customize logging (filename + 114 enable/disable 115 o Keep reference count for overlapped IO objects to avoid 116 premature destruction 117 118 2002-07-03: Sander van Leeuwen <sandervl@innotek > 119 - WS2_32: o Added WSASendDisconnect stub 120 - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap) 121 o Fill fixes for single lines (horizontal & vertical) 122 o Optimized 8, 16 & 32bpp Fills 123 124 2002-07-02: Sander van Leeuwen <sandervl@innotek > 125 - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC 126 (problem located in GDI32) 127 128 2002-07-01: Sander van Leeuwen <sandervl@innotek > 129 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W 130 (Wine doesn't do this, but experiments in Windows 2000 show 131 different behaviour) 132 o Edit control: don't beep when receiving Enter (single line 133 control) 134 - DDRAW: o Color fill bugfixes: 135 - fill up to height, not height - 1 136 - check for single pixel line fills -> avoid heap corruption 137 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC 138 o SurfReleaseDC; initialize BITMAPINFO structure properly 139 before calling GetDIBits + fix for 16 bpp GetDIBits 140 (which always returns data in RGB555 format in our case) 141 o Fill16on16: convert RGB555 color value to RGB565 142 o Mark surface as changed (ChangeUniquenessValue) after 143 blit & fill 144 - KERNEL32: o Print win32 module name when exception occurs 145 146 2002-06-30: Sander van Leeuwen <sandervl@innotek > 147 - KERNEL32: o WriteFile for standard out: convert line feed without 148 carriage return into CR+LF 149 o VirtualFree; don't allow app to decommit stack pages 150 (VAC runtime uses last stack page to store some internal 151 data; if freed pe/pec will crash during exit) 152 153 2002-06-28: Sander van Leeuwen <sandervl@innotek > 154 - USER32: o Removed focus fix from 2001-11-20; controls of child 155 dialogs can receive input focus (CVP wizard dialogs) 156 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE 157 flag is set (otherwise the hook will be called twice) 158 o Call message filter hook in IsDialogMessageA/W 159 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4) 160 161 2002-06-27: Platon Fomichev <platon@innotek > 162 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently 163 done in windows) 164 165 2002-06-27: Sander van Leeuwen <sandervl@innotek > 166 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA 167 is valid. (COMDLG32_UpdateCurrentDir) 168 (fixes crash in file dialog when double clicking on abstract 169 objects like 'My Computer') 170 171 2002-06-26: Sander van Leeuwen <sandervl@innotek > 172 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime & 173 DosDateTimeToFileTime functions; 174 Real problem lies in the fact that the times returned 175 by DosFindFirst, DosFindNext, DosQueryPathInfo & 176 DosQueryFileInfo are in local time; we must convert them 177 to file time (UTC) 178 o Fixed bug in OSLibGetDriveType; broke GetDriveType for 179 floppy drives 180 o Fixed CreateFile for disks 181 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should 182 fail if no disk present or when the media has been changed 183 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should 184 always succeed 185 o Don't fail CreateFile for disk when DosOpen fails with 186 a sharing violation. Apparently this is allowed in windows; 187 although you can't do much with the handle. (limited to 188 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES) 189 190 2002-06-26: knut st. osmundsen <bird@anduin > 191 - KERNEL32\testcase: 192 o Added testcase for Test of SetConsoleCtrlHandler() and 193 GenerateConsoleCtrlEvent(). 194 Note. The last part of it is known to fail since the 195 functions aren't 100% implemented yet. 196 o Added mini testcase for MultiByteToWideChar(). 197 o Use the testsuite tools for unit testcases too. 198 - KERNEL32: o Partial implementation of Console Ctrl Handlers. 199 (Ctrl-Break and Ctrl-C) 200 o GetFileType on std files doesn't always return TYPE_CHAR. 201 Ask what kind of filehandle we have. 202 (Solves 'press key' problem with "wcc386.exe > file".) 203 o Enable writing to STDERR. (This might have brought into 204 light a redirection problem.) 205 206 2002-06-25: Sander van Leeuwen <sandervl@innotek > 207 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string 208 key data; registry.dll returns the wrong value (too big; 209 appears size of internal storage) 210 o FileTimeToSystemTime fix (no problems with WGSS implementation) 211 o Removed bad unicode change 212 213 2002-06-25: knut st. osmundsen <bird@anduin > 214 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length 215 is bad. 216 - SHELL32: o Bad linked list walking. (accessed node after free) 217 - USER32: o Allocate space the two missing RGB2 entries. 218 o Use "%.*s" and "%.*ls" when we have a string with a length. 219 (Crashing in logging is awfull. Creates zombies!) 220 - ODINCRT: o Reserve low 32MB of address space before initializing 221 the CRT IF we compile with the debug heap (kLib). 222 223 2002-06-24: knut st. osmundsen <bird@anduin > 224 - Testsuite: 225 o Most of the watcom case done and working. 226 - Make: o Corrected LIB paths of the win32 watcom setup. 227 228 2002-06-21: knut st. osmundsen <bird@anduin > 229 - KERNEL32: o LCMapStringW fix 230 231 2002-06-20: Platon Fomichev <platon@innotek > 232 - COMCTL32: o Don't erase background for ownerdrawn listview controls 233 (LISTVIEW_RefreshReport) 234 235 2002-06-20: Sander van Leeuwen <sandervl@innotek > 236 - OLE32: o Drag 'n drop fix 237 - USER32: o Drag 'n drop fix 238 o Enabled drag 'n drop again 239 o Added DisableDragDrop 240 241 2002-06-20: knut st. osmundsen <bird@anduin > 242 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide') 243 - Tools: o Added ExecTestcase.cmd for executing a testing and do 244 result logging. 245 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk. 246 - Testsuite: 247 o Use ExecTestcase.cmd for executing the testcases. 248 Logging & execute all testcases nomatter return values. 249 o Added watcomc.mak which is pretty simple watcom tests. 250 (currently noone of them really work 100%.) 251 o TODO: Make a timeout executer which kills the children when 252 they've been executing too long. This is required in order to 253 run the testsuite without human interaction. 254 255 2002-06-19: Sander van Leeuwen <sandervl@innotek > 256 - OLE32: o Drag 'n drop fixes 257 258 2002-06-18: Sander van Leeuwen <sandervl@innotek > 259 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput 260 mouse state is out of sync and update if necessary 261 262 2002-06-18: knut st. osmundsen <bird@anduin > 263 - Win32k: o Fixed compiler warning which caused the M$ compiler 264 to choke on some systems. 265 - Testsuite: 266 o A collection of testcases running real win32 apps. 267 Not finished, just an idea currently, intended for 268 testing odin releases and changes. 269 Currently limiting ourselfs to CUI progs. 270 o A simple DoxyGen testcase is checked in. 271 o Read the micro howto in testsuite/Makefile. 272 - Make: o Synced with outside world. (NMAKE5 changes mostly.) 273 o Added support for TARGET_MODE = TESTCASE. 274 o Added separate tools file for the testsuite. 275 276 2002-06-17: Sander van Leeuwen <sandervl@innotek > 277 - USER32: o Disabled drag 'n drop temporarily (not yet stable) 278 279 2002-06-16: Sander van Leeuwen <sandervl@innotek > 280 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ 281 o Removed: LoadLibraryExA: expand library filename 282 (doesn't happen in Windows) 283 - INSTALL: o Create object for Odin User's Manual + fixed object 284 creation for OdinBug Manual 285 o Include OdinBug.HLP & OdinUser.INF 286 - SHELL32: o Fixed desktop object creation during win32 app install 287 288 2002-06-15: Sander van Leeuwen <sandervl@innotek > 289 - SETUPAPI: o Wine resync + added debug wrappers 290 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi) 291 o Check for NULL parameters in GetFullPathNameW 292 o hmfile.cpp: ParsePath fix; check boundary 293 o LoadLibraryExA: expand library filename; might contain 294 environment variables 295 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ; 296 registry.dll doesn't like this type for some reason 297 - USER32: o Do proper filtering for PeekMessage 298 - NTDLL: o Forward heap functions to kernel32 299 - QUARTZ: o Removed old code (stub dll now) 300 - AVIFIL32: o Resync with Wine 301 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion 302 303 2002-06-13: Sander van Leeuwen <sandervl@innotek > 304 - USER32: o SetCustomWndHandleSemName added to override shared semaphore 305 name used to synchronize global window handle array access 306 (to avoid name clash with Odin) 307 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore 308 name used to synchronize global memory map list access 309 (to avoid name clash with Odin) 310 311 2002-06-13: Platon Fomichev <platon@innotek > 312 - USER32: o Only minimize or maximize window if appropriate style flag set 313 314 2002-06-12: Sander van Leeuwen <sandervl@innotek > 315 - KERNEL32: o If bytes present in COM device buffer, read them directly; 316 even for overlapped IO calls. 317 318 2002-06-11: Platon Fomichev <platon@innotek > 319 - SHELL32: o Ignore name changes for 'My Computer' and other non-file 320 objects (file dialogs) 321 322 2002-06-11: Sander van Leeuwen <sandervl@innotek > 323 - OLEAUT32, SHELL32: 324 o Some Wine updates 325 - KERNEL32: o Overlapped IO bugfixes 326 o Thread TEB linking bugfix 327 o Setup TEB structure before creating thread. Otherwise it's 328 created too late and thread functions called by the app 329 right after thread creation will fail.(e.g. SetThreadPriority) 330 331 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon > 332 - TOOLS\ODINBUG: 333 o Added VX-REXX sources for OdinBug 334 - DOC: o OdinBug.HLP update 335 - BIN: o OdinBug.exe update 336 337 2002-06-10: Sander van Leeuwen <sandervl@xs4all > 338 - OLE32: o Fixed bug in StgStreamImpl_Seek 339 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible 340 (fixes crash in Java 1.4 install) 341 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for 342 overlapped IO 343 344 2002-06-09: knut st. osmundsen <bird@anduin > 345 - Makefiles: 346 o Exclude dummy.c from the dependencies. 347 348 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon > 349 - KERNEL32: o Corrections for Austrian NLS file 350 351 2002-06-09: Sander van Leeuwen <sandervl@xs4all > 352 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message 353 communication 354 (fixes OpenOffice 1.0 crash during install (at 76%)) 355 o Skip window handle 0x68000000 (otherwise more difficult 356 to compare logs with old builds) 357 o Logging changes for comparing source file names 358 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed 359 (fixes Java 1.4 installation (first dialog)) 360 - COMDLG32: o GetFileDialog95W fix (check if template name is string or 361 numeric id) 362 (fixes OpenOffice 1.0 file open dialog crash) 363 - WININET: o Fixed shlwapi imports 364 - OLE32: o Resync with latest Wine 365 - OLEAUT32: o Resync with latest Wine 366 367 2002-06-08: Sander van Leeuwen <sandervl@xs4all > 368 - SHELL32: o Moved resource files to subdir 369 - COMDLG32: o Compile fix + moved resource files to subdir 370 - KERNEL32: o Export OSLibDosDevIOCtl 371 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout 372 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD 373 package from May 2001 (or newer) or recent JJSCDROM) 374 - DDRAW: o Fixed clipping bug with non-frame windows 375 o Print FOURCCs supported by Dive 376 377 2002-06-08: knut *st. osmundsen <bird@anduin > 378 - TOOLS\WRC:o Compile fix 379 380 2002-06-07: Sander van Leeuwen <sandervl@innotek > 381 - SHLWAPI: o Resync with latest Wine & added LGPL license 382 - SHELL32: o Some updates for upcoming resync 383 384 2002-06-06: knut st. osmundsen <bird@anduin > 385 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0. 386 387 2002-06-06: Mark Paulus <mark.paulus@wcom > 388 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when 389 opening an existing file 390 391 2002-06-06: Sander van Leeuwen <sandervl@innotek > 392 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls 393 394 2002-06-06: Platon Fomichev <platon@innotek > 395 - SHELL32: o Always expand root when initializing treeview 396 o Do not sort tree in TVN_ITEMEXPANDINGA 397 398 2002-06-05: Sander van Leeuwen <sandervl@innotek > 399 - WINMM: o Put back original DART buffer size selection code 400 (new one messes up e.g. RealPlayer) 401 o Postpone recording when waveInStart called without 402 any buffers in the queue. Start in during next 403 waveInAddBuffer call. 404 o Fixed DART waveout resume 405 406 2002-06-04: Sander van Leeuwen <sandervl@innotek > 407 - USER32: o Fix for AltGr key combinations 408 - WINMM: o Updates for wave playback 409 410 2002-06-03: Sander van Leeuwen <sandervl@innotek > 411 - USER32, OLE32: 412 o Drag and drop fixes 413 - BIN\ODINBUG: 414 o Update by Herwig Bauernfeind (0.5.6a) 415 - DOC\MANUAL: 416 o Users manual sources by Herwig Bauernfeind 417 - DOC: o Added odinuser.inf by Herwig Bauernfeind 418 419 2002-06-02: Sander van Leeuwen <sandervl@innotek > 420 - USER32\CONTROLS: 421 o New dll for user32 controls (latest Wine) 422 (not activated, not finished (resync)) 423 - USER32: o Moved drag & drop code to seperate file 424 o Updates for OLE drag 'n drop 425 - KERNEL32: o LogException: check lockcount before changing it on entry 426 (it is not always > 0 -> previously caused hang in exception 427 handler (zombie process)) 428 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W 429 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app) 430 (todo: Odin app -> WPS) 431 432 2002-06-01: Sander van Leeuwen <sandervl@innotek > 433 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve 434 performance 435 o DragQueryFileW fix 436 - WINMM: o Implemented minimal control change notification 437 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview 438 control (probably not 100% correct) 439 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES) 440 (works in notepad; drag file object from WPS into notepad 441 window) 442 443 2002-05-31: Sander van Leeuwen <sandervl@innotek > 444 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag) 445 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos 446 (with LLMHF_INJECTED flag set) 447 448 2002-05-31: Platon Fomichev <platon@innotek > 449 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible) 450 451 2002-05-30: Sander van Leeuwen <sandervl@innotek > 452 - WINMM: o Mixer fixes 453 454 2002-05-30: Platon Fomichev <platon@innotek > 455 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL) 456 (seems to be done in windows) 457 458 2002-05-29: Sander van Leeuwen <sandervl@innotek > 459 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call) 460 (fixes AbiWord keyboard input) 461 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes 462 o mixerGetLineInfoW fix 463 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA 464 wrt cx parameter (when set to zero) 465 (fixes properties dialog of sndvol32.exe (windows mixer app)) 466 o Updated status control to latest Wine & applied two 467 bugfixes (already sent to wine-patches) 468 469 2002-05-29: Platon Fomichev <platon@innotek > 470 - USER32: o GetAsyncKeyState fix for VK_MENU 471 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style 472 (invalidate control to prevent leftovers of size grip) 473 474 2002-05-28: Sander van Leeuwen <sandervl@innotek > 475 - REGSVR32: o Fixed startup 476 - WINMM: o Completely implemented mixerSetControlDetails 477 o Mixer updates 478 o Support added for master volume (ioctl90 mode) 479 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag) 480 o Wave recording now works 481 482 2002-05-28: Platon Fomichev <platon@innotek > 483 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage 484 - KERNEL32: o Debugger updates 485 486 2002-05-27: Sander van Leeuwen <sandervl@innotek > 487 - WINMM: o Completely implemented mixerGetControlDetailsA/W 488 o Mixer updates 489 - TESTAPP\MIXER: 490 o Test application for mixer functions 491 492 2002-05-25: Sander van Leeuwen <sandervl@innotek > 493 - WINMM: o Fix for soundcards without ioctl90 mixer support 494 o Many mixer updates 495 496 2002-05-24: Sander van Leeuwen <sandervl@innotek > 497 - WINMM: o More mixer updates (not yet finished) 498 499 2002-05-23: Yuri Dario <mc6530@mclink > 500 - USER32: o Don't beep when unable to find menu item when alt key pressed 501 502 2002-05-23: Sander van Leeuwen <sandervl@innotek > 503 - WINMM: o Mixer updates (not yet finished) 504 505 2002-05-23: Platon Fomichev <platon@innotek > 506 - USER32: o Keyboard fixes for right alt & right shift 507 508 2002-05-22: Sander van Leeuwen <sandervl@innotek > 509 - KERNEL32: o CreateThread bugfix (returned thread id incorrect) 510 (fixes RealPlayer (PostThreadMessage)) 511 - WINMM: o Added debug wrappers 512 o Started with mixer api rewrite 513 514 2002-05-21: Sander van Leeuwen <sandervl@innotek > 515 - KERNEL32: o Round stack top & bottom (TIB) to page boundary 516 517 2002-05-20: Sander van Leeuwen <sandervl@innotek > 518 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted) 519 since a dll that depends on dlls with an exitlist handler 520 doesn't get properly unloaded (initterm not called for unload 521 nor for a 2nd load) 522 523 2002-05-20: Dmitry Froloff <froloff@os2 > 524 - KERNEL32: o Removed 64 MB memory mapped file limit 525 o Fix for opening memory mapped file with size larger than 526 the file size 527 528 2002-05-17: Platon Fomichev <platon@innotek > 529 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE 530 if window is not visible (fixes endless loop in 531 property sheet when switching page with keyboard) 532 533 2002-05-17: Sander van Leeuwen <sandervl@innotek > 534 - OLEAUT32: o Resync with latest Wine 535 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL 536 (IOCTL_CDROM_CURRENT_POSITION only) 537 o IOCTL_CDROM_READ_TOC fix 538 539 2002-05-16: knut st. osmundsen <bird@anduin > 540 - MAKE: o Merged in latest changes. 541 o Create NewConfigure.cmd for this environment. 542 Try NewConfigure.cmd -? first. 543 (Do 'nmake needed' before calling this. (stupid!)) 544 o Please note that this is still not 100% configured for 545 Odin32 yet. But eventually it will replace the existing 546 make system. 547 548 2002-05-16: Sander van Leeuwen <sandervl@innotek > 549 - NTDLL: o Partial resync with Wine 550 - KERNEL32: o Export some functions for NTDLL 551 o Fixed creation of logfile for executables on readonly volumes 552 o RegQueryInfoKeyW fix 553 o TLS fix for pe2lx images 554 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT, 555 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE 556 SystemParametersInfoA parameters 557 - OLE32: o Resync with latest Wine 558 559 2002-05-15: Sander van Leeuwen <sandervl@innotek > 560 - DINPUT: o Made mouse code reentrant 561 - GDI32: o Fix for EnumFontFamiliesA/W 562 - SETUPAPI: o Resync with latest Wine 563 564 2002-05-14: Sander van Leeuwen <sandervl@innotek > 565 - KERNEL32: o CustForce2GBFileSize function added to force 566 GetVolumeInformation to tell the app all partitions are FAT 567 (2 GB file size limitation) 568 - COMCTL32: o Merged property sheet control with latest Wine version 569 570 2002-05-14: Platon Fomichev <platon@innotek > 571 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends 572 SWP_FOCUS(DE)ACTIVATE message. 573 574 2002-05-10: Platon Fomichev <platon@innotek > 575 - KERNEL32: o Parallel port updates (use resource manager to query 576 hardware configuration) 577 578 2002-05-10: Sander van Leeuwen <sandervl@innotek > 579 - KERNEL32: o Applications are now allowed to read physical disks or 580 mounted partitions. Write access is only allowed for 581 unmounted partitions or floppy disks. 582 o Implemented GetFileSize for disk objects; corrected 583 return value for some failures (-1) 584 585 2002-05-09: Sander van Leeuwen <sandervl@innotek > 586 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO & 587 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS 588 o Implemented GetVolumeNameForVolumeMountPointA/W for disk 589 mountpoints (e.g. C:\) 590 o Rewrote FindFirst/NextVolume to use LVM interface (if 591 availabe; else fail) 592 o Extended GetDriveType & GetVolumeInformation for volume 593 names (instead of only disk names (e.g. C:\)) 594 o GetVolumeInformation change: keep file system name if 595 NTFS or FAT32 596 o Implemented unmounted volume and physical disk access 597 598 2002-05-08: Sander van Leeuwen <sandervl@innotek > 599 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb, 600 toolbar, tab, pager, nativefont, imagelist code 601 o Updated license (LGPL) for comctl32 602 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function 603 in NTDLL) 604 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE 605 - KERNEL32: o Implemented volume & volume mountpoint functions 606 (win2k and up) 607 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO & 608 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS 609 610 2002-05-08: Platon Fomichev <platon@innotek > 611 - COMCTL32: o Merged listview control with latest Wine 612 613 2002-05-07: Sander van Leeuwen <sandervl@innotek > 614 - USER32: o WH_MOUSE_LL hook fixes 615 616 2002-05-07: Platon Fomichev <platon@innotek > 617 - USER32: o Listbox/combobox fix for MFC apps 618 o SetParent doesn't change WS_CHILD style 619 o Experimental change for getParent 620 621 2002-05-07: knut st. osmundsen <bird@anduin > 622 - CmdQd: o The daemon shouldn't inherit standard handles when started. 623 (Hung the daily build, since we use tee to do logging.) 624 625 2002-05-06: Sander van Leeuwen <sandervl@innotek > 626 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL) 627 628 2002-05-01: Sander van Leeuwen <sandervl@innotek > 629 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard 630 translation array 2 631 3 632 2002-04-30: Sander van Leeuwen <sandervl@innotek.de>
Note:
See TracChangeset
for help on using the changeset viewer.
