source: trunk/changelog@ 7261

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

* empty log message *

File size: 17.5 KB
Line 
1/* $Id: changelog,v 1.1810 2001-10-29 13:36:12 sandervl Exp $ */
2
3 2001-10-29: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o Always IOCTL_DISK/DSK_GETLOCKSTATUS for IOCTL_STORAGE_CHECK_VERIFY
5 (handle doesn't need to be valid for this ioctl)
6 - USER32: o Send WM_DEVICECHANGE to top-level windows when a CD is
7 inserted or removed (poll CD status every 100ms)
8
9 2001-10-29: Achim Hasenmueller <achimha@innotek.de>
10 - BUILD: o strip EAs from binary before executing LXLITE on it to
11 prevent errors in LXLITE if the file is on a LAN Server
12 JFS volume
13
14 2001-10-29: knut st. osmundsen <kosmunds@csc.com>
15 - NTDLL: o _ultow and RtlIntegerToUnicodeString.
16
17 2001-10-28: Sander van Leeuwen <sandervl@xs4all.nl>
18 - COMCTL32: o LISTVIEW_GetItemWidth bugfix: item can never be bigger
19 than the client area
20 - USER32: o Fixes for Set/GetWindowLong for dialogs. (unicode flag not
21 passed to parent class methods)
22 o Added SetDialogHook function for custom build
23 - KERNEL32: o Added RegisterCustomDriver
24 o Added SetDefaultLanguage to override default language
25
26 2001-10-27: Sander van Leeuwen <sandervl@xs4all.nl>
27 - KERNEL32: o IOCTL_SCSI_GET_ADDRESS: fail if wnaspi32 not loaded
28 - WINMM: o Added option to turn off audio by setting a key in the registry
29 HKEY_LOCAL_MACHINE\\System\\CustomBuild
30 DisableAudio = [0|1] (DWORD type)
31 - USER32: o CreateIconIndirect bugfix
32
33 2001-10-26: knut st. osmundsen <kosmunds@csc.com>
34 - FastDep: o Corrected crash on bad dependency file.
35
36 2001-10-26: Achim Hasenmueller <achimha@innotek.de>
37 - WNASPI32: o don't fail DLL loading if ASPI library fails to init
38
39 2001-10-26: Sander van Leeuwen <sandervl@xs4all.nl>
40 - KERNEL32: o Better implementation of IOCTL_CDROM(DISK/STORAGE)_CHECK_VERIFY
41 o CDROM ioctls: Use signature returned by IOCD_IDENTIFY ioctl
42 o Implemented IOCTL_CDROM_READ_TOC
43
44 2001-10-26: Patrick Haller <patrick.haller@innotek.de>
45 - USER32: o fixed ESC keyboard event
46 o fixed passing thru special key events to the frame window
47 o partial fix for shift key processing
48 o fixed right shift processing (and possibly numerous
49 other extended keys)
50 o fixed this &%$&%! Alt-Gr-Key-Emulation
51 remaining issues:
52 AltGr won't toggle GetAsyncKeyState() or GetKeyState()
53
54 2001-10-25: Patrick Haller <patrick.haller@innotek.de>
55 - USER32: o fixed scancodes for [Pause] and [PrtScr]
56
57 2001-10-25: Sander van Leeuwen <sandervl@xs4all.nl>
58 - USER32: o Fixed sending of WM_ACTIVATEAPP messages. Only send them
59 to top-level windows when application gains or loses focus
60 from/to a window of another process.
61 o Fix for window tracking with thin frame (moving/sizing
62 window left tracks on the screen (fullscreen dragging disabled))
63 - KERNEL32: o Never use DosError to disable hard errors! Use SetErrorMode
64 *and* restore old error mode afterwards.
65 o IOCTL_DISK_GET_DRIVE_GEOMETRY change:
66 Applications can use this IOCTL to check if the floppy has
67 been changed. OSLibDosGetDiskGeometry won't fail when that
68 happens so we read one byte from the disk and return
69 ERROR_MEDIA_CHANGED if it fails with ERROR_WRONG_DISK.
70 - COMCTL32: o ListView: LVM_SETITEMA: update item even when 'new' text is
71 the same.
72 (CVP depends on this)
73
74 2001-10-24: Patrick Haller <patrick.haller@innotek.de>
75 - USER32: o added translation between PM Scancodes and
76 Windows Scancodes
77 Note: Open32 uses always PM Scancodes!
78 o fixed GetKeyNameText as far as possible
79 Despite we'll have to implement a flexible keyboard
80 layout scheme in the future.
81
82 2001-10-24: Achim Hasenmueller <achimha@innotek.de>
83 - PMKBDHK: o link statically with C runtime
84
85 2001-10-24: Sander van Leeuwen <sandervl@xs4all.nl>
86 - USER32: o SCROLLBAR: Only set focus to scrollbar control if it has
87 the WS_TABSTOP style (bugfix taken from Wine)
88 o IsWindowVisible: check for WS_CHILD style before checking
89 parents
90 (CVP: fixes moving of dialog with invisible owner)
91 o Frame tracking: activate and bring window to top when
92 control key is not pressed (OS/2 look)
93 (fixes activation by clicking on title bar and you can now
94 track frame without activating it)
95 o Double mouse click sent two up messages
96 o Double click on system menu now closes window
97 (SetCapture interferes with double click message generation)
98 - WINMM: o Dynamically load MDM; Windows applications (that don't
99 require sound) will no longer fail when MMPM/2 isn't available.
100
101 2001-10-23: Sander van Leeuwen <sandervl@xs4all.nl>
102 - COMCTL32: o ListView: WM_KEYDOWN -> if WM_NOTIFY returns TRUE, then
103 don't process key anymore; the app did it for us
104 o ListView: First focus change didn't work
105 o Partial implementation of draglists. Only sends DL_BEGINDRAG
106 DRAGLISTMSGSTRING message which is enough for CVP.
107 - USER32: o Fixed moving of window with RMB
108
109 2001-10-23: Patrick Haller <patrick.haller@innotek.de>
110 - USER32: o major improvement on keyboard handling
111 Special AltGr mapping missing yet
112 o partial fix to GetKeyNameText(),
113 two Open32 bugs remaining:
114 (injected scancodes ignored (undoc),
115 extended key bit ignored)
116
117 2001-10-22: Patrick Haller <patrick.haller@innotek.de>
118 - TESTAPP: o added keyboard test program for low-level testing
119 of the keyboard routines
120 (Queue, WH_KEYBOARD, WH_KEYBOARD_LL)
121 - PMKBDHK: o added initial version
122 - USER32: o enabled PMKBDHK
123 o fixed minor issue in WH_KEYBOARD_LL
124 - SHELL32: o minor speedup in PIDL handling
125 - KERNEL32: o removed experimental heap handle cache stats
126
127 2001-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
128 - WSOCK32: o Fix for sending FD_CLOSE notification when connection
129 is closed at the remote end.
130
131 2001-10-20: Achim Hasenmueller <achimha@innotek.de>
132 - WNASPI32: o do not fail in init routine in case ASPIROUT.SYS
133 is not present. Just return errors from all calls
134 if this is the case.
135 TODO: refine calls to not return any ASPI devices!
136
137 2001-10-19: Achim Hasenmueller <achimha@innotek.de>
138 - WSOCK32: o implemented error bit handling in Winsock 2.0
139 event semaphore notification for async select
140
141 2001-10-19: Patrick Haller <patrick.haller@innotek.de>
142 - COMCTL32: o updated listview and status to wine level
143 - COMDLG32: o fix crash in FileDlg95 (used freed memory object)
144
145 2001-10-18: knut stange osmundsen <kosmunds@csc.com>
146 - odin32.*.vac3*.mk:
147 o Added /noignorecase to ILIBFLAGS. Object libraries
148 is now using case sensitive names. This removes some
149 warnings during custombuild and fixes a duplicate symbol
150 problem in kKrnlLibR3.
151
152 2001-10-18: Achim Hasenmueller <achimha@innotek.de>
153 - USER32: o temporarily backed out a change from earlier today
154 in the color pointer conversion code that causes
155 severe regressions. Look for @@@AH in oslibres.cpp
156
157 2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
158 - DDRAW: o Check if DirectDraw object is associated with Clipper.
159 - SHELL32: o Compile fix for release build
160 - USER32: o Fix for pointer conversion
161 o Notify visible region callback when WM_SHOW arrives.
162 For some reason we don't receive a WM_VRNENABLED message
163 when a window is shown for the first time.
164 - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
165 - GDI32: o Removed wrong warnings about GpiQueryBitmapBits
166
167 2001-10-17: knut stange osmundsen <kosmunds@csc.com>
168 - common: o Corrected bug in kFile buffering which caused impdef to
169 crash in some cases.
170
171 2001-10-17: Patrick Haller <patrick.haller@innotek.de>
172 - SHELL32: o WINE resync 20011017
173 - KERNEL32: o minor heap optimization
174 - USER32: o minor handle mgmt optimizations
175 - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
176
177 2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
178 - DDRAW: o Fixes for DDBLT_COLORFILL
179 - WS2_32: o Added stubs for WSAEnumProtocolsA/W
180 - USER32: o SetFocus fix; don't always activate window because that
181 changes the z-order which interferes (among other things)
182 with GetNextDlgTabItem & GetNextDlgGroupItem
183 o Removed some GetNextDlgGroupItem changes which are no longer
184 necessary due to the SetFocus fix
185
186 2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
187 - KERNEL32, CUSTOMBUILD, USER32:
188 o Custom build fixes + changes
189 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
190 Some applications interpret this value as a signed long.
191 - USER32: o Fix for pointer conversion
192
193 2001-10-16: Patrick Haller <patrick.haller@innotek.de>
194 - WSOCK32: o enabled receive and send timeout socket options
195 (SO_SNDTIMEO, SO_RCVTIMEO)
196
197 2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
198 - KERNEL32, USER32, WNASPI32, DDRAW:
199 o Custom build updates
200
201 2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
202 - USER32: o Convert color cursor to monochrome if it only uses two colors.
203 This overcomes a silly limitation in some less advanced
204 display drivers. (SDD still has no support for color cursors!)
205 (fixes mouse cursor flickering & screen distortion when
206 accessing the frame buffer directly)
207 NOTE: This is a partial solution only. Real color cursors
208 still use GRADD's rather poor software emulation.
209
210 2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
211 - WSOCK32: o Overwrite IP header length in sendto for raw sockets
212 with IP_HDRINCL option set.
213 (fixes errors for apps that use big endian format for
214 the length word)
215 o WSAEnumNetworkEvents now reports (some) events properly
216 o Call WSACleanup during dll unload in case application
217 forgot to do that.
218
219 2000-10-12: Yuri Dario <mc6530@mclink.it>
220 - USER32: o GetNextDlgGroupItem fix for infinite loop in Opera
221
222 2001-10-12: Achim Hasenmueller <achimha@innotek.de>
223 - KERNEL32: o use bounce buffers if end of buffer crosses
224 tiled region barrier, not start of buffer
225 (yeah, being nit-picking here, OS/2 will actually
226 never give you a memory object that crosses the boundary...)
227
228 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
229 - include: o debugtools.h: memory corruption in debugstr_()
230 - KERNEL32: o (cheap) heap lookup acceleration
231 o better profiler calibration :)
232 o bounce buffers for DeviceIoControl() with
233 high memory buffers
234 - SHELL32: o ~10% speed improvement on shell folder operations ;-)
235
236 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
237 - USER32: o SetScrollRange: return error if min > max or out of range
238 (ERROR_INVALID_SCROLLBAR_RANGE)
239 (behaviour of NT4, SP6)
240 o Scrollbar control window not disabled properly when using
241 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
242 and call EnableScrollbar)
243 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
244 with size grip style)
245 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
246 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
247 wsock32
248
249 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
250 - KERNEL32: o added ODIN performance profiler
251 (perf_0.log for PROFILE builds)
252 - SHELL32: o ~30% speed improvement on shell folder operations
253
254 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
255 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
256 get called very often. (like IsWindow, GetParent & IsWindowVisible)
257 This tends to make logfiles very big...
258 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
259 IP_MULTICAST_TTL to setsockopt
260 o Add support for WS2_32 IPPROTO_IP options
261 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
262 wsock32
263 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
264 (surflock/unlock)
265
266 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
267 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
268 IOCTL_CDROM_LOAD_MEDIA
269 IOCTL_CDROM_PAUSE_AUDIO
270 IOCTL_CDROM_STOP_AUDIO
271 IOCTL_CDROM_RESUME_AUDIO
272 IOCTL_CDROM_PLAY_AUDIO_MSF
273 o added IOCTL_STORAGE_EJECT_MEDIA
274 IOCTL_STORAGE_LOAD_MEDIA
275 IOCTL_DISK_EJECT_MEDIA
276 IOCTL_DISK_CHECK_VERIFY
277 - IPHLPAPI: o added fake version of GetAdaptersInfo()
278 - ODINWRAP: o standard C compiler compatibility
279 - MAKE: o fixes to the profile make include
280 - SHELL32: o PIDL: instrumentation for performance tuning
281
282 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
283 - KERNEL32: o Image header page must be readonly
284 o Temporarily disabled high memory usage for heap
285
286 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
287 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
288 o added further messages to wndmsg.cpp
289 - KERNEL32: o added further error codes to error2WinError
290
291 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
292 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
293 if mp2 & AWP_ACTIVATE
294 (fixes activation of some inactive windows; used to be
295 activated but not brought to the top)
296
297 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
298 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
299 - USER32: o Eliminated flickering during frame sizing due to
300 unnecessary drawing
301 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
302 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
303
304 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
305 - QUARTZ/OLEAUT32:
306 o Wine 20011004 resync
307 - KERNEL32: o Reduce overhead for heap allocation
308 o Always allocate heap memory from high memory (if available)
309 o Allocate extra heap memory in 64kb units
310 MUST use 64kb here or else we are at risk of running out
311 of virtual memory space. (when allocating 4kb we actually
312 get 4kb + 60k uncommited)
313 (fixes out of resources error while loading big movies
314 in The Playa)
315
316 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
317 - DDRAW: o Added stretching support for blitting to the screen
318 (the Playa can now play movies in fullscreen mode)
319
320 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
321 - WINMM: o Allocate handle for new timer and verify handle
322 is valid before using it.
323 (prevents crashes when app attempts to delete timer twice
324 (DivX 4))
325 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
326 o Take clipping into account in SurfBlt4. Windowed DirectDraw
327 blitting now seems to work well.
328 (only tried DivX 4; needs more testing)
329 - USER32: o Rewrote sizing & moving of windows (frame tracking)
330 (ported Wine version + fixed some bugs)
331 Some applications (e.g. RealPlayer) resize themselves
332 when receiving WM_SIZING msgs. Not possible to send those
333 with PM's frame tracking.
334 TODO: fix flickering of size border (dynamic drag off)
335 TODO: WM_SIZING handling not 100% correct yet
336 TODO: Must display size/move cursor when starting action
337 from system menu
338 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
339 - OLEAUT32: o Wine update
340
341 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
342 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
343 (Some dlls (divx codec) call CoFreeUnusedLibraries which
344 unloads the same dll if we use CoLoadLibrary (-> crash)
345 NT's regsvr32 doesn't use CoLoadLibrary either)
346 - USER32: o OSLibWinGetMsg bugfix
347
348 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
349 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
350
Note: See TracBrowser for help on using the repository browser.