source: trunk/changelog@ 8554

Last change on this file since 8554 was 8554, checked in by sandervl, 23 years ago

* empty log message *

File size: 10.1 KB
Line 
1/* $Id: changelog,v 1.2124 2002-06-03 07:24:51 sandervl Exp $ */
2
3 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
4 - USER32, OLE32:
5 o Drag and drop fixes
6
7 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
8 - USER32\CONTROLS:
9 o New dll for user32 controls (latest Wine)
10 (not activated, not finished (resync))
11 - USER32: o Moved drag & drop code to seperate file
12 o Updates for OLE drag 'n drop
13 - KERNEL32: o LogException: check lockcount before changing it on entry
14 (it is not always > 0 -> previously caused hang in exception
15 handler (zombie process))
16 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
17 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
18 (todo: Odin app -> WPS)
19
20 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
21 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
22 performance
23 o DragQueryFileW fix
24 - WINMM: o Implemented minimal control change notification
25 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
26 control (probably not 100% correct)
27 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
28 (works in notepad; drag file object from WPS into notepad
29 window)
30
31 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
32 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
33 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
34 (with LLMHF_INJECTED flag set)
35
36 2002-05-31: Platon Fomichev <platon@innotek.de>
37 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
38
39 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
40 - WINMM: o Mixer fixes
41
42 2002-05-30: Platon Fomichev <platon@innotek.de>
43 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
44 (seems to be done in windows)
45
46 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
47 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
48 (fixes AbiWord keyboard input)
49 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
50 o mixerGetLineInfoW fix
51 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
52 wrt cx parameter (when set to zero)
53 (fixes properties dialog of sndvol32.exe (windows mixer app))
54 o Updated status control to latest Wine & applied two
55 bugfixes (already sent to wine-patches)
56
57 2002-05-29: Platon Fomichev <platon@innotek.de>
58 - USER32: o GetAsyncKeyState fix for VK_MENU
59 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
60 (invalidate control to prevent leftovers of size grip)
61
62 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
63 - REGSVR32: o Fixed startup
64 - WINMM: o Completely implemented mixerSetControlDetails
65 o Mixer updates
66 o Support added for master volume (ioctl90 mode)
67 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
68 o Wave recording now works
69
70 2002-05-28: Platon Fomichev <platon@innotek.de>
71 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
72 - KERNEL32: o Debugger updates
73
74 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
75 - WINMM: o Completely implemented mixerGetControlDetailsA/W
76 o Mixer updates
77 - TESTAPP\MIXER:
78 o Test application for mixer functions
79
80 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
81 - WINMM: o Fix for soundcards without ioctl90 mixer support
82 o Many mixer updates
83
84 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
85 - WINMM: o More mixer updates (not yet finished)
86
87 2002-05-23: Yuri Dario <mc6530@mclink.it>
88 - USER32: o Don't beep when unable to find menu item when alt key pressed
89
90 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
91 - WINMM: o Mixer updates (not yet finished)
92
93 2002-05-23: Platon Fomichev <platon@innotek.de>
94 - USER32: o Keyboard fixes for right alt & right shift
95
96 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
97 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
98 (fixes RealPlayer (PostThreadMessage))
99 - WINMM: o Added debug wrappers
100 o Started with mixer api rewrite
101
102 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
103 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
104
105 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
106 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
107 since a dll that depends on dlls with an exitlist handler
108 doesn't get properly unloaded (initterm not called for unload
109 nor for a 2nd load)
110
111 2002-05-20: Dmitry Froloff <froloff@os2.ru>
112 - KERNEL32: o Removed 64 MB memory mapped file limit
113 o Fix for opening memory mapped file with size larger than
114 the file size
115
116 2002-05-17: Platon Fomichev <platon@innotek.de>
117 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
118 if window is not visible (fixes endless loop in
119 property sheet when switching page with keyboard)
120
121 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
122 - OLEAUT32: o Resync with latest Wine
123 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
124 (IOCTL_CDROM_CURRENT_POSITION only)
125 o IOCTL_CDROM_READ_TOC fix
126
127 2002-05-16: knut st. osmundsen <bird@anduin.net>
128 - MAKE: o Merged in latest changes.
129 o Create NewConfigure.cmd for this environment.
130 Try NewConfigure.cmd -? first.
131 (Do 'nmake needed' before calling this. (stupid!))
132 o Please note that this is still not 100% configured for
133 Odin32 yet. But eventually it will replace the existing
134 make system.
135
136 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
137 - NTDLL: o Partial resync with Wine
138 - KERNEL32: o Export some functions for NTDLL
139 o Fixed creation of logfile for executables on readonly volumes
140 o RegQueryInfoKeyW fix
141 o TLS fix for pe2lx images
142 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
143 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
144 SystemParametersInfoA parameters
145 - OLE32: o Resync with latest Wine
146
147 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
148 - DINPUT: o Made mouse code reentrant
149 - GDI32: o Fix for EnumFontFamiliesA/W
150 - SETUPAPI: o Resync with latest Wine
151
152 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
153 - KERNEL32: o CustForce2GBFileSize function added to force
154 GetVolumeInformation to tell the app all partitions are FAT
155 (2 GB file size limitation)
156 - COMCTL32: o Merged property sheet control with latest Wine version
157
158 2002-05-14: Platon Fomichev <platon@innotek.de>
159 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
160 SWP_FOCUS(DE)ACTIVATE message.
161
162 2002-05-10: Platon Fomichev <platon@innotek.de>
163 - KERNEL32: o Parallel port updates (use resource manager to query
164 hardware configuration)
165
166 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
167 - KERNEL32: o Applications are now allowed to read physical disks or
168 mounted partitions. Write access is only allowed for
169 unmounted partitions or floppy disks.
170 o Implemented GetFileSize for disk objects; corrected
171 return value for some failures (-1)
172
173 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
174 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
175 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
176 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
177 mountpoints (e.g. C:\)
178 o Rewrote FindFirst/NextVolume to use LVM interface (if
179 availabe; else fail)
180 o Extended GetDriveType & GetVolumeInformation for volume
181 names (instead of only disk names (e.g. C:\))
182 o GetVolumeInformation change: keep file system name if
183 NTFS or FAT32
184 o Implemented unmounted volume and physical disk access
185
186 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
187 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
188 toolbar, tab, pager, nativefont, imagelist code
189 o Updated license (LGPL) for comctl32
190 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
191 in NTDLL)
192 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
193 - KERNEL32: o Implemented volume & volume mountpoint functions
194 (win2k and up)
195 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
196 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
197
198 2002-05-08: Platon Fomichev <platon@innotek.de>
199 - COMCTL32: o Merged listview control with latest Wine
200
201 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
202 - USER32: o WH_MOUSE_LL hook fixes
203
204 2002-05-07: Platon Fomichev <platon@innotek.de>
205 - USER32: o Listbox/combobox fix for MFC apps
206 o SetParent doesn't change WS_CHILD style
207 o Experimental change for getParent
208
209 2002-05-07: knut st. osmundsen <bird@anduin.net>
210 - CmdQd: o The daemon shouldn't inherit standard handles when started.
211 (Hung the daily build, since we use tee to do logging.)
212
213 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
214 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
215
216 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
217 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
218 translation array
219
Note: See TracBrowser for help on using the repository browser.