source: trunk/changelog@ 7077

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

* empty log message *

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