source: trunk/changelog@ 7199

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

* empty log message *

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