source: trunk/changelog@ 8466

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

* empty log message *

File size: 11.4 KB
Line 
1/* $Id: changelog,v 1.2090 2002-05-22 12:57:59 sandervl Exp $ */
2
3 2002-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
5 (fixes RealPlayer (PostThreadMessage))
6
7 2002-05-21: Sander van Leeuwen <sandervl@xs4all.nl>
8 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
9
10 2002-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
11 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
12 since a dll that depends on dlls with an exitlist handler
13 doesn't get properly unloaded (initterm not called for unload
14 nor for a 2nd load)
15
16 2002-05-20: Dmitry Froloff <froloff@os2.ru>
17 - KERNEL32: o Removed 64 MB memory mapped file limit
18 o Fix for opening memory mapped file with size larger than
19 the file size
20
21 2002-05-17: Platon Fomichev <platon@innotek.de>
22 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
23 if window is not visible (fixes endless loop in
24 property sheet when switching page with keyboard)
25
26 2002-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
27 - OLEAUT32: o Resync with latest Wine
28 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
29 (IOCTL_CDROM_CURRENT_POSITION only)
30 o IOCTL_CDROM_READ_TOC fix
31
32 2002-05-16: knut st. osmundsen <bird@anduin.net>
33 - MAKE: o Merged in latest changes.
34 o Create NewConfigure.cmd for this environment.
35 Try NewConfigure.cmd -? first.
36 (Do 'nmake needed' before calling this. (stupid!))
37 o Please note that this is still not 100% configured for
38 Odin32 yet. But eventually it will replace the existing
39 make system.
40
41 2002-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
42 - NTDLL: o Partial resync with Wine
43 - KERNEL32: o Export some functions for NTDLL
44 o Fixed creation of logfile for executables on readonly volumes
45 o RegQueryInfoKeyW fix
46 o TLS fix for pe2lx images
47 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
48 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
49 SystemParametersInfoA parameters
50 - OLE32: o Resync with latest Wine
51
52 2002-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
53 - DINPUT: o Made mouse code reentrant
54 - GDI32: o Fix for EnumFontFamiliesA/W
55 - SETUPAPI: o Resync with latest Wine
56
57 2002-05-14: Sander van Leeuwen <sandervl@xs4all.nl>
58 - KERNEL32: o CustForce2GBFileSize function added to force
59 GetVolumeInformation to tell the app all partitions are FAT
60 (2 GB file size limitation)
61 - COMCTL32: o Merged property sheet control with latest Wine version
62
63 2002-05-14: Platon Fomichev <platon@innotek.de>
64 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
65 SWP_FOCUS(DE)ACTIVATE message.
66
67 2002-05-10: Platon Fomichev <platon@innotek.de>
68 - KERNEL32: o Parallel port updates (use resource manager to query
69 hardware configuration)
70
71 2002-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
72 - KERNEL32: o Applications are now allowed to read physical disks or
73 mounted partitions. Write access is only allowed for
74 unmounted partitions or floppy disks.
75 o Implemented GetFileSize for disk objects; corrected
76 return value for some failures (-1)
77
78 2002-05-09: Sander van Leeuwen <sandervl@xs4all.nl>
79 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
80 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
81 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
82 mountpoints (e.g. C:\)
83 o Rewrote FindFirst/NextVolume to use LVM interface (if
84 availabe; else fail)
85 o Extended GetDriveType & GetVolumeInformation for volume
86 names (instead of only disk names (e.g. C:\))
87 o GetVolumeInformation change: keep file system name if
88 NTFS or FAT32
89 o Implemented unmounted volume and physical disk access
90
91 2002-05-08: Sander van Leeuwen <sandervl@xs4all.nl>
92 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
93 toolbar, tab, pager, nativefont, imagelist code
94 o Updated license (LGPL) for comctl32
95 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
96 in NTDLL)
97 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
98 - KERNEL32: o Implemented volume & volume mountpoint functions
99 (win2k and up)
100 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
101 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
102
103 2002-05-08: Platon Fomichev <platon@innotek.de>
104 - COMCTL32: o Merged listview control with latest Wine
105
106 2002-05-07: Sander van Leeuwen <sandervl@xs4all.nl>
107 - USER32: o WH_MOUSE_LL hook fixes
108
109 2002-05-07: Platon Fomichev <platon@innotek.de>
110 - USER32: o Listbox/combobox fix for MFC apps
111 o SetParent doesn't change WS_CHILD style
112 o Experimental change for getParent
113
114 2002-05-07: knut st. osmundsen <bird@anduin.net>
115 - CmdQd: o The daemon shouldn't inherit standard handles when started.
116 (Hung the daily build, since we use tee to do logging.)
117
118 2002-05-06: Sander van Leeuwen <sandervl@xs4all.nl>
119 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
120
121 2002-05-01: Sander van Leeuwen <sandervl@xs4all.nl>
122 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
123 translation array
124
125 2002-04-30: Sander van Leeuwen <sandervl@xs4all.nl>
126 - GDI32: o Font renaming support added to EnumFontFamiliesA/W
127 - USER32: o Implemented WH_MOUSE_LL hook
128 o Removed DInput hack for keyboard & mouse message translation
129 - DINPUT: o Resync with last X11 licensed Wine (TODO: LGPL)
130
131 2002-04-30: knut st. osmundsen <bird@anduin.net>
132 - KERNEL32: o Changes for debug heap (makefile + exception handler)
133
134 2002-04-30: Platon Fomichev <platon@innotek.de>
135 - KERNEL32: o FileTimeToSystemTime, DosDateTimeToFileTime &
136 SystemTimeToFileTime bugfixes
137 - USER32: o Focus fix when minimizing window
138
139 2002-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
140 - KERNEL32: o Export RegisterCustomDriver
141
142 2002-04-29: Patrick Haller <patrick.haller@innotek.de>
143 - OLEAUT32: o Clean up hash object during dll unload
144 - KERNEL32: o Fixed memory leaks in handlename class, Win32ImageBase::isPEImage
145 and DestroyTIB
146 o fixed unicode conversion for APIs that allow
147 NULL strings as input parameter (SearchPathW,
148 Registry APIs) not to set last error to EROROR_INVALID_HANDLE
149 o wprocess.cpp:
150 - set ODIN32.DEBUG_CHILD=ICSDEBUG.EXE will cause CreateProcess
151 to start PE-clients inside a new debugger instance
152 - GetModuleFileName fixes (don't count zero termination)
153 o don't set last error in HeapFree()
154 - COMCTL32: o Draglist control bugfix (crash)
155
156 2002-04-28: knut st. osmundsen <bird@anduin.net>
157 - Configure.cmd, Odincrt:
158 o Added option --with-klib to configure.cmd to link
159 odincrt with the electric debug heap of kLib.
160 Concider this experimental!
161
162 2002-04-28: Platon Fomichev <platon@innotek.de>
163 - USER32: o Focus fix when minimizing window
164 - IPHLPAPI: o Bugfix
165
166 2002-04-24: Platon Fomichev <platon@innotek.de>
167 - USER32: o Don't activate window when it's minimized (ShowWindow)
168 o Deactivate window & move to bottom of z-order when it's
169 minimized
170 o Listbox fix; rollup dropdown if mouse button pressed outside
171 control
172
173 2002-04-17: Platon Fomichev <platon@innotek.de>
174 - COMDLG32: o If application specifies full path in file dialog structure
175 (and initial dir string is NULL), then change to the directory.
176
177 2002-04-17: knut st. osmundsen <bird@anduin.net>
178 - Makefiles:
179 o Use the VAC40 profiler for profiling in PROFILE=1, DEBUG=
180 mode. See /tools/profilerfix/Readme.1st for details.
181 - ProfilerFix:
182 o Added readme.1st for VAC308, vac365 profiling using the
183 VAC4 profiler features.
184
185 2002-04-14: knut st. osmundsen <bird@anduin.net>
186 - KERNEL32: o Cache CDROM drive letters in OSLibGetDriveType.
187 o Added testcases to makescripts in the testcase subdir.
188 'nmake build testcase' from that dir will build test
189 program(s) and run testcases.
190
191 2002-04-13: knut st. osmundsen <bird@anduin.net>
192 - Windefs.h:
193 o _MAX_PATH, _MAX_DIR, _MAX_EXT crashes withc Watcom C.
194 - KERNEL32: o GetDriveType optimizations.
195 Made it just as strict as WinXP. Hope this won't
196 blow up any thing. (A little bit worried about a call in
197 shell32/folders.c and mci_open.)
198 o Corrected a call to GetDirveTypeA in hmdisk.cpp. (paranoia)
199 o Made (stupid) test program which is placed in the testcase
200 subdir. This is compilable for both OS/2 and NT.
201 o Hot fix for 0 CDROM issue. (To be removed)
202
203 - USER32: o Corrected a call to GetDriveTypeA. (missing ':')
204
205 2002-04-11: knut st. osmundsen <bird@anduin.net>
206 - Makefiles:
207 o Output linenumbers to the map file when linking.
208 o Attempt at VAC308 profiling (icsperf.exe).
209 This is only enabled if you set PROFILE without DEBUG.
210 - ProfileFix:
211 o Hack to prevent the app which is profiled to crash
212 on Warp 4.5+.
213 - Install: o Changed it to work with 0.9.18+. Not that this fix
214 requires a bugfix over the 0.9.18 warping release.
215 - DailyBuild:
216 o Updated scripts so I can run the daily build on my
217 workstaion at home.
218
219 2002-04-10: knut st. osmundsen <bird@anduin.net>
220 - UXTHEME: o Stubbed the DLL as some apps keeps trying to load it.
221 - src/makefile:
222 o Update the CUSTOMBUILD module list.
223
224 2002-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
225 - ODINCRT: o Wrote OS/2 version of CriticalSection apis (including
226 support for shared critical sections; which is currently
227 not possible with the Win32 version due to missing
228 support for global object handles in kernel32)
229 - KERNEL32: o Rewrote VMutex class to use odincrt critical sections
230 o Rewrote global vmutex usage (mmap)
231 - USER32: o Rewrote global vmutex usage (window handles)
232 o EnumWindows made safer
233 o Fixed bug in desktop window constructor (double window
234 handle allocation)
235 - WINMM: o Rewrote vmutex usage (wave in/out classes)
236 - GDI32: o Rewrote vmutex usage (object handle functions)
237 - INCLUDE: o Debug wrapper fixes (missing 6th argument)
238
239 2002-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
240 - KERNEL32: o Do not test for write capability with CDROM drives
241 (IOCTL_DISK_IS_WRITABLE)
242
Note: See TracBrowser for help on using the repository browser.