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