source: trunk/changelog@ 6017

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

* empty log message *

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