source: trunk/changelog@ 6016

Last change on this file since 6016 was 6016, checked in by bird, 24 years ago

* empty log message *

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