source: trunk/changelog@ 7214

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

.

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