source: trunk/changelog@ 5785

Last change on this file since 5785 was 5785, checked in by sandervl, 25 years ago

* empty log message *

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