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