source: trunk/changelog@ 7243

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

* empty log message *

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