source: trunk/changelog@ 7276

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

* empty log message *

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