source: trunk/changelog@ 7188

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

* empty log message *

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