source: trunk/changelog@ 7032

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

.

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