source: trunk/changelog@ 7101

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

.

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