source: trunk/changelog@ 7212

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

.

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