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