source: trunk/changelog@ 7217

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

.

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