source: trunk/changelog@ 5864

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

* empty log message *

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