source: trunk/changelog@ 6018

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

* empty log message *

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