source: trunk/changelog@ 5987

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

* empty log message *

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