source: trunk/changelog@ 3623

Last change on this file since 3623 was 3623, checked in by sandervl, 25 years ago

* empty log message *

File size: 13.9 KB
Line 
1 /* $Id: changelog,v 1.963 2000-05-28 16:41:31 sandervl Exp $ */
2
3 2000-05-28: Sander van Leeuwen <sandervl@xs4all.nl>
4 - SHELL32: Merged ShellExecuteA/W of latest Wine release (old version
5 did not return process handle)
6 - KERNEL32/USER32:
7 Rewrote and cleaned up resource handling. FindResource(Ex)
8 now returns IMAGE_RESOURCE_DATA_ENTRY pointer.
9
10 2000-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
11 - KERNEL32: Don't call entrypoint when executable is loaded as dll (with
12 LoadLibrary(Ex))
13 Fixed bugs in GetVolumeInformationA
14
15 2000-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
16 - USER32: Don't call Dinput handlers (mouse & keyboard) during message
17 translation in PeekMessage unless msg is removed.
18 Don't use FCF_TASKLIST style anymore; manually add/remove
19 windows from tasklist (only windows with no parent are added;
20 visible in window list if window is visible; change tasklist
21 status in SetWindowPos (SWP_SHOW/HIDEWINDOW) or ShowWindow)
22 - KERNEL32: Don't delete a memory map when it's file handle is closed.
23 Delete it when the last view has been unmapped. (and the handle
24 is closed)
25 Added method to query the size of a win32 image.
26 - INCLUDE\makefiles:
27 Added TCPV40HDRS definition
28
29 2000-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
30 - KERNEL32: Fixed some memory map bugs (memory sdk sample works again)
31 - USER32: Experimental generation of own WM_HITTEST messages (disabled now)
32 Don't activate active MDI child.
33
34 2000-05-24: Patrick Haller <phaller@gmx.net>
35 - WINMM: finally fixed callback type of timeSetEvent() timers
36 - KERNEL32: changed (experimentally) behaviour of MapViewOfFileEx:
37 lpBaseAddress is ignored (VAJ3 loads)
38
39 2000-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
40 - KERNEL32: Rewrote GetVolumeInformationA/W
41 Fixed call to GetFileTime in OpenFile
42 - DDRAW: Bugfix for querying HEL caps in DrawGetCaps
43 (support for different DX versions)
44
45 2000-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
46 - KERNEL32: GetFileAttributes bugfix:
47 Open32 returns FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_NORMAL for
48 directories whereas NT 4 (SP6) only returns FILE_ATTRIBUTE_DIRECTORY
49 Fixed GetFileTime; wasn't updated for handle manager
50 (InstallShield now continues after initial window (used to
51 stop at 99%))
52 Create thread security objects during THDB creation (not complete)
53 -> fixes crash in NTDLL for thread tokens
54 -> PowerDVD 2.55 install now completes
55 FindResource(Ex)A/W: if resource not found, then try:
56 - resource with user default language
57 - resource with system default language
58 - first available resource (any language)
59 (TODO: Need to check what NT really does)
60 -> fixes wrong strings (i.e. menu & buttons) in PowerDVD
61 - GDI32: Sync dib section in StretchDIBits if destination hdc contains
62 selected dib section
63 -> fixes black windows in PowerDVD (todo: palette still wrong)
64
65 2000-05-21: Christoph Bratschi <cbratschi@datacomm.ch>
66 - USER32: merged controls with Corel WINE 20000513
67 fixed titlebar double click -> restore/maximize
68 show window text changes (why was this disabled?)
69 - COMCTL32: merged with Corel WINE 20000513
70 added APIs used by IE5 (credit: Patrick Haller)
71
72 2000-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
73 - USER32: BroadcastMessageA/W bugfix
74 Set visible state for both client & frame windows (fixes
75 redrawing of toolbar window in mIRC32) in SetWindowPos &
76 ShowWindow
77 - KERNEL32: Partly implemented GetDiskFreeSpaceExA/W; need to add support
78 for 64 bits values!
79
80 2000-05-19: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
81 - ICMP: Initial release of ICMP.DLL and header files
82 - OPENGL32: Upgraded to latest level (3.3)
83
84 2000-05-19: Yuri Dario <mc6530@mclink.it>
85 - USER32: Don't send WM_PARENTNOTIFY if parent has already been destroyed
86
87 2000-05-19: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
88 - WNASPI32: Unique id & buffer length bugfixes -> CDRWIN 3.8a
89 works now (recording on SCSI only for now)
90
91 2000-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
92 - SHELL32: Fixed some exports
93 - SHLWAPI: Fixed ordinals of exports (based on NT4 SP6) + added stubs
94 - GDI32: Fixed palette copy in SetDIBits (dib sections) -> fixes
95 bitmap colors in WinDVD control window & X-Wing vs. Tie-Fighter
96 install window
97
98 2000-05-18: Michal Necasek <mike@mendelu.cz>
99 - DSOUND: An updated version, hopefully not too many bugs were introduced
100
101 2000-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
102 - KERNEL32: EnumResourceNamesA bugfix (wrong length in UnicodeToAsciiN call)
103 (reported by Michal Necasek)
104 Call CheckLogException for each exception; safety guard against
105 exceptions inside WriteLog.
106 - WSOCK32: Mark cancelled async select to avoid finding it before the
107 thread removes itself from the queue
108 Check if async select thread is blocking inside select before
109 calling so_cancel to cancel or change the async select.
110 - SHELL32: Removed Path* functions; added forwarders to shlwapi.dll
111 - SHLWAPI: Merged path function with Wine 20000430 (shellpath.cpp)
112 Added DllGetVersion export.
113 Added SHCreateStdEnumFmtEtc, CIDLData_CreateFromIDArray, SHFindFiles
114 SHFindComputer + other apis used by IE5 (stubs)
115 - COMCTL32: Added export 389 (return 0 as in NT 4) & 390 (stub); IE5 needs them
116 Added DPA_LoadStream & DPA_SaveStream (Wine port)
117
118 2000-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
119 - COMDLG32: Fixed shlwapi imports (GetProcAddress failed for PathFindFileNameA
120 -> crash when calling file dialog functions)
121
122 2000-05-16: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
123 - GDI32: Fixed bug in font.cpp
124 iFontRename should use strncpy instead of memcpy since source
125 string passed may be smaller than amount of bytes to copy
126 resulting in GPF.
127
128 2000-05-14: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
129 - WNASPI32: Implemented working ASPI.
130
131 2000-05-14: Patrick Haller <phaller@gmx.net>
132 - SHLWAPI: finally separated SHELL32 and SHLWAPI, adjusted to NT4 functions and exports
133
134 2000-05-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
135 - tools\common: Corrected makefiles.
136
137 2000-05-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
138 - KERNEL32: Print name of image referenced by EIP (stackdump)
139
140 2000-05-12: Sander van Leeuwen <sandervl@xs4all.nl>
141 - USER32: Fixed bug in HOOK_RemoveHook (wrong call for enter semaphore method)
142 SetSysColors bugfix (called itself for some reason)
143 Fixed wrong dispatch of messages under certain conditions
144 - COMDLG32: Fixed initial directory for GetOpen/SaveFileNameW
145 If initial dir string == "" -> use current dir (not only
146 when ptr equals NULL) (verified this behaviour in NT 4)
147 - GDI32: Do manual image flip in dib section blit (fixes wrong position
148 of Palm Emulator bitmap)
149 Might also fix reversed video in RealPlayer 7 (Warp 4 FP13/WSeB FP1)
150
151 2000-05-10: Christoph Bratschi <cbratschi@datacomm.ch>
152 - COMCTL32: Fixed treeview item height bug (reported by Markus Montkowski)
153
154 2000-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
155 - USER32: Fix for SetForegroundWindow (SWP_NOZORDER flag removed)
156 GetForegroundWindow now uses WinQueryActiveWindow instead
157 of Open32's GetForegroundWindow
158 - KERNEL32: Extra logging for atom functions, fixed GlobalGetAtomNameW
159 - COMDLG32: Added missing ascii to unicode conversions in GetFileDialog95W
160 (file name (returned), initial dir & file dialog title)
161 - RICHED32: Added (Wine port)
162 - TOOLS\INSTALL: Added ChangeLog to installation script
163
164 2000-05-09: Sander van Leeuwen <sandervl@xs4all.nl>
165 - KERNEL32: Enclose executable name in quotes if it (or it's directory)
166 contains spaces
167 Route rtl error messages to logfile (_set_crt_msg_handle)
168 Added support for system, user default & neutral language in
169 FindResourceExA/W
170 Fill in correct language id in GetUserDefaultLCID/GetSystemDefaultLCID
171 GetUserDefaultLangID & GetSystemDefaultLangID; gets country
172 with DosQueryCtryInfo
173 - WSOCK32: Return WSAWOULDBLOCK if recv returns 0 and connection is
174 still available. (experimental change for rp7)
175 - USER32: MENU_PtMenu: return when menu has no window handle (prevents
176 Moraff's YourJongg from crashing -> need to check why this
177 happens)
178 Bugfix in AdjustWindowRectEx; if style, exstyle and menu
179 = 0 -> no changes required to the input rectangle
180 (verified this in NT 4)
181 Don't send WM_ACTIVATE, WM_SET/KILLFOCUS & WM_SHOWWINDOW
182 messages when window is being destroyed.
183 - SHELL32: Wrong systray classname used when creating systray window
184 Fixed bugs in SYSTRAY_SetTip/SYSTRAY_ModifyTip; string
185 copy operations used wrong size -> heap corruption
186 - DINPUT: Check window handle if app acquired mouse input in
187 cooperative mode
188 - TOOLS\INSTALL: Fixed wrong glide dll for voodoo 2 install package
189
190 2000-05-06: Sander van Leeuwen <sandervl@xs4all.nl>
191 - GDI32: Added stretch blit mode support to dibsection blits
192
193 2000-05-05: Sander van Leeuwen <sandervl@xs4all.nl>
194 - USER32: Fixed window property functions (ported from Wine)
195 The old ones used Open32 functions which no longer work
196 due to atom api changes a few months ago.
197 If the mouse has already been captured, then it must
198 be released before calling WinSetCapture ->
199 fixes menus & dialog in MS Word 97
200 - OLE32: Fixed BindCtxImpl_SetBindOptions/BindCtxImpl_GetBindOptions
201 Need to check size of bind structure before copying (as done in Wine)
202 -> fixes crash (stack corruption) in MS Word 97
203 - WSOCK32: When changing the receive or send buffer (setsockopt) and
204 it fails with WSAENOBUFS, decrease size until no error
205 is returned (63kb buffer is not always accepted by the
206 16 bits tcpip stack) (stops when buffer < 4096)
207
208 2000-05-04: Achim Hasenmueller <achimha@innotek.de>
209 - USER32: Applied fix to GetDCEx where the check to see if
210 the window has its own DC was applying invalid
211 style flags due to missing parantheses
212 (reported by Oliver Braun)
213
214 2000-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
215 - USER32: Menu font from bold to normal again. Bold fonts are too
216 big (rp7 menu split in two parts).
217
218 2000-05-03: Sander van Leeuwen <sandervl@xs4all.nl>
219 - WSOCK32: Fixed WSAEFAULT errors in setsockopt (16 bits TCP/IP stack
220 doesn't like high addresses; similar problems can also occur
221 elsewhere in wsock32)
222 - USER32: Change settings return by SystemParameterInfo for SPI_GETNONCLIENTMETRICS
223 Caption & menu fonts now bold; different sizes (more like Wine now)
224 Set/clear WS_VISIBLE flag in SetWindowPos; don't call
225 ShowWindow.
226 Implemented Set/Get/ReleaseCapture without Open32
227 Release capture for window that is about to be disabled
228 Send WM_CAPTURECHANGED messages when capture changes
229
230 2000-05-02: Sander van Leeuwen <sandervl@xs4all.nl>
231 - KERNEL32: GetLocaleInfoA/W fix (size of buffer for i.e. LOCALE_IDATE
232 should be >= 2, not > 2)
233 VirtualFree: Check for ERROR_ALIAS return value
234
235 Ported and changed/fixed XFolder stack dump code (symbol file only)
236 When a win32 app crashes, a dump of the stack is written
237 in odin32_0.log.
238 - USER32: Merged some Wine dialog changes (setting focus + font size)
239 Extra logging for some apis
240 Added support for RDW_FRAME flag to GetDCEx
241 - INCLUDE\makefiles:
242 Added rule for converting map to symfile
243 A symbol file is now created for each exe/dll
244 - INCLUDE\ODINWRAP:
245 Turned off profiling by default.
246 Our log is big enough as it is without even
247 more logging.
248
249 2000-05-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
250 - makefile and tools/makefile:
251 tools/install is not a "needed tool" required for
252 to do the rest of the build; and it'is dependent on
253 kernel32.lib which haven't been made at the time
254 the needed_tools are being made. So, the making of
255 tools/install is the last thing we do in the makeprocess.
256 - WSOCK32, WINMM:
257 ODINWRAP changes below broke WSOCK32 and WINMM.
258 I've created some highly temporary fix for it this problem.
259 Could someone please make a permanent fix?
260 - tools/bin/wrc.exe and tools/wrc:
261 Important notice: __WIN32OS2__ is not defined when making wrc!
262 This was the reason why ':' was used as include separator.
263 This is corrected now. ';' is now the include separator.
264 A new wrc.exe has been checked in.
265
Note: See TracBrowser for help on using the repository browser.