source: trunk/changelog@ 4303

Last change on this file since 4303 was 4303, checked in by bird, 25 years ago

* empty log message *

File size: 13.0 KB
Line 
1 /* $Id: changelog,v 1.1137 2000-09-22 03:54:39 bird Exp $ */
2
3 2000-09-22: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
4 - Win32k/Pe2Lx: Always apply all-in-one-object aligment fix. This will
5 solve lots of problems. (Hopefully temporary; I will explore
6 a VMAllocMem flag for VDMs which allows allocation of
7 pagealigned objects in the tiled arenas. The flag works
8 as expected but I get IPEs during process cleanup...)
9 Corrected bug in applyFixups. Fixups was not applied when
10 the all-in-one-object aligment fix was applied.
11
12 2000-09-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
13 - INCLUDE\makefiles: Made cleanrule omittable by defining NOCLEAN.
14 - Pe2Lx: Corrected/Made cleanrule.
15 - Win32k: New Microsoft C fix. Invokes it with no environment. Thanks goes to
16 Serge Sterck for this discovery. I hope it works out well.
17
18
19 2000-09-20: Markus Montkowski <mmontkowski@gmx.de>
20 - KERNEL32: Implemented COM-port APIs
21 Enhanced handlemanager to support device and handle data (for COM ports)
22 Added IOCTL to oslibdos
23 - INCLUDE\handlemanager.h os2win.h win32type.h: added COM definitions
24
25 2000-09-19: Michal Necasek <mike@mendelu.cz>
26 - INCLUDE\makefiles: disable C++ exception handling code generation (FS:0 changes)
27
28 2000-09-16: Sander van Leeuwen <sandervl@xs4all.nl>
29 - KERNEL32: Fixed matchModName bugs. (compare name without extension)
30 - WNASPI32: Restore win32 FS selector before calling post procedure
31
32 2000-09-16: David Raison <djr@lemur.co.uk>
33 - OLE32: Further updates from Wine
34 IMessageFilter stubs.
35 - OLEAUT32: Updates from Wine
36 ITypeComp stubs.
37
38 2000-09-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
39 - Tools\dbginfo: Solved DosCall1.DLL problem. Successfully creates HLL
40 HLL debuginfo from .SYM files and add it to LX files.
41
42 2000-09-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
43 - KERNEL32: Corrected logging for GetModuleFileNameA/W (a handle and
44 a string pointer was mixed - which proved fatal with
45 logging enabled).
46
47 2000-09-15: David Raison <djr@lemur.co.uk>
48 - OLE32: Updates from Wine
49
50 2000-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
51 - WNASPI32: Open and initialize aspirout during dll load; doing this
52 for *every* aspi command is very inefficient.
53 Not possible to share aspirout now, but that could be fixed
54 later on.
55 - KERNEL32: Bug in recent exception handler changes; nested exception
56 are allowed to be dispatched to Odin's handlers. (PE loader
57 depends on it -> fixes crash in Lotus Notes)
58 Export WriteLogNoEOL
59
60 2000-09-14: Sander van Leeuwen <sandervl@xs4all.nl>
61 - WNASPI32: Fixed uninitialized variables in aspirout class
62 Fixed memory leaks (aspi object not deleted when something goes wrong)
63 - KERNEL32: Implemented IOCTL_SCSI_GET_ADDRESS (not perfect; only works
64 for cdrom/dvd drives and only the first one)
65
66 2000-09-13: Sander van Leeuwen <sandervl@xs4all.nl>
67 - KERNEL32: InitCommandLine corrupted the heap
68 Created HandleManager class for physical disks
69 - GDI32: StretchDIBits: Open32 always returns height of bitmap (regardless of how many
70 scanlines were copied); now corrected
71 - WNASPI32: Fixed FS corruption
72
73 2000-09-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
74 - KERNEL32: Added method matchModName to Win32ImageBase.
75 Used matchModName in LoadLibraryExA.
76 Documented and enhanced GetModuleFileNameA/W.
77 - Win32k: Display build time and date on verbose init.
78 Made sure build time and date is updated everytime
79 it's relinked.
80
81 2000-09-12: Sander van Leeuwen <sandervl@xs4all.nl>
82 - KERNEL32: GetCommandLine changes broke LX executable support. Fixed now.
83
84 2000-09-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
85 - KERNEL32: Rewrote GetCommandLineA/W. Don't depend on Open32 any longer.
86 The commandline strings are moved to global variables in
87 wprocess.cpp.
88 Added/extended some OSLib calls.
89
90 - Wink32: When invoking PE.EXE the first argument (Win32 exe name)
91 should be in quotes.
92 This is not yet corrected for the other invokers. (Scripts/Java).
93
94 2000-09-09: Sander van Leeuwen <sandervl@xs4all.nl>
95 - KERNEL32: Don't dispatch exceptions after application has called
96 ExitProcess. (fixes endless loop of exception handler calls
97 in RealPlayer 7)
98 Create more registry keys during installation:
99 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager
100 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce
101 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App Paths\iexplore.exe
102 GetFileAttributesA trashes the stack (EBX register corrupted after return)
103 If CreateFile fails to duplicate the handle, then try DosDupHandle
104 (DuplicateHandle for memory mapped files in IE5)
105 Set dwCreation flag to OPEN_EXISTING for DuplicateHandle (memory mapped files)
106 - PE: Endless loop when it can't find executable with name in quotes
107
108 2000-09-08: Michal Necasek <mike@mendelu.cz>
109 - KERNEL32: Changes and fixes for exception handling (now dispatches
110 exceptions to win32 apps)
111
112 2000-09-08: Sander van Leeuwen <sandervl@xs4all.nl>
113 - KERNEL32: Implemented EnumResourceLanguagesA/W
114 Put back some code that was changed. (environ.cpp & heap.cpp)
115 - GDI32: Fixed FS bug in OSLibDeleteRegion
116 - USER32: Removed wrapper for GetWindow; not required
117
118 2000-09-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
119 - Win32k: Added last FP14 kernel to Symbol database.
120 Splitted extract.c from Probkrnl.c. Removed old debug
121 code from Probkrnl.c (Probkrnl.exe) - use win32ktst.exe
122 for Ring-3 testing now.
123 Added filehandle fix for MSC60a compiler. (fix don't work!)
124
125 2000-09-07: Patrick Haller <phaller@gmx.net>
126 - KERNEL32: Fixed some FS: bugs in time.cpp, environ.cpp, heap.cpp
127 Fixed language support from WINE sync
128 - GDI32: Fixed some FS: bug in DeleteObject(), DeleteDC()
129
130 2000-09-07: Sander van Leeuwen <sandervl@xs4all.nl>
131 - COMCTL32: TOOLBAR_SetBitmapSize & TOOLBAR_SetBitmapSize; do not return
132 FALSE when called after buttons have been created.
133 (failed assertions in MFC applications; this code is from
134 the latest Wine source tree)
135 - SHELL32: Merged more changes made by Christoph into new tree
136 - KERNEL32: InitDirectories must be called before InitializeTIB or else
137 a win.ini file is created in the root dir (InitializeTIB
138 loads ntdll which depends on user32)
139 (reported by Kai Sommerfeld)
140 - USER32: GetWindow was completely wrong. Didn't take Z-order into account.
141 Fixes MFC applications (missing controls + redraw problems)
142
143 2000-09-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
144 - install: Added Win32kCC.exe and kRx.EXE to the .wpi distributions.
145
146 2000-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
147 - USER32: WM_PARENTNOTIFY during WM_CREATE was sent to the wrong window
148 WM_FOCUSCHANGE fix; set & kill focus were sent twice
149 Added more logging.
150 Activate window after resizing (WM_WINDOWPOSCHANGED in pmwindow.cpp)
151 - KERNEL32: Workaround for RegSetValueA; a call to this api in Netscape
152 fails with error 8 due to a 0 size of the key data
153 HMOpenFile fix; pHMHandleData->dwCreation must be set
154 to OPEN_EXISTING or else the memory map class will fail
155 to duplicate the handle.
156
157 2000-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
158 - KERNEL32: GetDiskFreeSpaceExA: added support for 64 bits disk size
159 Rewrote GetDiskFreeSpace (no longer uses Open32)
160 - USER32: SetWindowLong GWL_WNDPROC changes/fixes
161 Type of SetWindowLong determines new window proc type
162 UNLESS the new window proc has already been registered
163 (use the old type in that case) (VERIFIED in NT 4, SP6)
164 Return original window procedure if types match (SetWindowLongX & proc type)
165 otherwise window proc wrapper.
166 Fixes wrong strings in Notes 5.0. (new string problems, but they
167 are caused by something else)
168 - COMCTL32: CreateUpDownControl was not exported correctly
169 (reported by Reinhold Kopper)
170
171 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
172 - Win32k: Improved error reporting.
173 Corrected fatal bug in the QueryOptionsStatus IOCtl,
174 had forgotten three SSToDS()...
175
176 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
177 - doc/readme.txt: Updated Win32k sections.
178 - Win32k: Fixed missing object in the 16-bit clib.lib which caused
179 linking of win32k.sys to fail in last daily build.
180 Support for comport 3 and 4.
181 - Win32kCC: Updated dialog to show all information provided by the
182 Win32k IOCtl interface.
183 - Include/HandleManager.h:
184 Added prototype for HMDeviceIoControl which Sander forgot.
185
186 2000-09-03: Patrick Haller <phaller@gmx.net>
187 - KERNEL32: NLS sync with WINE
188
189 2000-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
190 - KERNEL32: More logging;
191 DeviceIoControl didn't have handlemanager wrapper
192 - GDI32: Missing wrapper for WinDrawTabbedText caused FS corruption.
193 PLEASE be more careful in the future!
194
195 2000-09-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
196 - Win32k: Finally. I've merged the new changes into the main branch.
197 The most important things are:
198 - More correct search order for DLLs. The differences are
199 now that _ALL_ DLLs are found using the Windows search
200 order, and that the LIBPATH are also searched (last).
201 - PE.EXE may be invoked by Win32k.sys.
202 Win32k.sys will now operate in three modes:
203 - Pe2Lx mode. Only the Pe2Lx method is used.
204 - Mixed Pe2Lx and Pe.exe mode. Pe.exe is invoked for
205 executables which Pe2Lx don't currently support.
206 (like WinWord, which BTW may trap you PC if invoked
207 in Pe2Lx mode.)
208 This is the default mode.
209 - Pe.exe mode. Pe.exe is allways used.
210 (see readme.txt, I'll update it to ASAP but not to night.
211 (I tired after working 36 hours on finishing this...)
212 - UNIX Shell Scripts are working (now).
213 - JAVA invokation. If you try to load a JAVA class the
214 it is executed using java.exe. (note that the class
215 name is case sensitive!)
216 - Pure REXX. This one is for Nenad. .RX and .REX are
217 loaded using a tiny REXX starter, kRX.exe (found in
218 System32 directory).
219 - Win32k Control Center, Win32kCC.EXE. Simple PM
220 program which allows you to change the Win32k.SYS
221 options while running. It does also show some status
222 information (will be extended).
223 - Support for FP14 in the Symbol database.
224 (use the 09th Aug. kernel please).
225
226 - KERNEL32: Speeded up loading by using Win32k.sys IOCtl to get
227 objecttable entries (OTE) for the Pe2Lx executable images,
228 instead of using DosQuerySysState (which gets OTEs for all
229 modules in the entrie system). (This is the reason for the
230 win32k.lib file - it's made by the 'libs' rule from src.)
231
232 2000-09-02: Sander van Leeuwen <sandervl@xs4all.nl>
233 - USER32: Rewrote IsZoomed
234 Removed winzip invisible button fix; causes many repaint
235 problems. Need to find the real cause.
236 - DDRAW: More debug logging; implemented ClipGetClipList
237 - WINMM: mixerGetID fix (for NULL hmixer)
238
239 2000-09-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
240 - INCLUDE: Shut up the OS/2 resource compiler (added -n to OS2RCFLAGS).
241 Added linkage macro for the OS2RC which exepacks the resource
242 object: OS2RCLFLAGS
243
244 2000-09-01: Patrick Haller <phaller@gmx.net>
245 - GDI32: - Open32 fix for CreateDIBitmap: some apps claim they have
246 a bitmap w/o palette color table and then send one in to copy.
247 - USER32: - PMWINDOW.CPP: WM_FOCUSCHANCE - validate GetTopParent() handle
248
Note: See TracBrowser for help on using the repository browser.