source: trunk/changelog@ 5875

Last change on this file since 5875 was 5875, checked in by sandervl, 24 years ago

* empty log message *

File size: 17.0 KB
RevLine 
[5875]1/* $Id: changelog,v 1.1471 2001-06-02 08:33:06 sandervl Exp $ */
[5313]2
[5875]3 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
4 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
5 [WINMM]
6 DefVolume=50[0-100] Default waveout volume (default = 100)
7
[5857]8 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
[5864]9 - USER32: o Send WM_HELP if F1 pressed & no menu active
10 o Disabled system hooks (only work in one process)
[5857]11 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
12 barely noticable with 'real' applications)
13 - OLE32: o Added OleLoadPictureEx stub
14 - GDI32: o GetDIBits fix for querying the bitmap information
15 WGSS returns 0, but we should return the nr of scan lines requested
[5865]16 o GetDIBits fix for memory dcs. WGSS messes things up if
17 it's a memory DC.
18 (fixes lower right button in AIM's logon window when typing
19 in new name)
[5867]20 o ExtTextOutA/W fix for filling rectangle with background color
21 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
22 (fixes border between menu & button bar in Odin MFC app &
23 Acrobat Reader 4.05)
[5871]24 o StretchDIBits fix for RGB555 bitmaps
25 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
[5857]26 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
27
[5849]28 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
29 - KERNEL32: o benchmarked new experimental loader and reverted to
30 old but slightly optimized loader (processExport usually
31 outweighs processImport, so lookup is less valuable than
32 add to export list)
33 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
34 its icon cache. Revert to on-demand loading of the icons,
35 speeds up loading of SHELL32 (therefore most apps)
36 by several seconds.
37
[5857]38 2001-05-31: Sander van Leeuwen <sandervl@xs4all.nl>
39 - OLEAUT32: o Fixed ITypeInfoImpl_Invoke
40
[5841]41 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
42 - KERNEL32: o further performance improvement of hashtables
43 o fixes for loader improvements (PE, LX)
44 o Todo: measuring new code, reducing memory requirements
45
[5834]46 2001-05-30: Sander van Leeuwen <sandervl@xs4all.nl>
47 - USER32: o RedrawWindow: don't clear erase background flag if the
48 window is already (partly) invalidated.
49 (fixes redrawing of dialogs controls in mIRC startup dialog
50 window (when switching option windows))
[5836]51 - KERNEL32: o Put back old lookup code.
52 New files renamed to winimagepeldr_new.cpp/h
53 (Odin test app crashes; looks like MFC42 ordinal lookup
54 fails somewhere)
[5839]55 - OLEAUT32: o Added RegisterTypeLib (ported recent Wine patch) &
56 UnRegisterTypeLib
57 o Added ITypeInfoImpl_Invoke (ported Francois Jacques'
58 (refused) patch and rewrote it to get rid of stack
59 layout dependency.
60 o VT_HRESULT -> VT_INT conversion added to Coerce
61 (all needed for Quicken Deluxe 2001; still crashes, but
62 gets passed data loading)
[5844]63 - OLE32: o OleRun: check pointer with IsValidInterface
64 (fixes crash in Quicken after data loading)
[5834]65
[5830]66 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
67 - KERNEL32: o replaced linear lists in PE loader with faster hashtables
68 (ccollection.cpp, experimental)
[5832]69 ToDo: measure any difference, revert eventualls
[5830]70
[5824]71 2001-05-29: Sander van Leeuwen <sandervl@xs4all.nl>
72 - GDI32: o Set/GetDIBColorTable fixes for DIB sections with bpp > 8
73 o Don't sync DIB section in SelectPalette if bForceBackground
74 is -1. (hack for bitmap buttons in Beyond Compare)
[5827]75 - DCIMAN32: o Updated & return proper error codes
[5824]76
[5814]77 2001-05-28: Patrick Haller <patrick.haller@innotek.de>
78 - GDI32: o Split GDI32.CPP into ICM.CPP and GDI32.CPP
[5820]79 o CreateDC() accepts "display" instead of "DISPLAY"
80 (fixes font-not-found problem in ZD Bench 99)
[5815]81 - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
[5820]82 o directory.cpp: don't trap in CreateDirectory(NULL, NULL)
83 - DDRAW: o implemented DirectDrawCreateClipper()
[5822]84 - WOW32: o created initial (fake) version of WOW32.DLL
85 (SBLiveXP accesses this directly)
[5814]86
[5809]87 2001-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
88 - COMCTL32: o Listview: merged old LISTVIEW_EnsureVisible
89 (gets rid of excessive repaints)
90 - USER32: o Replaced TabbedTextOutA/W & GetTabbedTextExtentA/W with
91 Wine version. GPI doesn't support strings > 512 characters.
92 - GDI32: o Commented out InternalTabbedTextOutA/W & InternalGetTabbedTextExtentA/W
93
[5807]94 2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
95 - COMCTL32: o Datetime control resync with Wine (get/setrange added)
96
[5800]97 2001-05-25: Sander van Leeuwen <sandervl@xs4all.nl>
98 - Odin.ini: o Removed MS Shell Dlg font mapping
99 - GDI32: o Synchronize DIB Section after SelectPalette call (if selected in DC)
100 (fixes wrong colors for some bitmaps)
101 o Update bitmap and synchronize DIB Section in SetDIBits
102 o Update color table during DIB sync too
[5801]103 - USER32: o Dialog control x & y coordinates in dialog template are signed
[5803]104 words. (fixes dialog controls with negative offset)
[5804]105 o Rewrote Post(Thread)/SendMessage; filtering of posted/sent
106 messages (by app) is now possible with Peek/GetMessage.
107 o PeekMessage fix; got rid of double removal for untranslated
108 messages
[5800]109
[5789]110 2001-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
111 - GDI32: o Commented out recent changes (color conversion) in
112 SetDIBitsToDevice. Breaks startup bitmap of Acrobat Reader 4
[5794]113 o GetTextExtentPointA; call WGSS instead.
114 Better result (strings not clipped).
[5789]115 - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
116 handle)
[5793]117 - IPHLPAPI o Added stub dll
[5789]118
[5783]119 2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
120 - USER32: o RedrawWindow with desktop window handle no longer returns
121 an error.
[5785]122 (fixes RealPlayer Auto Size window)
123 - Odin.ini o Added font mapping for MS Shell Dlg to WarpSans
[5787]124 (gets rid of ugly fonts (in dialogs) which also have the wrong
[5785]125 size (text clipping))
[5787]126 - KERNEL32: o CreateFile for partitions; handle lookup fails if
127 OS/2 handle is set to -1 (happens if disk not inserted)
128 -> set to 0 instead
[5783]129
[5775]130 2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
131 - COMCTL32: o Partial merge of listview control with latest Wine
[5779]132 o Listview: Send WM_MEASUREITEM for controls with
133 LVS_OWNERDRAWFIXED style.
134 (TODO: sets size for all items only)
135 (fixes wrong item size for VirtualPC main window)
[5775]136 - USER32: o Fixed minimizing & restoring of top-level windows
[5781]137 - KERNEL32: o Check name before adding dependency for module in
138 order to avoid circular dependencies (WNETAP32 (== NETAPI32)
139 imports from NETAPI32)
140 (fixes crash at exit in VirtualPC)
[5775]141
[5767]142 2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
[5770]143 - GDI32: o Fixed LPtoDP/DPtoLP again.
[5767]144 - USER32: o Paint menu item first before destroying it
145 (prevents menu control from painting selected item on
146 desktop)
[5770]147 o Don't show or hide scrollbar in SetScrollInfo if
148 scroll parameters didn't change.
149 (fixes loop in VirtualPC settings dialog)
[5767]150
[5765]151 2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
152 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
153
[5763]154 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
[5765]155 - win32k: o Added improvements from Rafal, better validation of the
[5763]156 paths which are found. Might cause some warnings for
157 some of you, but just read and ignore them.
158 Run configure.cmd (one of them)!
159
[5741]160 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
[5763]161 - GDI32: o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
[5761]162 illegal values (TODO: check what NT does)
163 (fixes huge buttons in VirtualPC dialog (font with wrong
164 height created))
[5758]165 - INCLUDE\odinwrap.h:
166 o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
167 and restore FS!!!
168 (FS corruption in release build; mainly affects wsock32)
[5741]169 - WS2_32: o Added more exports
[5744]170 - KERNEL32: o Export TryEnterCriticalSection
[5747]171 o InterlockedCompareExchange bugfix; should not always return
172 old destination; return whatever cmpxchg puts in eax
[5744]173 - SHLWAPI: o Export SHSetValueW
[5747]174 o Ordinal export 342 is InterlockedCompareExchange implementation
175 Takes 3 parameters, not 4. (Wine bug)
[5752]176 o Ordinal export 151 takes 3 parameters, not zero.
[5763]177 o Implemented SHLWAPI_151 (case sensitive string compare
[5752]178 with length; ascii version of SHLWAPI_152)
[5763]179 o Implemented SHLWAPI_153 (case insensitive string compare
[5752]180 with length (ascii))
[5763]181 o Added SHLWAPI_154 (case insensitive string compare with
[5752]182 length (unicode))
[5747]183 - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
184 - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
185 o Set lasterror in EnumServicesStatusA/W stubs
[5756]186 - GDI32: o GetTextExtentPointA now handles strings larger than 512
187 characters.
[5741]188
[5739]189 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
190 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
191
[5735]192 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
193 - KERNEL32: o Fixed FS corruption in LCMapStringA/W
194 o ole2nls: resync with latest Wine sources
195
[5724]196 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
[5733]197 - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
[5763]198 with RDW_ALLCHILDREN flag.
[5733]199 (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
200 style -> InvalidateRect overwrites child windows (buttons))
201
202 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
[5724]203 - USER32: o Destroy menu windows when they are no longer used.
[5763]204 (fixes activation problems with dialogs created after
[5724]205 selecting a menu item)
206 (TODO: sync with latest wine menu control sourcecode)
[5726]207 o clientHeight bugfix (fixes crash in Solitaire)
[5730]208 o Check if another app changed mouse cursor (Get/SetCursor)
209 (previously mouse cursor did not change back if another
210 app modified it)
[5724]211
[5720]212 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
213 - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
214 both client and frame window.
215 (winhlp32 buttons are now visible again)
216
[5719]217 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
218 - Tools\bin:o Synced with other projects using the same tools.
219
[5708]220 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
221 - USER32: o BeginPaint must return logical points instead of device points.
222 (not the same if e.g. app changes page viewport)
223 (fixes scaling in Opera)
[5711]224 o SetFocus fix; manual activation of windows; PM sometimes
225 changes the Z-order of the window being activated.
226 Also call WH_CBT hook handler (if present)
227 (fixes hotlist window in Opera)
[5714]228 - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
229 if true. (verified in NT4, SP6)
[5708]230
[5705]231 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
232 - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
233 - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
234 Wrong assumption about lParam as it's not always a pointer
235 (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
236
[5700]237 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
238 - COMCTL32: o Fixed wrong return values for datetime control
239 (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
240
[5683]241 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
242 - USER32: o Rewrote window handling. Back to using frame and client windows
243 for each win32 window.
244 (fixes visible region problems with e.g. Opera)
245 Frame windows never have the WS_CLIPCHILDREN style; this caused
246 the transparency problems reported earlier when using this method.
[5719]247 E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
248 painting algorithm stops top-down search when it finds
[5683]249 a window with WS_CLIPCHILDREN style
[5719]250 -> result: dialog window won't update groupbox background
[5683]251 as groupbox only draws the border
[5719]252 o UpdateWindow: Must use frame window handle even though
[5683]253 UpdateWindow only updates the client area.
254 If the frame window has a valid update region and we call
[5719]255 WinUpdateWindow for the client window, then no WM_PAINT
[5683]256 messages will be sent.
257 o Don't erase background in RedrawWindow (invalidate) when
[5719]258 RDW_ERASE flag not set.
[5683]259 (gets rid of excessive background redraws (flickering) for
260 progress windows in some installers)
261 o Fixed ScrollWindow bug
262 o WM_SHOWWINDOW sent twice
263 o Mark window's visible region as changed when client receives
264 WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
265 flag is set (regardless of erase flag set by RedrawWindow)
[5688]266 o ScrollDC fix (window handle transation)
267 o ScrollDC and ScrollWindowEx bugfix (setting update region)
[5686]268 (fixes scrolling in MS Word 97)
[5688]269 - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
270 (fixes pictures in (some) documents for Word 97)
271 TODO: Probably need to check bitfields and convert for some
272 other blit functions
[5683]273
[5679]274 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
275 - GDI32: o Rop conversion for DIB Section blits
276 o Support for negative height (origin top left) in
[5691]277 SetDIBitsToDevice + StretchDIBits
[5679]278
279 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
280 - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
281 then the rectangle isn't empty. (include/include input)
282 (fixes e.g. missing erase background when slowly moving window
283 over Odin window (full window dragging enabled))
284
[5675]285 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
286 - src/ws2help, bin/debug, bin/release, src/win32k/list,
287 src/win32k/debug:
288 o Removed directories. These were either not needed
289 or unused. I did this now since I was going to
290 remove ws2help anyway and there by breaking your tree.
291 - tools/bin/CVSRemoveDeletedDirs.cmd:
292 o Rexx script which removes the above directories
293 from your local tree. Run this from the root of the tree.
294 To physically remove the directories you have to specify
295 REMOVE as argument (no dash or slash!).
296
[5671]297 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
298 - src/makefile:
299 o Ignore WS2HELP for the moment.
300 (Never add empty subdirs to /src without making
301 /src/makefile ignore it!)
302
[5663]303 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
[5668]304 - WS2_32: o created skeleton and added forwarders to WSOCK32
[5666]305 - KERNEL32: o CreateProcess error handling corrected, if
306 O32_CreateProcess fails with specific reason
[5663]307
[5656]308 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
309 - SHELL32: o Update for SHFileOperationA (FO_MOVE)
310
311 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
312 - USER32: o FrameTrackFrame bugfix for moving child windows
313
[5645]314 2000-05-03: Yuri Dario <mc6530@mclink.it>
315 - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
[5649]316 o Fix for groupbox WM_SETFONT handler. Must erase top part
317 if font is changed.
[5652]318 - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
[5645]319
Note: See TracBrowser for help on using the repository browser.