source: trunk/changelog@ 7181

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

* empty log message *

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