source: trunk/changelog@ 6398

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

* empty log message *

File size: 17.5 KB
Line 
1/* $Id: changelog,v 1.1618 2001-07-28 18:05:27 sandervl Exp $ */
2
3 2001-07-28: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Set/GetWindowWord changes (must handle GWW_ID, GWW_HINSTANCE
5 and GWW_HWNDPARENT
6 o Ported ArrangeIconicWindows from Wine (not complete yet)
7 o Rewrote Get/SetDoubleClickTime & SwapMouseButton
8 o Don't call O32_GetLastActivePopup
9 (TODO: must rewrite it)
10 - KERNEL32: o Rewrote FatalAppExitA/W, FatalExit, Beep, IsBadHugeReadPtr,
11 IsBadHugeWritePtr
12 o Removed O32_HeapCreate/Destroy calls; return rtl heap handle
13 o No longer use Open32's GetProcAddress or GetModuleFileName
14 - USER32/KERNEL32:
15 o Moved WaitForInputIdle & AttachThreadInput from user32 to
16 kernel32
17
18 2001-07-22: Sander van Leeuwen <sandervl@xs4all.nl>
19 - TOOLS\INSTALL:
20 o Added some quartz.dll keys
21 - COMCTL32: o Status window bugfix; check part number boundary
22 (fixes crash in AudioGalaxy)
23 - USER32: o IsWindowVisible fix; check WS_CHILD flag before calling GetParent
24 (fixes invisible characters while typing in edit control
25 of AudioGalaxy)
26
27 2001-07-21: Sander van Leeuwen <sandervl@xs4all.nl>
28 - DINPUT, DPLAYX, ICMP, IMAGEHLP, IMM32, LZ32,
29 MSVFW32, OLEPRO32, RICHED32, URLMON, VERSION, WININET
30 o Added Wine license
31
32 - AVIFIL32, SHELL32, COMCTL32, COMDLG32, MSACM32, NTDLL, OLE32, OLAUT32,
33 SHDOCVW, SETUPAPI, SHLWAPI, OLECLI32, OLEDLG, OLESVR32, RPCRT4
34 o Replaced Wine license with updated version
35 - COMCTL32: o Resync with Wine (20010720); comboex, comctl32undoc, rebar,
36 imagelist, toolbar, pager
37 - MSVFW32: o Resync with Wine (20010720); all
38 - AVIFIL32: o Resync with Wine (20010720); all
39 - GDI32: o Fixed brush leak in InternalTextOutA
40 (fixes Macromedia Flash 5 error messages)
41
42 2001-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
43 - KERNEL32: o Moved wsnprintf to user32
44 - USER32: o Removed FatalAppExitA/W (already in kernel32)
45 - SHLWAPI: o Removed WINE_StringFromCLSID & StringFromGUID2 (not used)
46 o Removed several string function that were not used or exported
47 - NTDLL: o Replaced 64 bits math assembly functions (disassembled Wine C code
48 compiled with VAC 3.6.5)
49 - ODINCRT: o Export 64 bits math rtl functions
50 o Added 64 bits math rtl functions for VAC 3.0 (assembly;
51 borrowed from VAC 3.6.5)
52 NOTE: __divi64 might cause problems (in theory) since
53 it uses the FPU and doesn't save the FPU state
54 - OLE32/WINMM/KERNEL32/USER32/GDI32/COMCTL32/COMDLG32/SHLWAPI/SHELL32/
55 RPCRT4/WSOCK32/VERSION:
56 o Rewrote initterm + debug logging to allow us to build
57 a single dll containing the code of many Odin dlls
58 - CUSTOMBUILD:
59 o Example of creating a custom dll with the Odin32 environment
60 that can be used for a ported win32 app. (not done yet)
61
62 2001-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
63 - DOC: o Added license for WGSS50
64 - TOOLS\INSTALL:
65 o Include new license in WarpIN install script + package
66 - TOOLS\DAILYBUILD:
67 o Add WGSS50.lic to daily zipfiles
68 - COMDLG32: o Use printer dialog function in WGSS50
69 - WGSS50: o Added new WGSS dll that fixes several printing problems
70 - KERNEL32: o lstrncmpiA/W bugfix; broke resource lookup in Acrobat
71 Distiller (did not exactly work the way Wine code expected it)
72
73 2001-07-19: Achim Hasenmueller <achimha@innotek.de>
74 - LICENSE: o added WGSS50.LIC which contains the official license
75 of the WGSS50.DLL module that is included with all
76 Odin builds. This is a license contract between
77 InnoTek Systemberatung GmbH (http://www.innotek.de)
78 and the individual Odin user. The library is provided
79 free of charge. The main requirement is that every user
80 need to own a valid OS/2 license (this also includes
81 eComStation of course).
82 Every distribution of Odin will also contain this
83 license file and the WarpIn archives will show the
84 license during installation and require acceptance.
85 For any questions about the license, please contact
86 me via email. Note that the Odin license specifically
87 allows redistribution of Odin with custom applications
88 and as soon as the WGSS50 license is included, this also
89 applies to WGSS50.DLL.
90
91 The reason we include WGSS50 (a subset of Open32 used
92 by IBM for Netscape Communicator 4.61 for OS/2) is that
93 it contains numerous improvements over Open32 and it
94 allows us more easily to replace Open32/WGSS50 APIs
95 by custom functions.
96
97 2001-07-17: Sander van Leeuwen <sandervl@xs4all.nl>
98 - KERNEL32: o HeapCreate now creates a separate heap (_ucreate) instead
99 of sharing the same heap as Odin.
100 (lowers the chance of fatal crashes on heap corruption;
101 hangs in exitlist)
102 o Implemented HeapValidate
103 o GlobalReAlloc bugfix; must check if pointer has a handle
104 associated with it.
105 (RealDraw install calls GlobalReAlloc with pointer returned
106 by GlobalLock(handle))
107
108 2001-07-16: Sander van Leeuwen <sandervl@xs4all.nl>
109 - KERNEL32: o RegEnumKeyExW fix (lpszClass can be NULL)
110 o Faster resource lookup functions (Wine)
111 - USER32: o Allocate more memory for icon bitmap before calling
112 GpiCreateBitmap. This function seems to touch more bytes
113 than necessary (??).
114 - GDI32: o AddFontResourceA: ignore if called with filename of PE
115 executable (return 1; gets rid of error message in Photoshop 6)
116
117 2001-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
118 - COMDLG32: o Ported Wine printer dialog code (inactive due to missing
119 functions in winspool)
120 - USER32: o Translate WM_VSCROLL & WM_HSCROLL
121 o Do not use imports not available in Warp 3's PMWINX
122 (WaitForInputIdle & GetAsyncKeyState)
123 o There is no close button in Warp 3 (OS/2 look & feel)
124 - KERNEL32: o Do not call WaitForInputIdle in WinExec on Warp 3 systems.
125
126 2001-07-14: Sander van Leeuwen <sandervl@xs4all.nl>
127 - PELDR: o Fix for parsing cmd line consisting of directory with spaces
128 - USER32: o Get menu font from os2.ini (OS/2 look & feel)
129 o Full window drag now works for Odin windows
130 - GDI32: o Implemented StartDocW
131
132 2001-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
133 - COMDLG32: o Fix for windows 3.1 style file dialog
134 - COMCTL32: o Bad listview pointer checks cause crashes in details
135 view of file dialogs
136 (TODO: Details view is still not right)
137 - KERNEL32: o Check for NULL pointer in lstrlenA/W
138 (fixes crash during AutoCAD 14 install)
139 - USER32: o Removed very old check for negative x or y coordinates during
140 window creation.
141 (file open dialog in InstallShield doesn't show weird edit control
142 anymore and the MS Word 97 main window looks better now)
143 o RegisterClassA/W: check icon first before copying it
144 (gets rid of some annoying warnings in the logfile)
145 - GDI32: o Change BITMAPINFO height if negative
146 (fixes failing StretchDIBits calls with Matrox display driver)
147
148 2001-07-12: Sander van Leeuwen <sandervl@xs4all.nl>
149 - KERNEL32: o Atom fixes
150 - OLEAUT32: o Added RegisterActiveObject, RevokeActiveObject &
151 GetActiveObject from Wine.
152
153 2001-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
154 - COMDLG32: o Don't clear filename when selecting of switching
155 directory is file open/save dialog.
156
157 2001-07-10: knut st. osmundsen <kosmunds@csc.com>:
158 - WIN32K: o Made DosKillProcessEx framework.
159 o Tried to fix missing unlocks of environment block.
160 - KERNEL32: o Tried to fix missing unlocks of environment block.
161 o Fixed module not found problem when a Pe2Lx is dynamically
162 loaded several times.
163 o Defined env.var. ODIN32.FAIL_IF_UNREGISTEREDLX to make
164 LoadLibraryEx fail on unregistered LX dlls. This will fix
165 the most annoying int 3's when starting Opera on debug Odin.
166 (Two int 3 per netscape/2 plugin checked.)
167
168 2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
169 - CRTDLL: o When renaming dlls we still use the original importlibrary
170 and .def-file names. ORGTARGET exist for that purpose.
171 - NTDLL: o Link with crtdll.lib.
172 - VERSION: o Link with crtdll.lib.
173 - WIN32K: o Updated LieList with CrtDll -> CrtDll32 renaming.
174
175 2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
176 - KERNEL32: o Directly import registry functions from REGISTRY.DLL
177 - GDI32: o Never use object handle 0
178 (fixes bad icons in dialogs)
179 - USER32: o Same edit fix as applied yesterday, but this time for
180 single line edit control painting.
181 (Opera url editbox now displays selected text properly)
182
183 2001-07-08: Achim Hasenmueller <achimha@innotek.de>
184 - WSOCK32: o error message to human readable text translation
185 for WSASetLastError (debug version)
186 o implemented IPPROTO_IP support for setsockopt
187 (not fully done)
188 o reset semaphore in WSAEnumNetworkEvents
189 - USER32: o deleted user32\old. It is still in the CVS attic
190 so in case you need it, you can get it from CVS
191
192 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
193 - USER32: o Some icon fixes
194 o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
195 jump back to last click position when moving the mouse
196 outside the scroll window during scrolling.
197 o Changed menu behaviour in OS/2 mode; no mouse tracking
198 when right or left mouse button not pressed.
199 o Clipboard (Get/SetClipboardData: must translated open32
200 to kernel32 global memory handles (due to Global memory
201 api rewrite)
202 o Key translation for arrow keys and insert/del, home/end, page up/down
203 added (WM_CHAR message translation)
204 o Edit control bugfix for drawing selected text
205 - KERNEL32: o More pointer checks added to GlobalLock/Unlock
206 o Add default rename entry for crtdll
207 o Fixed FS corruption in atom functions (wrapper for LookupAtom)
208 - CRTDLL: o Renamed to crtdll32 to avoid problems with some Lotus
209 apps that come with their own crtdll
210 - NTDLL: o Link with crtdll32.lib
211 - VERSION: o Link with crtdll32.lib
212 - SHLWAPI: o Link with crtdll32.lib
213 - PELDR: o Fix for file not found error
214
215 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
216 - KERNEL32: o Added call in initterm to tell win32k where the Odin32
217 environment block is. (Its in Open32, and I don't think
218 it is reallocated.)
219 o Added early initiation of Win32k loaded EXE. This corrected
220 problems with GetModuleHandleA returing -1 to MSVCRT.
221 - WIN32K: o Fixed environment block problem. The environment variables is
222 not updated in the original env.block. So, win32k needs to
223 be told where to find the Odin32 environment block to correctly
224 find dlls using the PATH.
225 o Corrected crosspage fixup bug.
226 o Set no internal fixups flag in LX header for most executables
227 in an attempt to convice OS/2 to load them where they wanna be
228 loaded (usually 0x00400000).
229 o Can now tell difference between the debug kernels.
230
231 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
232 - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
233 o Fixed GetAtomNameW
234 - GDI32: o Don't use Open32 IsBad* memory functions directly
235 - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
236 memory handles (due to Global memory api rewrite)
237
238 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
239 - WS2_32: o import WSAEventSelect from WSOCK32 (although a
240 Winsock 2.0 API, it makes more sense to be implemented
241 in the Winsock 1.1 stack)
242 o import WSAEnumNetworkEvents from WSOCK32 (same reason)
243 - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
244 window handle and event semaphore notification
245 o implemented WSAEventSelect
246 o implemented WSAEnumNetworkEvents (not correct)
247
248 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
249 - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
250 to fix SYS2048 during RealPlayer install.
251 - WIN32K: o Fixed the DBExpert bug in the longdllname code.
252 BTW. Thanks to Randell at Sundial Systems and Alex Newman
253 for reporting this and begin very helpful tracking it down.
254 o The longdllname feature now differs from the OS/2 loader on
255 one points: <br>
256 It is able to find (DosQueryModuleHandle) for dlls using
257 internal names which includes the .DLL extention. <br>
258 The longdllname feature don't currently support names with
259 extention .DLL like extentions with base name lengths from
260 4-7 chars. I will fix this some day.<br>
261
262 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
263 - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
264 o GlobalAlloc must return pointers aligned at 8 byte boundary
265 (SDK docs + verified in NT4, SP6)
266 o Better checks in GlobalFree for invalid handles/pointers
267 (InvestmentView seems to call it with a GDI handle; why??)
268 o LocalReAlloc bugfix
269 - USER32: o Must return 16 bits icon & cursor handles
270 (fixes crash in Acrobat Reader 4)
271 - GDI32: o GetDIBits must only return color information when lpvBits
272 is not NULL.
273 (fixes Opera crash (heap corruption) with new heap code)
274 - PELDR: o Report error when file not found.
275
276 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
277 - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
278 o WinHelpA fixes (use shared memory for sending information
279 to winhlp32)
280 - KERNEL32: o Added GlobalFix and GlobalUnfix
281 o Local memory functions now use Global memory functions
282 o Ported Wine Global memory functions (we no longer depend
283 on Open32 for these)
284
285 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
286 - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
287 o VkKeyScanExA/W: call VkKeyScanA/W
288 o MapVirtualKeyExA/W: call MapVirtualKeyA/W
289 o SetParent bugfix; even though the win32 coordinates might
290 not change, the PM coordinates can. We must make sure the
291 child stays at the same position (y) relative to the
292 (new) parent.
293 (Cool Edit Pro LE play buttons now at the right position)
294 o Send WM_SETICON to frame window with converted win32 icon
295 (application icon now visible in task list)
296 o Quick fix for window creation:
297 Before a window has processed WM_NCCREATE:
298 - GetTopWindow can't return that window handle
299 - GetWindow(parent, GW_CHILD) can't return that window handle
300 - IsChild works
301 TODO: Does this affect more functions?? (other GetWindow ops)
302 (verified in NT4, SP6)
303 TODO: Must add window to parent's child list after WM_NCCREATE
304 and rewrite GetWindow & GetTopWindow
305 (fix for crash in MP3 Explorer)
306
307 - GDI32: o Workaround for applications that depend on 16 bits
308 GDI object handles.
309 (TODO: must create our own 16 bits handles)
310 (fixes crash in Cool Edit Pro LE)
311
312 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
313 - KERNEL32: o Improoved the Unhandled exception message by
314 trying to provide modulename and some kind of obj/offset.
315 - FastDep: o (synced with OS2Tools) Make better use of data in evt.
316 existing .depend file so that only changed files are processed.
317
318 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
319 - KERNEL32: o Executable load fix
320 (fixes crash during RealPlayer 8 install)
321 o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
322 - USER32: o ToAscii & GetKeyboardState fixes
323 (for Putty keyboard input)
Note: See TracBrowser for help on using the repository browser.