source: trunk/changelog@ 6009

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

* empty log message *

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