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