source: trunk/changelog@ 7192

Last change on this file since 7192 was 7192, checked in by phaller, 24 years ago

.

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