source: trunk/changelog@ 5793

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

* empty log message *

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