source: trunk/changelog@ 5822

Last change on this file since 5822 was 5822, checked in by phaller, 24 years ago

Added WOW32

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