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