source: trunk/changelog@ 7089

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

* empty log message *

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