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