source: trunk/changelog@ 5804

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

* empty log message *

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