source: trunk/changelog@ 6329

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

* empty log message *

File size: 10.9 KB
Line 
1/* $Id: changelog,v 1.1599 2001-07-14 09:22:20 sandervl Exp $ */
2
3 2001-07-14: Sander van Leeuwen <sandervl@xs4all.nl>
4 - PELDR: o Fix for parsing cmd line consisting of directory with spaces
5 - USER32: o Get menu font from os2.ini (OS/2 look & feel)
6 o Full window drag now works for Odin windows
7
8 2001-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
9 - COMDLG32: o Fix for windows 3.1 style file dialog
10 - COMCTL32: o Bad listview pointer checks cause crashes in details
11 view of file dialogs
12 (TODO: Details view is still not right)
13 - KERNEL32: o Check for NULL pointer in lstrlenA/W
14 (fixes crash during AutoCAD 14 install)
15 - USER32: o Removed very old check for negative x or y coordinates during
16 window creation.
17 (file open dialog in InstallShield doesn't show weird edit control
18 anymore and the MS Word 97 main window looks better now)
19 o RegisterClassA/W: check icon first before copying it
20 (gets rid of some annoying warnings in the logfile)
21 - GDI32: o Change BITMAPINFO height if negative
22 (fixes failing StretchDIBits calls with Matrox display driver)
23
24 2001-07-12: Sander van Leeuwen <sandervl@xs4all.nl>
25 - KERNEL32: o Atom fixes
26 - OLEAUT32: o Added RegisterActiveObject, RevokeActiveObject &
27 GetActiveObject from Wine.
28
29 2001-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
30 - COMDLG32: o Don't clear filename when selecting of switching
31 directory is file open/save dialog.
32
33 2001-07-10: knut st. osmundsen <kosmunds@csc.com>:
34 - WIN32K: o Made DosKillProcessEx framework.
35 o Tried to fix missing unlocks of environment block.
36 - KERNEL32: o Tried to fix missing unlocks of environment block.
37 o Fixed module not found problem when a Pe2Lx is dynamically
38 loaded several times.
39 o Defined env.var. ODIN32.FAIL_IF_UNREGISTEREDLX to make
40 LoadLibraryEx fail on unregistered LX dlls. This will fix
41 the most annoying int 3's when starting Opera on debug Odin.
42 (Two int 3 per netscape/2 plugin checked.)
43
44 2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
45 - CRTDLL: o When renaming dlls we still use the original importlibrary
46 and .def-file names. ORGTARGET exist for that purpose.
47 - NTDLL: o Link with crtdll.lib.
48 - VERSION: o Link with crtdll.lib.
49 - WIN32K: o Updated LieList with CrtDll -> CrtDll32 renaming.
50
51 2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
52 - KERNEL32: o Directly import registry functions from REGISTRY.DLL
53 - GDI32: o Never use object handle 0
54 (fixes bad icons in dialogs)
55 - USER32: o Same edit fix as applied yesterday, but this time for
56 single line edit control painting.
57 (Opera url editbox now displays selected text properly)
58
59 2001-07-08: Achim Hasenmueller <achimha@innotek.de>
60 - WSOCK32: o error message to human readable text translation
61 for WSASetLastError (debug version)
62 o implemented IPPROTO_IP support for setsockopt
63 (not fully done)
64 o reset semaphore in WSAEnumNetworkEvents
65 - USER32: o deleted user32\old. It is still in the CVS attic
66 so in case you need it, you can get it from CVS
67
68 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
69 - USER32: o Some icon fixes
70 o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
71 jump back to last click position when moving the mouse
72 outside the scroll window during scrolling.
73 o Changed menu behaviour in OS/2 mode; no mouse tracking
74 when right or left mouse button not pressed.
75 o Clipboard (Get/SetClipboardData: must translated open32
76 to kernel32 global memory handles (due to Global memory
77 api rewrite)
78 o Key translation for arrow keys and insert/del, home/end, page up/down
79 added (WM_CHAR message translation)
80 o Edit control bugfix for drawing selected text
81 - KERNEL32: o More pointer checks added to GlobalLock/Unlock
82 o Add default rename entry for crtdll
83 o Fixed FS corruption in atom functions (wrapper for LookupAtom)
84 - CRTDLL: o Renamed to crtdll32 to avoid problems with some Lotus
85 apps that come with their own crtdll
86 - NTDLL: o Link with crtdll32.lib
87 - VERSION: o Link with crtdll32.lib
88 - SHLWAPI: o Link with crtdll32.lib
89 - PELDR: o Fix for file not found error
90
91 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
92 - KERNEL32: o Added call in initterm to tell win32k where the Odin32
93 environment block is. (Its in Open32, and I don't think
94 it is reallocated.)
95 o Added early initiation of Win32k loaded EXE. This corrected
96 problems with GetModuleHandleA returing -1 to MSVCRT.
97 - WIN32K: o Fixed environment block problem. The environment variables is
98 not updated in the original env.block. So, win32k needs to
99 be told where to find the Odin32 environment block to correctly
100 find dlls using the PATH.
101 o Corrected crosspage fixup bug.
102 o Set no internal fixups flag in LX header for most executables
103 in an attempt to convice OS/2 to load them where they wanna be
104 loaded (usually 0x00400000).
105 o Can now tell difference between the debug kernels.
106
107 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
108 - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
109 o Fixed GetAtomNameW
110 - GDI32: o Don't use Open32 IsBad* memory functions directly
111 - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
112 memory handles (due to Global memory api rewrite)
113
114 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
115 - WS2_32: o import WSAEventSelect from WSOCK32 (although a
116 Winsock 2.0 API, it makes more sense to be implemented
117 in the Winsock 1.1 stack)
118 o import WSAEnumNetworkEvents from WSOCK32 (same reason)
119 - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
120 window handle and event semaphore notification
121 o implemented WSAEventSelect
122 o implemented WSAEnumNetworkEvents (not correct)
123
124 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
125 - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
126 to fix SYS2048 during RealPlayer install.
127 - WIN32K: o Fixed the DBExpert bug in the longdllname code.
128 BTW. Thanks to Randell at Sundial Systems and Alex Newman
129 for reporting this and begin very helpful tracking it down.
130 o The longdllname feature now differs from the OS/2 loader on
131 one points: <br>
132 It is able to find (DosQueryModuleHandle) for dlls using
133 internal names which includes the .DLL extention. <br>
134 The longdllname feature don't currently support names with
135 extention .DLL like extentions with base name lengths from
136 4-7 chars. I will fix this some day.<br>
137
138 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
139 - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
140 o GlobalAlloc must return pointers aligned at 8 byte boundary
141 (SDK docs + verified in NT4, SP6)
142 o Better checks in GlobalFree for invalid handles/pointers
143 (InvestmentView seems to call it with a GDI handle; why??)
144 o LocalReAlloc bugfix
145 - USER32: o Must return 16 bits icon & cursor handles
146 (fixes crash in Acrobat Reader 4)
147 - GDI32: o GetDIBits must only return color information when lpvBits
148 is not NULL.
149 (fixes Opera crash (heap corruption) with new heap code)
150 - PELDR: o Report error when file not found.
151
152 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
153 - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
154 o WinHelpA fixes (use shared memory for sending information
155 to winhlp32)
156 - KERNEL32: o Added GlobalFix and GlobalUnfix
157 o Local memory functions now use Global memory functions
158 o Ported Wine Global memory functions (we no longer depend
159 on Open32 for these)
160
161 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
162 - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
163 o VkKeyScanExA/W: call VkKeyScanA/W
164 o MapVirtualKeyExA/W: call MapVirtualKeyA/W
165 o SetParent bugfix; even though the win32 coordinates might
166 not change, the PM coordinates can. We must make sure the
167 child stays at the same position (y) relative to the
168 (new) parent.
169 (Cool Edit Pro LE play buttons now at the right position)
170 o Send WM_SETICON to frame window with converted win32 icon
171 (application icon now visible in task list)
172 o Quick fix for window creation:
173 Before a window has processed WM_NCCREATE:
174 - GetTopWindow can't return that window handle
175 - GetWindow(parent, GW_CHILD) can't return that window handle
176 - IsChild works
177 TODO: Does this affect more functions?? (other GetWindow ops)
178 (verified in NT4, SP6)
179 TODO: Must add window to parent's child list after WM_NCCREATE
180 and rewrite GetWindow & GetTopWindow
181 (fix for crash in MP3 Explorer)
182
183 - GDI32: o Workaround for applications that depend on 16 bits
184 GDI object handles.
185 (TODO: must create our own 16 bits handles)
186 (fixes crash in Cool Edit Pro LE)
187
188 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
189 - KERNEL32: o Improoved the Unhandled exception message by
190 trying to provide modulename and some kind of obj/offset.
191 - FastDep: o (synced with OS2Tools) Make better use of data in evt.
192 existing .depend file so that only changed files are processed.
193
194 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
195 - KERNEL32: o Executable load fix
196 (fixes crash during RealPlayer 8 install)
197 o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
198 - USER32: o ToAscii & GetKeyboardState fixes
199 (for Putty keyboard input)
Note: See TracBrowser for help on using the repository browser.