source: trunk/changelog@ 7250

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

* empty log message *

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