source: trunk/changelog@ 5783

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

* empty log message *

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