- Timestamp:
- Apr 2, 2001, 11:53:23 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/ChangeLog-2001
r5306 r5437 1 /* $Id: ChangeLog-2001,v 1.2 2001-03-13 18:43:17 sandervl Exp $ */ 1 /* $Id: ChangeLog-2001,v 1.3 2001-04-02 09:53:02 sandervl Exp $ */ 2 3 2001-03-31: Sander van Leeuwen <sandervl@xs4all.nl> 4 - KERNEL32: o Fix for loading executable with sections not starting on 5 page boundary (LOAD_LIBRARY_AS_DATAFILE). 6 (fixes crash during install of latest RealPlayer 8) 7 o Change default code page back from 1252 to 0. 8 (fixes umlauts in StarOffice 5.2) 9 TODO: Need to find out how SO determines the codepage 10 - USER32: o WindowFromPoint now works with overlapping siblings too 11 o Bugfix in mouse message translation 12 - COMCTL32: o Resynced with Wine (pager, datetime, flatsb, comboboxex, monthcal) 13 o Fixed previous merge (INFOPTR structures too small) 14 o Corrected ordinals of a lot of exports 15 o Fixed bug in animate control merge; now it works again 16 17 2001-03-30: Sander van Leeuwen <sandervl@xs4all.nl> 18 - USER32: o Rewrote WM_NCHITTEST handling. No longer relies on PM. 19 o Put static control hittest workaround inside #ifndef ODIN_HITTEST 20 statement (see 2001-03-25) 21 o Send WM_NCHITTEST messages from WindowFromPoint + added 22 checks (more like Wine now) 23 TODO: New version isn't 100% correct. Doesn't take overlapping 24 windows into account when window is transparent. Always 25 continues with parent window. 26 o Make copy of class icon in RegisterClassA/W (for hIconSm) 27 (done by Wine) 28 o Changed COLOR_APPWORKSPACE system color. Lotus Notes main window 29 background now correct. 30 (TODO: many differences with Wine's system color table; why?) 31 32 2001-03-29: Sander van Leeuwen <sandervl@xs4all.nl> 33 - KERNEL32: o CreateFile (disk): disable error popus. NT allows an app to 34 open a cdrom/dvd drive without a disk inside. 35 OS/2 fails in that case with error ERROR_NOT_READY 36 Ignore that error and return success. 37 (removes annoying popups when starting windvd without DVD 38 disk in drive) 39 - GDI32: o Get correct height & width of HDC in DIB section blitting 40 (fixes wrong (button) controls in WinDVD's control panel window) 41 42 2001-03-28: Sander van Leeuwen <sandervl@xs4all.nl> 43 - KERNEL32: o GetSystemPowerStatus fix; SYSTEM_POWER_STATUS structure 44 definition was wrong. 45 (fixes crash in WinDVD) 46 o Added translation for ERROR_NOT_READY to error2WinError 47 - DDRAW: o Return proper error code for unsupported FOURCC surface 48 creation 49 50 2001-03-27: Sander van Leeuwen <sandervl@xs4all.nl> 51 - USER32: o Rewrote cursor handling. No longer use Open32, but convert 52 cursor to OS/2 format during creation. 53 (also fixes crash during WinDVD startup) 54 o Ported Wine's cursor/icon cache code. Odin no longer 55 leaks memory when apps reload icons/cursors. 56 o Check for DIB section selection in ReleaseDC and unselect it. 57 (only for non-CS_OWNDC hdcs) 58 - KERNEL32: o Removed cursor & cursor group conversion code 59 - GDI32: o SelectObject fixes for DIB sections 60 o Check for DIB section selection in DeleteDC and unselect it. 61 (fixes crash in WinDVD) 62 63 2001-03-27: Michal Necasek <michalnec@volny.cz> 64 - OPENGL: o Less stict parameter checking in wglSetPixelFormat 65 (fixes the game Hitman) 66 67 2001-03-25: Michal Necasek <michalnec@volny.cz> 68 - KERNEL32: o Turn off all optimizations for exceptions.cpp in release build (!) 69 - DINPUT/USER32: 70 o Fixed keyboard handling. Now arrow keys should work right 71 on both numpad and the separate arrow block among other things. 72 73 2001-03-25: Sander van Leeuwen <sandervl@xs4all.nl> 74 - USER32: o If a static window has children, then we can't return HTTRANSPARENT 75 for WM_NCHITTEST. For some reason PM then sends all mouse messages 76 to the parent of the static window; even if they are intended 77 for the children of the static window. 78 TODO: This could break some win32 apps (parent not receiving mouse 79 message for static window (non-child) area) 80 Rewrite NCHITTEST handling. (don't use PM) 81 (fixes Roger Wilco config window input) 82 o Call GlobalAddAtomA/W in RegisterWindowMessageA/W 83 (don't use Open32) 84 - KERNEL32: o OSLibStripPath bugfix (wrong comparison if path contains 85 both back- and forward slashes) 86 87 2001-03-24: Sander van Leeuwen <sandervl@xs4all.nl> 88 - WINMM: o mmsystemGetVersion returned wrong version. Should be 0x030A. 89 (returned in NT4, SP6) 90 o Ported Wine's PlaySoundA/W, sndPlaySoundA/W 91 o Enabled DirectAudio interface code for wave playback 92 (available in upcoming SB Live driver version 0.70) 93 (works well with WinAmp 2.72) 94 - USER32: o GetAsyncKeyState implemented (calls Open32) 95 96 2001-03-23: Sander van Leeuwen <sandervl@xs4all.nl> 97 - WINMM: o Wrong calling convention for timer thread handler (os2timer.cpp) 98 o Preliminary code for DirectAudio wave playback (new audio 99 interface in the upcoming SB Live driver) 100 o Rewrote DART wave playback & recording classes 101 o Added support for more callback types (event, thread) 102 o Fixed wrong callback parameter (window callback) for waveIn/OutReset 103 Note: Untested code. Will be tested & fixed tomorrow. 104 105 2001-03-22: Sander van Leeuwen <sandervl@xs4all.nl> 106 - KERNEL32: o Ported Wine's GetBinaryTypeA/W 107 o Wrote assembly wrapper for thread handler calling to cope with 108 buggy applications that use the wrong calling convention for 109 thread handlers. (like @#$@#% PowerDVD) 110 (fixes crash in PowerDVD with release build of kernel32) 111 112 2001-03-22: Michal Necasek <michalnec@volny.cz> 113 - USER32: o Show the mouse pointer in the exitlist handler of user32. 114 (should restore the mouse pointer after a game crashes) 115 116 2001-03-21: Sander van Leeuwen <sandervl@xs4all.nl> 117 - KERNEL32: o Added support for disabling logging for a specific thread 118 - WINMM: o Pause playback after underrun & restart it properly when 119 new buffers arrive. 120 121 2001-03-20: Michal Necasek <michalnec@volny.cz> 122 - include/DDRAW: 123 o Cleaned up so that it builds with Watcom. Still lots 124 of warnings and Watcom build doesn't seem to work right now. 125 126 2001-03-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 127 - Odin32Api: 128 o Added sample makefile (from the Generic SDK sample) 129 (Just remeber to rename the generic.rc to resource.orc.) 130 131 2001-03-20: Sander van Leeuwen <sandervl@xs4all.nl> 132 - DPLAYX: o Fix for nameless unions & VAC 3.6.5 (makefile) 133 134 2001-03-19: Sander van Leeuwen <sandervl@xs4all.nl> 135 - KERNEL32: o Fail properly when dll can't be found (pe loader) 136 - WINMM: o Do not pause wave stream after underrun. Stop it instead. 137 (writing audio buffers to a paused stream crashes MMPM2) 138 (fixes crash while playing movie in PowerDVD) 139 o Added level 2 logging support. 140 o Recording callback bugfix 141 o Several playback changes & fixes 142 o Do not use TIB selector of thread that issues waveOut/InOpen. 143 Instead query selector of main thread in DART callback thread. 144 (fixes crash in WinAmp when pressing stop; thread that opened 145 the playback stream is terminated before the stream is stopped) 146 - GDI32: o Check y inversion when resyncing dib section 147 148 149 2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 150 - Pe2Lx: o Convert CUI subsystem to VIO apps. CUI applications will 151 now work as executed thru pec.exe. 152 - Kernel32: o Init VIO Console for Pe2Lx CUI images. 153 154 [DirectDraw] 155 Fullscreen=[True|False|0|1] 156 157 Don't blame me if your machine goes up in smoke after you've 158 turned fullscreen on ;-) 159 Note: It seems that fullscreen currently doesn't work right 160 with newer SDD releases for 8bpp apps, though 16/24/32bpp 161 should be OK (palette setting problems) 162 163 2001-03-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 164 - tools/dailbuild: 165 o Added jade and DocBook to the environment. 166 - include/win32k.h: 167 o Defines OBJ_ANY on demand. (For use with DosAllocMemEx().) 168 - tools/fastdep: 169 o Ported to NT by faking the necessary OS/2 APIs. 170 Tested with Watcom C/C++ v11.0. 171 Makefile target: fastdepnt.exe 172 173 2001-03-14: Markus Montkowski <mmontkowski@gmx.de> 174 - DPLAYX: o Sync with latest WINE stuff 175 - include\win\dplay.h o Syncd with WINE 176 - include\win\dplobby.h o Syncd with WINE 177 178 2001-03-14: Bart van Leeuwen <Bart_van_Leeuwen@netage.nl> 179 - USER32: o Wrong setting of fErase in PAINTSTRUCT (BeginPaint) 180 (fixes background in CDRLabel) 181 182 2001-03-13: Sander van Leeuwen <sandervl@xs4all.nl> 183 - KERNEL32: o Removed include <builtin.h> from several files. (no longer necessary) 184 - KERNEL32/USER32/GDI32/Dllentry/SHELL32/WINMM/WSOCK32 185 o Dll entrypoint changes for Watcom 186 - USER32: o Set last error to ERROR_INVALID_WINDOW_HANDLE if application 187 passes invalid window handle to BeginPaint. 188 (verified in NT4, SP6) 189 190 2001-03-12: Sander van Leeuwen <sandervl@xs4all.nl> 191 - KERNEL32: o Fix for SearchPathA with NULL parameter for output buffer 192 (reported by Ahti Heinla) 193 - USER32: o Fail if BeginPaint is called with NULL PAINTSTRUCT pointer 194 (verified in NT4, SP6) 195 - DDRAW/DSOUND: 196 o Removed #ifdef IBMCPP statements (moved into initdll.h). 197 198 2001-03-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 199 - Win32k, Pe2Lx, Elf2Lx, Xx2Lx: 200 o Made generic Xx2Lx util for both Pe2Lx and Elf2Lx 201 (and any future loaders). 202 Pe2Lx.exe is now named Xx2Lx.exe! 203 o Makefile fixes. 204 o Elf2Lx compiles (non-working dummy). 205 o Fixed vprint and vprintf16 to not skip multiple LF/CRs. 206 207 - Configure.cmd: 208 o Changed to configure Win32k as well. Re-run Configure.cmd!!! 209 210 211 2001-03-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 212 - Win32k: o Fixed trap in k32QuerySystemMemInfo when 213 VIRTUALADDRESSLIMIT=512. 214 215 2000-03-06: Michal Necasek <michalnec@volny.cz> 216 - include o More changes and fixes for Watcom 217 218 2001-03-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no> 219 - Win32k: o Fixed some 16-bit compiler problems. 220 o Fixed 4.51 toolkit problems. 2 221 3 222 2001-02-29: Sander van Leeuwen <sandervl@xs4all.nl>
Note:
See TracChangeset
for help on using the changeset viewer.