source: trunk/changelog@ 7197

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

* empty log message *

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