source: trunk/changelog@ 5807

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

* empty log message *

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