source: trunk/changelog@ 7037

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

* empty log message *

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