source: trunk/changelog@ 6396

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

* empty log message *

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