source: trunk/changelog@ 5770

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

* empty log message *

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