source: trunk/changelog@ 7895

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

* empty log message *

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