source: trunk/changelog@ 7252

Last change on this file since 7252 was 7252, checked in by bird, 24 years ago

* empty log message *

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