source: trunk/changelog@ 5800

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

* empty log message *

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