source: trunk/changelog@ 7035

Last change on this file since 7035 was 7035, checked in by achimha, 24 years ago

* empty log message *

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