source: trunk/changelog@ 7802

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

* empty log message *

File size: 13.9 KB
Line 
1/* $Id: changelog,v 1.1954 2002-02-05 17:59:49 sandervl Exp $ */
2
3 2002-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Ported SendMessageCallbackA/W, SendMessageTimeoutA/W,
5 SendNotifyMessageA/W from Wine (20020122)
6 o Rewrote SendMessageA/W to behave more like Wine
7
8 2002-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
9 - KERNEL32; o Added dummy executable class
10 o Ported GetTempPathA/W from Wine
11
12 2002-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
13 - OLE32: o Fixed bug in OLE clipboard implementation; the handle
14 returned by GetClipboardData is no longer valid after
15 calling CloseClipboard. A copy of the data must be made.
16
17 2002-01-20: Vitali Pelenyov <sunlover@anduin.net>
18 - USER32: o Fix for position of fake window (CreateFakeWindowEx)
19
20 2002-01-18: Vitali Pelenyov <sunlover@anduin.net>
21 - KERNEL32: o GetDriveType fix for detection cdrom drives under certain
22 circumstances (when cdrom is not the last drive letter)
23
24 2002-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
25 - USER32: o CreateFakeWindowEx change; need to specifiy window class
26 Added DestroyFakeWindow for deleting fake window object.
27 - KERNEL32: o Custom device driver changes for driver instance pointer
28
29 2002-01-09: knut st. osmundsen <bird@anduin.net>
30 - Tools/CmdQd:
31 o Corrected bad fix from 2002-01-01.
32
33 2002-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
34 - KERNEL32: o Add driver data parameter to custom device driver calls
35
36 2002-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
37 - KERNEL32: o Fixes for DosQueryAffinity & DosSetAffinity on non-SMP
38 systems (set default/ignore)
39 - USER32: o Fixed restoring of windows after minimizing/maximizing
40 o Allocate more memory for 40x40 icon generation
41 o Fixed SetClipboardData for CF_UNICODETEXT (translate to
42 ascii and use CF_TEXT)
43
44 2002-01-06: knut st. osmundsen <bird@anduin.net>
45 - DailyBuild:
46 o - Do not distribute odin.ini.
47
48 2002-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
49 - KERNEL32: o Changed HeapAlloc/HeapReAlloc:
50 - round up size to next 8 bytes boundary
51 - when reallocating memory block, don't use different
52 memory block unless new size is larger than old size
53 (rounded up to next 8 bytes boundary)
54 (Verified this behaviour in NT4 (Global/Heap(Re)Alloc);
55 fixes crashes in Opera 5.12 which relies on this 'feature')
56 - GDI32: o Print handle type name in SelectObject
57 o EnumFontProcExW -> must restore FS in enum handler
58
59 2002-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
60 - KERNEL32: o Rewrote GetDriveType (fixes detection of LAN drives)
61
62 2002-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
63 - GDI32: o Better logging for some text functions
64
65 2002-01-01: knut st. osmundsen <bird@anduin.net>
66 - Tools/CmdQd:
67 o Ignore the CmdQd kill returncode in clean2.
68
69 2001-12-31: Sander van Leeuwen <sandervl@xs4all.nl>
70 - GDI32: o Use critical section in dibsection class instead of vmutex
71
72 2001-12-31: knut st. osmundsen <bird@anduin.net>
73 - Tools/CmdQd:
74 o Corrected bad statement in the clean2 rule.
75
76 2001-12-30: Sander van Leeuwen <sandervl@xs4all.nl>
77 - KERNEL32: o Fixed some wrong return values for disk functions (hmdisk)
78 o GetVolumeInformation: use original volume name to
79 determine maximum file name length
80 - USER32: o Enforce WS_EX_WINDOWEDGE style (Wine)
81 (fixes Opera 6 menu)
82 - GDI32: o BitBlt, StretchBlt: sync dib section if selected into
83 destination HDC
84 (fixes Opera 6 background)
85
86 2001-12-28: Sander van Leeuwen <sandervl@xs4all.nl>
87 - USER32: o Do not send WM_SETCURSOR when mouse is captured (SDK docs)
88
89 2001-12-26: Achim Hasenmueller <achimha@innotek.de>
90 - USER32: o don't use hardcoded font height values for menu fonts. Query
91 graphics driver instead (DevQueryCaps) so that we correctly
92 take font settings into account (small, medium, large)
93
94 2001-12-26: Sander van Leeuwen <sandervl@xs4all.nl>
95 - USER32: o Use Wine version of DrawText(Ex)A/W
96 (fixes underscore painting & positioning of text)
97 o (Auto)Check, (Auto)Radio & (Auto)3State buttons send
98 WM_CTLCOLORSTATIC instead of WM_CTLCOLORBTN (verified in NT4)
99 (fixes opening dialog buttons in Opera 6 (choose interface))
100 o RedrawWindow change: call UpdateWindow if window has invalid
101 rectangle and RDW_UPDATENOW flag set
102 - GDI32: o Removed InternalDrawTextExA/W
103 - ODINBUG: o Update by Herwig Bauernfeind (0.5.5)
104
105 2001-12-23: Sander van Leeuwen <sandervl@xs4all.nl>
106 - WINMM: o DisableWaveAudio function added to disable wave audio (custom build)
107 - GDI32: o CreateFont call wrong for DEFAULT_GUI_FONT (pointsize)
108
109 2001-12-22: Sander van Leeuwen <sandervl@xs4all.nl>
110 - KERNEL32: o Print more information when a missing api is called
111 (image that is responsible)
112
113 2001-12-20: Sander van Leeuwen <sandervl@xs4all.nl>
114 - KERNEL32: o Allow all sections to be accessed when loading an executable/dll
115 with LOAD_LIBRARY_AS_DATAFILE
116 (fixes crashes when accessing resources outside the resource
117 section in Opera 6 binaries)
118 - GDI32: o DIB Section blit: don't check source & destination sizes
119 with DC size (GpiDrawBits does that for us)
120 (fixes the two bitmaps in the opening window of Opera 6
121 (choice between MDI & SDI interface))
122 - USER32: o GetClassNameW: return size in characters and truncate name
123 if buffer not large enough
124 (fixes crash in Opera 6 during startup)
125
126 2001-12-19: knut st. osmundsen <kosmunds@csc.com>
127 - MAKEFILES:o Changed inference rules in /src/mesa/3dfx to support MULTIJOBS.
128 o Fixed some problems with /tools/cmdqd while MULTIJOBS is enabled.
129 - TOOLS: o Created a tiny preload script, PreloadTools.cmd, which preload
130 the tools which will be invoked during a make. (Too bad we can't
131 do this with rexx scripts too...)
132
133 2001-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
134 - KERNEL32: o GetVolumeInformation changes:
135 - report JFS as NTFS
136 - report UDF & CDFS as UDF & CDFS (no change)
137 - report everthing else as FAT16
138 (some applications make assumptions about maximium file size
139 based on the volume name)
140
141 2001-12-16: Sander van Leeuwen <sandervl@xs4all.nl>
142 - USER32: o Fixed memory DC leak in DrawIcon & DrawIconEx
143
144 2001-12-15: Sander van Leeuwen <sandervl@xs4all.nl>
145 - GDI32: o Added statistics for font, bitmap, pen, brush & region objects.
146
147 2001-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
148 - KERNEL32: o CancelIo & GetOverlappedResult added for custom device drivers
149 o Enabled overlapped IO for custom device drivers
150
151 2001-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
152 - USER32: o Added function to override name of the PM keyboard hook dll
153 (custombuild)
154 - WINTRUST: o Added stub dll
155 - KERNEL32/USER32/ODINCRT:
156 o Collect some simple statistics about memory & DC usage
157 (will be extended & enhanced in the future)
158
159 2001-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
160 - USER32: o Put back old windows key scancodes
161 o Fix for handling Alt-F4 in default window handler
162 o SendInput fix; send message and clear extra info
163 afterwards
164 - COMCTL32: o Comboex, rebar, tooltips, toolbar bugfixes: (Wine)
165 NEVER delete the font object received by WM_SETFONT
166
167 2001-12-11: Sander van Leeuwen <sandervl@xs4all.nl>
168 - USER32: o Swallow message if WH_KEYBOARD_LL hook returns TRUE
169 o Fixed windows key scancodes
170 o Do no generate a left control key message when Alt-Gr
171 is pressed (experimental change)
172
173 2001-12-11: Patrick Haller <patrick.haller@innotek.de>
174 - PMKBDHK: o Interception of PM Window Hoteys (i. e. Alt-F7)
175 TODO: generate accelerators in Odin
176
177 2001-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
178 - KERNEL32: o Overlapped IO updates
179
180 2001-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
181 - KERNEL32: o Overlapped IO fix (poll & half or full duplex support)
182 - MAKEFILES:o Delete dummy.c after copying custom library (CUSTOMBUILD=1)
183
184 2001-12-08: Sander van Leeuwen <sandervl@xs4all.nl>
185 - KERNEL32: o Added read & write functions to custom driver interface
186 o OdinSetVersion added to override windows version reported by
187 Odin (Win98, WinME, NT4, Win2000, WinXP)
188 o NEW DEFAULT WINDOWS VERSION IS WINDOWS 2000 SP2 (!)
189 o New versions available for odin.ini version override
190 [WinVersion]
191 Version=Win98 -> Windows 98
192 Version=WinME -> Windows ME
193 Version=NT4 -> Windows NT4 SP6
194 Version=Win2000 -> Windows 2000 SP2 (default)
195 Version=WinXP -> Windows XP
196 o IOCTL_STORAGE_GET_MEDIA_TYPES is identical to
197 IOCTL_DISK_GET_MEDIA_TYPES
198 o Support for Windows 2000 GetVersionEx extension (OSVERSIONINFOEX
199 structure) added
200 o Added symbolic link for Windows 2000 device driver names
201 \\.\Global -> \\.
202 o Clear GENERIC_WRITE flag if application tries to open
203 readonly device (e.g. cdrom). This is not allowed in OS/2.
204 - INSTALL: o Add font mapping for 'MS Shell Dlg 2' to WarpSans
205
206 2001-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
207 - KERNEL32: o GetFileType for parallel port device returns FILE_TYPE_PIPE
208 (verified in NT4, SP6)
209 o Comm functions not valid for parallel port handles
210 o Overlapped IO updates
211 o Com port now uses new overlapped class for overlapped IO
212 o Call ExitProcess when executable entrypoint returns (LX images)
213 o Be careful when cleaning up threads after ExitProcess has
214 been called
215
216 2001-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
217 - KERNEL32: o Added FindFirstFileExA/FindFirstFileExW
218 o Overlapped IO updates (still untested)
219 - DINPUT: o Link with guidlib.lib
220 - GUIDLIB: o Include dinput.h for DirectInput GUIDs
221
222 2001-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
223 - KERNEL32: o Merged WriteFile & WriteFileEx, ReadFile & ReadFileEx
224 handle manager functions
225 o Removed dwType handle manager structure member; added
226 win32 handle to structure
227 (NOTE: All work in progress for new framework for overlapped IO)
228 o ReadFileEx/WriteFileEx: lpOverlapped->Offset & lpOverlapped->OffsetHigh
229 must be 0 if used with named pipes
230
231 2001-12-04: Patrick Haller <patrick.haller@innotek.de>
232 - KERNEL32: o parallel port support restricted to physical ports
233 (LAN redirections not supported)
234
235 2001-12-04: Sander van Leeuwen <sandervl@xs4all.nl>
236 - COMCTL32: o Hack added for proper resizing of wizard property sheet in
237 CVP. Not sure if it's always correct or whether it has a
238 bad effect on other apps (none found so far).
239 - WININET: o HttpSendRequestA fix: strlen(NULL) crashes
240
241 2001-12-03: Patrick Haller <patrick.haller@innotek.de>
242 - KERNEL32: o put in correct ioctl identifiers for parport support
243 in winioctl.h
244 o parallel port support (hardware configuration) enabled
245
246 2001-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
247 - KERNEL32: o Use DosSleep in Sleep (don't call WGSS)
248 o GetThreadPriority: return priority stored in TEB
249 o Rewrote SetThreadPriority; allow it to change priority
250 classes too. WGSS only changes delta in SetThreadPriority
251 and class in SetPriorityClass (but that one affects the whole
252 process, so it is rarely used by applications)
253 THREAD_PRIORITY_IDLE -> PRTYC_IDLETIME, 0
254 THREAD_PRIORITY_LOWEST -> PRTYC_REGULAR, PRTYD_MINIMUM
255 THREAD_PRIORITY_BELOW_NORMAL -> PRTYC_REGULAR, -15
256 THREAD_PRIORITY_NORMAL -> PRTYC_REGULAR, 0
257 THREAD_PRIORITY_ABOVE_NORMAL -> PRTYC_REGULAR, 15
258 THREAD_PRIORITY_HIGHEST -> PRTYC_REGULAR, PRTYD_MAXIMUM
259 THREAD_PRIORITY_TIME_CRITICAL -> PRTYC_TIMECRITICAL, 0
260 o SetPriorityClass; just return success for now
261
262 2001-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
263 - USER32: o Don't send WM_SIZE message to dialog before it receives
264 WM_INITDIALOG
265 (winzip 8.0 and Opera crash when sending this message too soon)
266 (TODO: check in NT if this is really correct)
267 - COMCTL32: o Restored old property sheet code as latest Wine version
268 causes too many new problems.
269
270 2001-12-01: knut st. osmundsen <kosmunds@csc.com>
271 - CRTDLL: o Include ctype.h from dir.c and string.c. (Noted by Ye][ow.)
272
273 2001-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
274 - KERNEL32: o Fixed GetThreadTEB macro & GetCurrentThreadId
275 (completely broke debug build among other things)
276
277 2000-12-01: Yuri Dario <mc6530@mclink.it>
278 - USER32: o MENU_FindItem: extra check added for loops in menus
279
Note: See TracBrowser for help on using the repository browser.