source: trunk/changelog@ 7173

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

* empty log message *

File size: 12.5 KB
Line 
1/* $Id: changelog,v 1.1781 2001-10-23 21:41:11 sandervl Exp $ */
2
3 2001-10-23: Sander van Leeuwen <sandervl@xs4all.nl>
4 - COMCTL32: o ListView: WM_KEYDOWN -> if WM_NOTIFY returns TRUE, then
5 don't process key anymore; the app did it for us
6 o ListView: First focus change didn't work
7 o Partial implementation of draglists. Only sends DL_BEGINDRAG
8 DRAGLISTMSGSTRING message which is enough for CVP.
9 - USER32: o Fixed moving of window with RMB
10
11 2001-10-23: Patrick Haller <patrick.haller@innotek.de>
12 - USER32: o major improvement on keyboard handling
13 Special AltGr mapping missing yet
14 o partial fix to GetKeyNameText(),
15 two Open32 bugs remaining:
16 (injected scancodes ignored (undoc),
17 extended key bit ignored)
18
19 2001-10-22: Patrick Haller <patrick.haller@innotek.de>
20 - TESTAPP: o added keyboard test program for low-level testing
21 of the keyboard routines
22 (Queue, WH_KEYBOARD, WH_KEYBOARD_LL)
23 - PMKBDHK: o added initial version
24 - USER32: o enabled PMKBDHK
25 o fixed minor issue in WH_KEYBOARD_LL
26 - SHELL32: o minor speedup in PIDL handling
27 - KERNEL32: o removed experimental heap handle cache stats
28
29 2001-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
30 - WSOCK32: o Fix for sending FD_CLOSE notification when connection
31 is closed at the remote end.
32
33 2001-10-20: Achim Hasenmueller <achimha@innotek.de>
34 - WNASPI32: o do not fail in init routine in case ASPIROUT.SYS
35 is not present. Just return errors from all calls
36 if this is the case.
37 TODO: refine calls to not return any ASPI devices!
38
39 2001-10-19: Achim Hasenmueller <achimha@innotek.de>
40 - WSOCK32: o implemented error bit handling in Winsock 2.0
41 event semaphore notification for async select
42
43 2001-10-19: Patrick Haller <patrick.haller@innotek.de>
44 - COMCTL32: o updated listview and status to wine level
45 - COMDLG32: o fix crash in FileDlg95 (used freed memory object)
46
47 2001-10-18: knut stange osmundsen <kosmunds@csc.com>
48 - odin32.*.vac3*.mk:
49 o Added /noignorecase to ILIBFLAGS. Object libraries
50 is now using case sensitive names. This removes some
51 warnings during custombuild and fixes a duplicate symbol
52 problem in kKrnlLibR3.
53
54 2001-10-18: Achim Hasenmueller <achimha@innotek.de>
55 - USER32: o temporarily backed out a change from earlier today
56 in the color pointer conversion code that causes
57 severe regressions. Look for @@@AH in oslibres.cpp
58
59 2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
60 - DDRAW: o Check if DirectDraw object is associated with Clipper.
61 - SHELL32: o Compile fix for release build
62 - USER32: o Fix for pointer conversion
63 o Notify visible region callback when WM_SHOW arrives.
64 For some reason we don't receive a WM_VRNENABLED message
65 when a window is shown for the first time.
66 - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
67 - GDI32: o Removed wrong warnings about GpiQueryBitmapBits
68
69 2001-10-17: knut stange osmundsen <kosmunds@csc.com>
70 - common: o Corrected bug in kFile buffering which caused impdef to
71 crash in some cases.
72
73 2001-10-17: Patrick Haller <patrick.haller@innotek.de>
74 - SHELL32: o WINE resync 20011017
75 - KERNEL32: o minor heap optimization
76 - USER32: o minor handle mgmt optimizations
77 - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
78
79 2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
80 - DDRAW: o Fixes for DDBLT_COLORFILL
81 - WS2_32: o Added stubs for WSAEnumProtocolsA/W
82 - USER32: o SetFocus fix; don't always activate window because that
83 changes the z-order which interferes (among other things)
84 with GetNextDlgTabItem & GetNextDlgGroupItem
85 o Removed some GetNextDlgGroupItem changes which are no longer
86 necessary due to the SetFocus fix
87
88 2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
89 - KERNEL32, CUSTOMBUILD, USER32:
90 o Custom build fixes + changes
91 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
92 Some applications interpret this value as a signed long.
93 - USER32: o Fix for pointer conversion
94
95 2001-10-16: Patrick Haller <patrick.haller@innotek.de>
96 - WSOCK32: o enabled receive and send timeout socket options
97 (SO_SNDTIMEO, SO_RCVTIMEO)
98
99 2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
100 - KERNEL32, USER32, WNASPI32, DDRAW:
101 o Custom build updates
102
103 2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
104 - USER32: o Convert color cursor to monochrome if it only uses two colors.
105 This overcomes a silly limitation in some less advanced
106 display drivers. (SDD still has no support for color cursors!)
107 (fixes mouse cursor flickering & screen distortion when
108 accessing the frame buffer directly)
109 NOTE: This is a partial solution only. Real color cursors
110 still use GRADD's rather poor software emulation.
111
112 2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
113 - WSOCK32: o Overwrite IP header length in sendto for raw sockets
114 with IP_HDRINCL option set.
115 (fixes errors for apps that use big endian format for
116 the length word)
117 o WSAEnumNetworkEvents now reports (some) events properly
118 o Call WSACleanup during dll unload in case application
119 forgot to do that.
120
121 2000-10-12: Yuri Dario <mc6530@mclink.it>
122 - USER32: o GetNextDlgGroupItem fix for infinite loop in Opera
123
124 2001-10-12: Achim Hasenmueller <achimha@innotek.de>
125 - KERNEL32: o use bounce buffers if end of buffer crosses
126 tiled region barrier, not start of buffer
127 (yeah, being nit-picking here, OS/2 will actually
128 never give you a memory object that crosses the boundary...)
129
130 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
131 - include: o debugtools.h: memory corruption in debugstr_()
132 - KERNEL32: o (cheap) heap lookup acceleration
133 o better profiler calibration :)
134 o bounce buffers for DeviceIoControl() with
135 high memory buffers
136 - SHELL32: o ~10% speed improvement on shell folder operations ;-)
137
138 2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
139 - USER32: o SetScrollRange: return error if min > max or out of range
140 (ERROR_INVALID_SCROLLBAR_RANGE)
141 (behaviour of NT4, SP6)
142 o Scrollbar control window not disabled properly when using
143 EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
144 and call EnableScrollbar)
145 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
146 with size grip style)
147 - WSOCK32: o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
148 - WS2_32: o Translate IPPROTO_IP options in getsockopt before calling
149 wsock32
150
151 2001-10-11: Patrick Haller <patrick.haller@innotek.de>
152 - KERNEL32: o added ODIN performance profiler
153 (perf_0.log for PROFILE builds)
154 - SHELL32: o ~30% speed improvement on shell folder operations
155
156 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
157 - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
158 get called very often. (like IsWindow, GetParent & IsWindowVisible)
159 This tends to make logfiles very big...
160 - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
161 IP_MULTICAST_TTL to setsockopt
162 o Add support for WS2_32 IPPROTO_IP options
163 - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
164 wsock32
165 - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
166 (surflock/unlock)
167
168 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
169 - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
170 IOCTL_CDROM_LOAD_MEDIA
171 IOCTL_CDROM_PAUSE_AUDIO
172 IOCTL_CDROM_STOP_AUDIO
173 IOCTL_CDROM_RESUME_AUDIO
174 IOCTL_CDROM_PLAY_AUDIO_MSF
175 o added IOCTL_STORAGE_EJECT_MEDIA
176 IOCTL_STORAGE_LOAD_MEDIA
177 IOCTL_DISK_EJECT_MEDIA
178 IOCTL_DISK_CHECK_VERIFY
179 - IPHLPAPI: o added fake version of GetAdaptersInfo()
180 - ODINWRAP: o standard C compiler compatibility
181 - MAKE: o fixes to the profile make include
182 - SHELL32: o PIDL: instrumentation for performance tuning
183
184 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
185 - KERNEL32: o Image header page must be readonly
186 o Temporarily disabled high memory usage for heap
187
188 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
189 - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
190 o added further messages to wndmsg.cpp
191 - KERNEL32: o added further error codes to error2WinError
192
193 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
194 - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
195 if mp2 & AWP_ACTIVATE
196 (fixes activation of some inactive windows; used to be
197 activated but not brought to the top)
198
199 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
200 - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
201 - USER32: o Eliminated flickering during frame sizing due to
202 unnecessary drawing
203 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
204 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
205
206 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
207 - QUARTZ/OLEAUT32:
208 o Wine 20011004 resync
209 - KERNEL32: o Reduce overhead for heap allocation
210 o Always allocate heap memory from high memory (if available)
211 o Allocate extra heap memory in 64kb units
212 MUST use 64kb here or else we are at risk of running out
213 of virtual memory space. (when allocating 4kb we actually
214 get 4kb + 60k uncommited)
215 (fixes out of resources error while loading big movies
216 in The Playa)
217
218 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
219 - DDRAW: o Added stretching support for blitting to the screen
220 (the Playa can now play movies in fullscreen mode)
221
222 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
223 - WINMM: o Allocate handle for new timer and verify handle
224 is valid before using it.
225 (prevents crashes when app attempts to delete timer twice
226 (DivX 4))
227 - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
228 o Take clipping into account in SurfBlt4. Windowed DirectDraw
229 blitting now seems to work well.
230 (only tried DivX 4; needs more testing)
231 - USER32: o Rewrote sizing & moving of windows (frame tracking)
232 (ported Wine version + fixed some bugs)
233 Some applications (e.g. RealPlayer) resize themselves
234 when receiving WM_SIZING msgs. Not possible to send those
235 with PM's frame tracking.
236 TODO: fix flickering of size border (dynamic drag off)
237 TODO: WM_SIZING handling not 100% correct yet
238 TODO: Must display size/move cursor when starting action
239 from system menu
240 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
241 - OLEAUT32: o Wine update
242
243 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
244 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
245 (Some dlls (divx codec) call CoFreeUnusedLibraries which
246 unloads the same dll if we use CoLoadLibrary (-> crash)
247 NT's regsvr32 doesn't use CoLoadLibrary either)
248 - USER32: o OSLibWinGetMsg bugfix
249
250 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
251 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
252
Note: See TracBrowser for help on using the repository browser.