source: trunk/changelog@ 6038

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

* empty log message *

File size: 13.7 KB
Line 
1/* $Id: changelog,v 1.1526 2001-06-17 21:06:37 sandervl Exp $ */
2
3 2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
5 - USER32: o Fix for scrollbars with SBS_SIZEBOX or SBS_SIZEGRIP style
6 (use size specified in CreateWindow only if SBS_SIZEBOXTOPLEFTALIGN
7 nor SBS_SIZEBOXBOTTOMRIGHTALIGN style flags set)
8 (CPOV window now has the right size)
9 o Allow WS_VISIBLE changes in SetWindowLong (GWL_STYLE)
10 (CPOV controls in bottom left corner now visible)
11
12 2001-06-17: Dietrich Teickner <Dietrich_Teickner@t-online.de>
13 - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
14 (fixes crash in SpeedCommander 6)
15 o Datetime control update with latest Wine code
16
17 2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
18 - DDRAW: o Save & Restore FS when calling io_init2
19 o Partly implemented DrawEnumDisplayModes4
20 - WINMM: o Resume failed (during waveOutWrite) after underrun
21 (fixes audio error message in Atari Emulator)
22 - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
23 o Allow direct sector reading from disk + changing read position
24 with SetFilePointer
25 o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
26 returned the wrong module handle
27
28 2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
29 - USER32: o Removed yesterday's getControl dialog change.
30 (causes errors for certain installshield installers)
31 o Add frame controls when app changes style flags (os/2 appearance)
32 (fixes missing titlebar when switching between maximized &
33 restored state for MDI windows in Opera)
34 - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
35 Fill it with a pointer to a memory block with 8th byte set to 1.
36 (fixes crash in AssetAllocator install)
37
38 2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
39 - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
40 - WIN32K: o Forgot to close file on failure in ldrOpen. When Pe2Lx
41 failed (due to wrong subsystem), the file remained open.
42
43 2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
44 - USER32: o OSLibWinGetMsg: dispatch untranslated message immediately
45 and grab next one.
46 o Manually change min/max/restore button states (OS/2 appearance)
47 o Handle WM_SYSCOMMAND messages in frame window handler
48 o Button fix (Wine bug)
49 Must clear WS_TABSTOP of control that is already unchecked or
50 else multiple control can have this style ((auto)radiobutton)
51 and GetNextDlgTabItem will return the wrong one.
52 Happens in Opera preferences dialog (multimedia) where all
53 autoradio buttons have the WS_TABSTOP style.
54 o Added temporary workaround for Open32 crashes in Opera
55
56 2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
57 - USER32: o Corrected position of PM titlebar control
58 o Added SetWindowAppearance function that can be used
59 by Odin32 apps to override the appearance (win32 or OS/2)
60 of windows.
61 o Changed menu font for OS/2 appearance (bold)
62 o Draw system menu icon ourselves (OS/2 appearance)
63 o SetWindowText fix (OS/2 appearance)
64 o WM_ERASEBKGND handling changes for dialogs
65 - GDI32: o CreateDIBSection bugfix (wrong ReleaseDC call)
66
67 2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
68 - WIN16LDR: o Made it compile with Watcom and MSC60.
69 Currently I can't link it with MSC60 form the DDK
70 since there is no window libraries there.
71 Watcom links fine. But the result is not tested.
72 - VDMDBG: o Stubbed this DLL. (It's used by the NT TaskMgr.)
73 (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
74 in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
75 - Win32k/Pe2Lx:
76 o Allowed loading of images using the NATIVE subsystem.
77 o Added symbols for build 14.065F (2001-05-08) all kernels.
78 - DailyBuild:
79 o Moved Odin.ini to system32 in daily .zips.
80 - NTDLL: o Stubbed NtOpenThread.
81
82 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
83 - USER32: o Partly fixed position of PM frame controls
84 o FillRect fix for 0 brush
85 o Workaround for windows with CS_CLASSDC class. Use same
86 mechanism as CS_OWNDC. (might not always work though)
87 No (easy) way to share a single DC between windows in PM.
88 (fixes paint problems in MED)
89 o Use critical sections for local hooks; faster than
90 kernel mutex semaphore calls.
91 - GDI32: o SetDIBColorTable bugfix
92 - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
93 (Winbench tries this)
94 - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
95 returning error.
96 (prevents crash in Winbench)
97
98 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
99 - USER32: o Reference count bugfixes
100 - GDI32: o Added RGB555 conversion for CreateDIBitmap & SetDIBits
101
102 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
103 - USER32: o SetParent bugfix (caused crashes in user32 after yesterday's changes)
104 o Preliminary support added for OS/2 look and feel (not finished)
105 Odin.ini option:
106 [ODINSYSTEM]
107 OS2Look=1 (default = 0)
108 Creates OS/2 Titlebar, system menu & min/max/close buttons.
109 Also overrides UseWinColors option (uses OS/2 colors).
110 NOTE: Can interfere with windows applications that draw their
111 own custom titlebar. (e.g. RealPlayer)
112 - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
113 o CreateProcess: launch win16 loader for NE executables
114 - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
115 Overrides GetVersion & WinExec functions to return the
116 version NT returns and to launch 32 bits programs (using pe).
117 (NOT FINISHED and not included in daily build)
118 - PELDR: o Execute win16 loader for NE executables.
119
120 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
121 - Win32API.h:
122 o Added APIs required to compile user32.
123 - src/makefile:
124 o Relaxed the locks a little.
125 - Win32k: o Separated VAC3 and VAC36 output. (Please re-run configure!)
126 - makefiles/VAC36:
127 o Ignore ILIB warnings. (like those in the opengl tree)
128
129 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
130 - USER32: o Keep reference count for window and class objects.
131 Only delete the objects when nobody else is using them anymore.
132 (fixes crashes due to premature destruction of objects;
133 e.g. during Napster startup)
134 - KERNEL32: o heap checking accidentally turned on during logging
135 (making the debug build extremely slow)
136 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
137 no apparent reason. Don't bail out when that happens, but try
138 to create the process anyway.
139 (fixes CreateProcess during Napster install)
140 o Improved version of InterlockedIncrement & InterlockedDecrement
141 (borrowed from Wine)
142
143 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
144 - KERNEL32: o WinExec fixes
145 o Ported Wine's WritePrivateProfileSectionA
146 - GDI32: o DIB Section blits: translate all ROPs
147 o GetDIBits fix; RGB conversion was not always performed;
148 now only for requested scanlines.
149
150 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
151 - KERNEL32: o Optimizations for loading of PE images
152
153 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
154 - OLE32: o More VAC 3.6.5 compile fixes
155
156 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
157 - FastDep: o Performance enh. Don't scan files more than 1 month older
158 than existing .depend file.
159 o Optimized AVL tree sligtly by not performing two strcmp
160 on the same keys (but resuing the result from the first).
161 o Improved dependencies genereated for OS/2 resource files.
162 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
163 o Code is now in sync with OS2Tools.
164
165 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
166 - OLE32: o VAC 3.6.5 compile fix
167
168 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
169 - KERNEL32: o Fixed ordinal export resolving for PE executables
170 (SO52 complained about missing exports)
171
172 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
173 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
174 (fixes endless repainting loop in WinRAR 2.80)
175 - KERNEL32: o Optimized ordinal lookup even more.
176 (6900 ordinal lookups takes (on average) 31 ms now instead
177 of 78)
178
179 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
180 - KERNEL32: o Added driver dll plugin for custom device driver emulation
181 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
182 that contain 'DllName' keys.
183 DllName contains the name of the plugin dll that exports
184 DrvOpen, DrvClose & DrvIOCtl.
185 o Dispatch breakpoint exception to application (release build only)
186 Some nasty applications expect this.
187
188 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
189 - USER32: o Ported & fixed ScrollDC (Wine)
190 (fixes scrolling in Adobe Framemaker 5.5)
191 - GDI32: o RGB 565->555 conversion in GetDIBits
192 o RGB 555->565 conversion in DIB Section sync
193 o Sync DIB section in RealizePalette if any colors changed
194 (fixes PowerDVD colors)
195
196 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
197 - Win32k/configure.cmd:
198 o Corrected search for the VAC compiler.
199 o Removed stupid messages when -w is specified.
200
201 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
202 - COMDLG32: o fix crash due to uninitialized COM object pointer in
203 Win95 open file dialog browse mode
204 o default to open mode in file dialog when the
205 OFN_NOVALIDATE mode is used
206 (fixes crash in FrameMaker 5.5 file dialog when opening
207 a file that has broken image references)
208 - KERNEL32: o log both error and no error conditions for GetLastError
209 with default error level. Sometimes, we don't set an error
210 where we should so this logging information is important
211 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
212 CreateFileA to open a non existing file.
213 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
214 Verified with Windows 2000 SP2
215 (makes Acrobat Distiller 5.0 startup and work!)
216
217 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
218 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
219 [WINMM]
220 DefVolume=50[0-100] Default waveout volume (default = 100)
221 - USER32: o ScrollDC fix for translating clip & scroll rectangles
222 (fixes scrolling in Adobe Framemaker 5.5)
223
224 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
225 - USER32: o Send WM_HELP if F1 pressed & no menu active
226 o Disabled system hooks (only work in one process)
227 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
228 barely noticable with 'real' applications)
229 - OLE32: o Added OleLoadPictureEx stub
230 - GDI32: o GetDIBits fix for querying the bitmap information
231 WGSS returns 0, but we should return the nr of scan lines requested
232 o GetDIBits fix for memory dcs. WGSS messes things up if
233 it's a memory DC.
234 (fixes lower right button in AIM's logon window when typing
235 in new name)
236 o ExtTextOutA/W fix for filling rectangle with background color
237 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
238 (fixes border between menu & button bar in Odin MFC app &
239 Acrobat Reader 4.05)
240 o StretchDIBits fix for RGB555 bitmaps
241 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
242 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
243
244 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
245 - KERNEL32: o benchmarked new experimental loader and reverted to
246 old but slightly optimized loader (processExport usually
247 outweighs processImport, so lookup is less valuable than
248 add to export list)
249 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
250 its icon cache. Revert to on-demand loading of the icons,
251 speeds up loading of SHELL32 (therefore most apps)
252 by several seconds.
253
Note: See TracBrowser for help on using the repository browser.