source: trunk/changelog@ 7062

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

* empty log message *

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