source: trunk/changelog@ 7033

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

.

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