| 1 | /* $Id: changelog,v 1.1764 2001-10-18 07:50:30 sandervl Exp $ */
 | 
|---|
| 2 | 
 | 
|---|
| 3 |  2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 4 |     - DDRAW:    o Check if DirectDraw object is associated with Clipper.
 | 
|---|
| 5 |     - SHELL32:  o Compile fix for release build
 | 
|---|
| 6 | 
 | 
|---|
| 7 |  2001-10-17: knut stange osmundsen <kosmunds@csc.com>
 | 
|---|
| 8 |     - common:   o Corrected bug in kFile buffering which caused impdef to
 | 
|---|
| 9 |                   crash in some cases.
 | 
|---|
| 10 | 
 | 
|---|
| 11 |  2001-10-17: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 12 |     - SHELL32:  o WINE resync 20011017
 | 
|---|
| 13 |     - KERNEL32: o minor heap optimization
 | 
|---|
| 14 |     - USER32:   o minor handle mgmt optimizations
 | 
|---|
| 15 |     - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
 | 
|---|
| 16 | 
 | 
|---|
| 17 |  2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 18 |     - DDRAW:    o Fixes for DDBLT_COLORFILL
 | 
|---|
| 19 |     - WS2_32:   o Added stubs for WSAEnumProtocolsA/W
 | 
|---|
| 20 |     - USER32:   o SetFocus fix; don't always activate window because that
 | 
|---|
| 21 |                   changes the z-order which interferes (among other things) 
 | 
|---|
| 22 |                   with GetNextDlgTabItem & GetNextDlgGroupItem 
 | 
|---|
| 23 |                 o Removed some GetNextDlgGroupItem changes which are no longer 
 | 
|---|
| 24 |                   necessary due to the SetFocus fix
 | 
|---|
| 25 | 
 | 
|---|
| 26 |  2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 27 |     - KERNEL32, CUSTOMBUILD, USER32:
 | 
|---|
| 28 |                 o Custom build fixes + changes
 | 
|---|
| 29 |                 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
 | 
|---|
| 30 |                   Some applications interpret this value as a signed long.
 | 
|---|
| 31 |     - USER32:   o Fix for pointer conversion
 | 
|---|
| 32 | 
 | 
|---|
| 33 |  2001-10-16: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 34 |     - WSOCK32:  o enabled receive and send timeout socket options
 | 
|---|
| 35 |                   (SO_SNDTIMEO, SO_RCVTIMEO)
 | 
|---|
| 36 | 
 | 
|---|
| 37 |  2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 38 |     - KERNEL32, USER32, WNASPI32, DDRAW:
 | 
|---|
| 39 |                 o Custom build updates
 | 
|---|
| 40 | 
 | 
|---|
| 41 |  2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 42 |     - USER32:   o Convert color cursor to monochrome if it only uses two colors.
 | 
|---|
| 43 |                   This overcomes a silly limitation in some less advanced
 | 
|---|
| 44 |                   display drivers. (SDD still has no support for color cursors!)
 | 
|---|
| 45 |                   (fixes mouse cursor flickering & screen distortion when
 | 
|---|
| 46 |                    accessing the frame buffer directly)
 | 
|---|
| 47 |                   NOTE: This is a partial solution only. Real color cursors
 | 
|---|
| 48 |                         still use GRADD's rather poor software emulation.
 | 
|---|
| 49 | 
 | 
|---|
| 50 |  2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 51 |     - WSOCK32:  o Overwrite IP header length in sendto for raw sockets
 | 
|---|
| 52 |                   with IP_HDRINCL option set.
 | 
|---|
| 53 |                   (fixes errors for apps that use big endian format for
 | 
|---|
| 54 |                    the length word)
 | 
|---|
| 55 |                 o WSAEnumNetworkEvents now reports (some) events properly
 | 
|---|
| 56 |                 o Call WSACleanup during dll unload in case application
 | 
|---|
| 57 |                   forgot to do that.
 | 
|---|
| 58 | 
 | 
|---|
| 59 |  2000-10-12: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 60 |     - USER32:   o GetNextDlgGroupItem fix for infinite loop in Opera
 | 
|---|
| 61 | 
 | 
|---|
| 62 |  2001-10-12: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 63 |     - KERNEL32: o use bounce buffers if end of buffer crosses
 | 
|---|
| 64 |                   tiled region barrier, not start of buffer
 | 
|---|
| 65 |                   (yeah, being nit-picking here, OS/2 will actually
 | 
|---|
| 66 |                   never give you a memory object that crosses the boundary...)
 | 
|---|
| 67 | 
 | 
|---|
| 68 |  2001-10-11: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 69 |     - include:  o debugtools.h: memory corruption in debugstr_()
 | 
|---|
| 70 |     - KERNEL32: o (cheap) heap lookup acceleration
 | 
|---|
| 71 |                 o better profiler calibration :)
 | 
|---|
| 72 |                 o bounce buffers for DeviceIoControl() with
 | 
|---|
| 73 |                   high memory buffers
 | 
|---|
| 74 |     - SHELL32:  o ~10% speed improvement on shell folder operations ;-)
 | 
|---|
| 75 | 
 | 
|---|
| 76 |  2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 77 |     - USER32:   o SetScrollRange: return error if min > max or out of range
 | 
|---|
| 78 |                                   (ERROR_INVALID_SCROLLBAR_RANGE)
 | 
|---|
| 79 |                   (behaviour of NT4, SP6)
 | 
|---|
| 80 |                 o Scrollbar control window not disabled properly when using
 | 
|---|
| 81 |                   EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
 | 
|---|
| 82 |                   and call EnableScrollbar)
 | 
|---|
| 83 |                 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
 | 
|---|
| 84 |                   with size grip style)
 | 
|---|
| 85 |     - WSOCK32:  o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
 | 
|---|
| 86 |     - WS2_32:   o Translate IPPROTO_IP options in getsockopt before calling
 | 
|---|
| 87 |                   wsock32
 | 
|---|
| 88 | 
 | 
|---|
| 89 |  2001-10-11: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 90 |     - KERNEL32: o added ODIN performance profiler
 | 
|---|
| 91 |                   (perf_0.log for PROFILE builds)
 | 
|---|
| 92 |     - SHELL32:  o ~30% speed improvement on shell folder operations
 | 
|---|
| 93 | 
 | 
|---|
| 94 |  2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 95 |     - USER32:   o Do not blindly add ODIN_FUNCTION macros to functions that
 | 
|---|
| 96 |                   get called very often. (like IsWindow, GetParent & IsWindowVisible)
 | 
|---|
| 97 |                   This tends to make logfiles very big...
 | 
|---|
| 98 |     - WSOCK32:  o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
 | 
|---|
| 99 |                   IP_MULTICAST_TTL to setsockopt
 | 
|---|
| 100 |                 o Add support for WS2_32 IPPROTO_IP options
 | 
|---|
| 101 |     - WS2_32:   o Translate IPPROTO_IP options in setsockopt before calling
 | 
|---|
| 102 |                   wsock32
 | 
|---|
| 103 |     - DDRAW:    o Commented out DiveAcquire/DeaquireFrameBuffer for now
 | 
|---|
| 104 |                   (surflock/unlock)
 | 
|---|
| 105 | 
 | 
|---|
| 106 |  2001-10-10: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 107 |     - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
 | 
|---|
| 108 |                         IOCTL_CDROM_LOAD_MEDIA
 | 
|---|
| 109 |                         IOCTL_CDROM_PAUSE_AUDIO
 | 
|---|
| 110 |                         IOCTL_CDROM_STOP_AUDIO
 | 
|---|
| 111 |                         IOCTL_CDROM_RESUME_AUDIO
 | 
|---|
| 112 |                         IOCTL_CDROM_PLAY_AUDIO_MSF
 | 
|---|
| 113 |                 o added IOCTL_STORAGE_EJECT_MEDIA
 | 
|---|
| 114 |                         IOCTL_STORAGE_LOAD_MEDIA
 | 
|---|
| 115 |                         IOCTL_DISK_EJECT_MEDIA
 | 
|---|
| 116 |                         IOCTL_DISK_CHECK_VERIFY
 | 
|---|
| 117 |     - IPHLPAPI: o added fake version of GetAdaptersInfo()
 | 
|---|
| 118 |     - ODINWRAP: o standard C compiler compatibility
 | 
|---|
| 119 |     - MAKE:     o fixes to the profile make include
 | 
|---|
| 120 |     - SHELL32:  o PIDL: instrumentation for performance tuning
 | 
|---|
| 121 | 
 | 
|---|
| 122 |  2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 123 |     - KERNEL32: o Image header page must be readonly
 | 
|---|
| 124 |                 o Temporarily disabled high memory usage for heap
 | 
|---|
| 125 | 
 | 
|---|
| 126 |  2001-10-08: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 127 |     - USER32:   o enabled WH_KEYBOARD_LL hook, seems to work
 | 
|---|
| 128 |                 o added further messages to wndmsg.cpp
 | 
|---|
| 129 |     - KERNEL32: o added further error codes to error2WinError
 | 
|---|
| 130 | 
 | 
|---|
| 131 |  2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 132 |     - USER32:   o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
 | 
|---|
| 133 |                   if mp2 & AWP_ACTIVATE
 | 
|---|
| 134 |                   (fixes activation of some inactive windows; used to be
 | 
|---|
| 135 |                    activated but not brought to the top)
 | 
|---|
| 136 | 
 | 
|---|
| 137 |  2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 138 |     - DDRAW:    o Don't use Dive for blitting to/from 8 bpp surfaces
 | 
|---|
| 139 |     - USER32:   o Eliminated flickering during frame sizing due to
 | 
|---|
| 140 |                   unnecessary drawing
 | 
|---|
| 141 |                 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
 | 
|---|
| 142 |                 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
 | 
|---|
| 143 | 
 | 
|---|
| 144 |  2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 145 |     - QUARTZ/OLEAUT32:
 | 
|---|
| 146 |                 o Wine 20011004 resync
 | 
|---|
| 147 |     - KERNEL32: o Reduce overhead for heap allocation
 | 
|---|
| 148 |                 o Always allocate heap memory from high memory (if available)
 | 
|---|
| 149 |                 o Allocate extra heap memory in 64kb units
 | 
|---|
| 150 |                   MUST use 64kb here or else we are at risk of running out
 | 
|---|
| 151 |                   of virtual memory space. (when allocating 4kb we actually
 | 
|---|
| 152 |                   get 4kb + 60k uncommited)
 | 
|---|
| 153 |                   (fixes out of resources error while loading big movies
 | 
|---|
| 154 |                    in The Playa)
 | 
|---|
| 155 | 
 | 
|---|
| 156 |  2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 157 |     - DDRAW:    o Added stretching support for blitting to the screen
 | 
|---|
| 158 |                   (the Playa can now play movies in fullscreen mode)
 | 
|---|
| 159 | 
 | 
|---|
| 160 |  2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 161 |     - WINMM:    o Allocate handle for new timer and verify handle
 | 
|---|
| 162 |                   is valid before using it.
 | 
|---|
| 163 |                   (prevents crashes when app attempts to delete timer twice
 | 
|---|
| 164 |                    (DivX 4))
 | 
|---|
| 165 |     - DDRAW:    o Fixed memory leaks in SurfBlt4 (rectangles)
 | 
|---|
| 166 |                 o Take clipping into account in SurfBlt4. Windowed DirectDraw
 | 
|---|
| 167 |                   blitting now seems to work well.
 | 
|---|
| 168 |                   (only tried DivX 4; needs more testing)
 | 
|---|
| 169 |     - USER32:   o Rewrote sizing & moving of windows (frame tracking)
 | 
|---|
| 170 |                   (ported Wine version + fixed some bugs)
 | 
|---|
| 171 |                   Some applications (e.g. RealPlayer) resize themselves
 | 
|---|
| 172 |                   when receiving WM_SIZING msgs. Not possible to send those
 | 
|---|
| 173 |                   with PM's frame tracking.
 | 
|---|
| 174 |                   TODO: fix flickering of size border (dynamic drag off)
 | 
|---|
| 175 |                   TODO: WM_SIZING handling not 100% correct yet
 | 
|---|
| 176 |                   TODO: Must display size/move cursor when starting action
 | 
|---|
| 177 |                         from system menu
 | 
|---|
| 178 |                 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
 | 
|---|
| 179 |     - OLEAUT32: o Wine update
 | 
|---|
| 180 | 
 | 
|---|
| 181 |  2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 182 |     - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
 | 
|---|
| 183 |                   (Some dlls (divx codec) call CoFreeUnusedLibraries which
 | 
|---|
| 184 |                    unloads the same dll if we use CoLoadLibrary (-> crash)
 | 
|---|
| 185 |                    NT's regsvr32 doesn't use CoLoadLibrary either)
 | 
|---|
| 186 |     - USER32:   o OSLibWinGetMsg bugfix
 | 
|---|
| 187 | 
 | 
|---|
| 188 |  2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 189 |     - USER32:   o Lastest Wine revision of GetNextDlgGroupItem ported + modified
 | 
|---|
| 190 | 
 | 
|---|