source: trunk/changelog@ 6020

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

* empty log message *

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