source: trunk/changelog@ 7112

Last change on this file since 7112 was 7112, checked in by achimha, 24 years ago

* empty log message *

File size: 10.0 KB
RevLine 
[7112]1/* $Id: changelog,v 1.1767 2001-10-18 15:36:49 achimha Exp $ */
[6074]2
[7112]3 2001-10-18: Achim Hasenmueller <achimha@innotek.de>
4 - USER32: o temporarily backed out a change from earlier today
5 in the color pointer conversion code that causes
6 severe regressions. Look for @@@AH in oslibres.cpp
7
[7105]8 2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
9 - DDRAW: o Check if DirectDraw object is associated with Clipper.
10 - SHELL32: o Compile fix for release build
[7106]11 - USER32: o Fix for pointer conversion
[7108]12 o Notify visible region callback when WM_SHOW arrives.
13 For some reason we don't receive a WM_VRNENABLED message
14 when a window is shown for the first time.
15 - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
[7105]16
[7094]17 2001-10-17: knut stange osmundsen <kosmunds@csc.com>
18 - common: o Corrected bug in kFile buffering which caused impdef to
19 crash in some cases.
20
[7087]21 2001-10-17: Patrick Haller <patrick.haller@innotek.de>
22 - SHELL32: o WINE resync 20011017
[7092]23 - KERNEL32: o minor heap optimization
24 - USER32: o minor handle mgmt optimizations
[7101]25 - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
[7087]26
[7083]27 2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
28 - DDRAW: o Fixes for DDBLT_COLORFILL
[7089]29 - WS2_32: o Added stubs for WSAEnumProtocolsA/W
[7096]30 - USER32: o SetFocus fix; don't always activate window because that
31 changes the z-order which interferes (among other things)
32 with GetNextDlgTabItem & GetNextDlgGroupItem
33 o Removed some GetNextDlgGroupItem changes which are no longer
34 necessary due to the SetFocus fix
[7083]35
[7077]36 2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
37 - KERNEL32, CUSTOMBUILD, USER32:
38 o Custom build fixes + changes
[7081]39 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
40 Some applications interpret this value as a signed long.
[7077]41 - USER32: o Fix for pointer conversion
42
[7073]43 2001-10-16: Patrick Haller <patrick.haller@innotek.de>
44 - WSOCK32: o enabled receive and send timeout socket options
45 (SO_SNDTIMEO, SO_RCVTIMEO)
46
[7062]47 2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
[7067]48 - KERNEL32, USER32, WNASPI32, DDRAW:
[7062]49 o Custom build updates
50
[7044]51 2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
52 - USER32: o Convert color cursor to monochrome if it only uses two colors.
[7094]53 This overcomes a silly limitation in some less advanced
[7059]54 display drivers. (SDD still has no support for color cursors!)
[7044]55 (fixes mouse cursor flickering & screen distortion when
56 accessing the frame buffer directly)
57 NOTE: This is a partial solution only. Real color cursors
58 still use GRADD's rather poor software emulation.
59
[7039]60 2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
61 - WSOCK32: o Overwrite IP header length in sendto for raw sockets
62 with IP_HDRINCL option set.
[7094]63 (fixes errors for apps that use big endian format for
[7039]64 the length word)
65 o WSAEnumNetworkEvents now reports (some) events properly
66 o Call WSACleanup during dll unload in case application
67 forgot to do that.
68
[7037]69 2000-10-12: Yuri Dario <mc6530@mclink.it>
70 - USER32: o GetNextDlgGroupItem fix for infinite loop in Opera
71
[7035]72 2001-10-12: Achim Hasenmueller <achimha@innotek.de>
73 - KERNEL32: o use bounce buffers if end of buffer crosses
74 tiled region barrier, not start of buffer
[7036]75 (yeah, being nit-picking here, OS/2 will actually
76 never give you a memory object that crosses the boundary...)
[7035]77
[7029]78 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
79 - include: o debugtools.h: memory corruption in debugstr_()
80 - KERNEL32: o (cheap) heap lookup acceleration
81 o better profiler calibration :)
[7033]82 o bounce buffers for DeviceIoControl() with
83 high memory buffers
[7032]84 - SHELL32: o ~10% speed improvement on shell folder operations ;-)
[7029]85
[7017]86 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
87 - USER32: o SetScrollRange: return error if min > max or out of range
88 (ERROR_INVALID_SCROLLBAR_RANGE)
89 (behaviour of NT4, SP6)
[7094]90 o Scrollbar control window not disabled properly when using
91 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
[7019]92 and call EnableScrollbar)
93 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
94 with size grip style)
[7024]95 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
96 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
97 wsock32
[7019]98
[7011]99 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
[7094]100 - KERNEL32: o added ODIN performance profiler
[7011]101 (perf_0.log for PROFILE builds)
[7016]102 - SHELL32: o ~30% speed improvement on shell folder operations
[7011]103
[6980]104 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
105 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
106 get called very often. (like IsWindow, GetParent & IsWindowVisible)
107 This tends to make logfiles very big...
108 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
109 IP_MULTICAST_TTL to setsockopt
[6993]110 o Add support for WS2_32 IPPROTO_IP options
111 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
112 wsock32
[6980]113 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
114 (surflock/unlock)
115
[6979]116 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
117 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
118 IOCTL_CDROM_LOAD_MEDIA
119 IOCTL_CDROM_PAUSE_AUDIO
120 IOCTL_CDROM_STOP_AUDIO
121 IOCTL_CDROM_RESUME_AUDIO
[6985]122 IOCTL_CDROM_PLAY_AUDIO_MSF
[6979]123 o added IOCTL_STORAGE_EJECT_MEDIA
124 IOCTL_STORAGE_LOAD_MEDIA
[6985]125 IOCTL_DISK_EJECT_MEDIA
126 IOCTL_DISK_CHECK_VERIFY
[6994]127 - IPHLPAPI: o added fake version of GetAdaptersInfo()
[6998]128 - ODINWRAP: o standard C compiler compatibility
[7001]129 - MAKE: o fixes to the profile make include
130 - SHELL32: o PIDL: instrumentation for performance tuning
[6979]131
[6974]132 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
133 - KERNEL32: o Image header page must be readonly
134 o Temporarily disabled high memory usage for heap
135
[6969]136 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
137 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
[6971]138 o added further messages to wndmsg.cpp
[6969]139 - KERNEL32: o added further error codes to error2WinError
140
[6964]141 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
142 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
143 if mp2 & AWP_ACTIVATE
144 (fixes activation of some inactive windows; used to be
145 activated but not brought to the top)
146
[6959]147 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
148 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
[7094]149 - USER32: o Eliminated flickering during frame sizing due to
[6962]150 unnecessary drawing
151 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
152 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
[6959]153
[6953]154 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
[7094]155 - QUARTZ/OLEAUT32:
[6953]156 o Wine 20011004 resync
[6955]157 - KERNEL32: o Reduce overhead for heap allocation
158 o Always allocate heap memory from high memory (if available)
[6956]159 o Allocate extra heap memory in 64kb units
[7094]160 MUST use 64kb here or else we are at risk of running out
161 of virtual memory space. (when allocating 4kb we actually
[6956]162 get 4kb + 60k uncommited)
[7094]163 (fixes out of resources error while loading big movies
[6956]164 in The Playa)
[6953]165
[6949]166 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
167 - DDRAW: o Added stretching support for blitting to the screen
168 (the Playa can now play movies in fullscreen mode)
169
[6939]170 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
[6940]171 - WINMM: o Allocate handle for new timer and verify handle
[7094]172 is valid before using it.
[6939]173 (prevents crashes when app attempts to delete timer twice
174 (DivX 4))
175 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
176 o Take clipping into account in SurfBlt4. Windowed DirectDraw
[7094]177 blitting now seems to work well.
[6939]178 (only tried DivX 4; needs more testing)
[6940]179 - USER32: o Rewrote sizing & moving of windows (frame tracking)
180 (ported Wine version + fixed some bugs)
181 Some applications (e.g. RealPlayer) resize themselves
182 when receiving WM_SIZING msgs. Not possible to send those
183 with PM's frame tracking.
184 TODO: fix flickering of size border (dynamic drag off)
185 TODO: WM_SIZING handling not 100% correct yet
186 TODO: Must display size/move cursor when starting action
187 from system menu
188 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
[6943]189 - OLEAUT32: o Wine update
[6939]190
[6931]191 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
192 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
[7094]193 (Some dlls (divx codec) call CoFreeUnusedLibraries which
[6940]194 unloads the same dll if we use CoLoadLibrary (-> crash)
[6931]195 NT's regsvr32 doesn't use CoLoadLibrary either)
[6939]196 - USER32: o OSLibWinGetMsg bugfix
[6931]197
[6926]198 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
199 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
200
Note: See TracBrowser for help on using the repository browser.