source: trunk/changelog@ 7073

Last change on this file since 7073 was 7073, checked in by phaller, 24 years ago

Support for socket timeouts

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