source: trunk/changelog@ 3542

Last change on this file since 3542 was 3542, checked in by sandervl, 26 years ago

* empty log message *

File size: 7.7 KB
Line 
1 /* $Id: changelog,v 1.940 2000-05-15 19:06:30 sandervl Exp $ */
2
3 2000-05-14: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
4 - WNASPI32: Implemented working ASPI.
5
6 2000-05-14: Patrick Haller <phaller@gmx.net>
7 - SHLWAPI: finally separated SHELL32 and SHLWAPI,
8 adjusted to NT4 functions and exports
9
10 2000-05-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
11 - tools\common: Corrected makefiles.
12
13 2000-05-12: Edgar Buerkle <Edgar.Buerkle@gmx.net>
14 - KERNEL32: Print name of image referenced by EIP (stackdump)
15
16 2000-05-12: Sander van Leeuwen <sandervl@xs4all.nl>
17 - USER32:
18 Fixed bug in HOOK_RemoveHook (wrong call for enter semaphore method)
19 SetSysColors bugfix (called itself for some reason)
20 Fixed wrong dispatch of messages under certain conditions
21 - COMDLG32:
22 Fixed initial directory for GetOpen/SaveFileNameW
23 If initial dir string == "" -> use current dir (not only
24 when ptr equals NULL) (verified this behaviour in NT 4)
25 - GDI32:
26 Do manual image flip in dib section blit (fixes wrong position
27 of Palm Emulator bitmap)
28 Might also fix reversed video in RealPlayer 7 (Warp 4 FP13/WSeB FP1)
29
30 2000-05-10: Christoph Bratschi <cbratschi@datacomm.ch>
31 - COMCTL32: Fixed treeview item height bug (reported by Markus Montkowski)
32
33 2000-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
34 - USER32:
35 Fix for SetForegroundWindow (SWP_NOZORDER flag removed)
36 GetForegroundWindow now uses WinQueryActiveWindow instead
37 of Open32's GetForegroundWindow
38 - KERNEL32: Extra logging for atom functions, fixed GlobalGetAtomNameW
39 - COMDLG32:
40 Added missing ascii to unicode conversions in GetFileDialog95W
41 (file name (returned), initial dir & file dialog title)
42 - RICHED32: Added (Wine port)
43 - TOOLS\INSTALL: Added ChangeLog to installation script
44
45 2000-05-09: Sander van Leeuwen <sandervl@xs4all.nl>
46 - KERNEL32:
47 Enclose executable name in quotes if it (or it's directory)
48 contains spaces
49 Route rtl error messages to logfile (_set_crt_msg_handle)
50 Added support for system, user default & neutral language in
51 FindResourceExA/W
52 Fill in correct language id in GetUserDefaultLCID/GetSystemDefaultLCID
53 GetUserDefaultLangID & GetSystemDefaultLangID; gets country
54 with DosQueryCtryInfo
55 - WSOCK32:
56 Return WSAWOULDBLOCK if recv returns 0 and connection is
57 still available. (experimental change for rp7)
58 - USER32:
59 MENU_PtMenu: return when menu has no window handle (prevents
60 Moraff's YourJongg from crashing -> need to check why this
61 happens)
62 Bugfix in AdjustWindowRectEx; if style, exstyle and menu
63 = 0 -> no changes required to the input rectangle
64 (verified this in NT 4)
65 Don't send WM_ACTIVATE, WM_SET/KILLFOCUS & WM_SHOWWINDOW
66 messages when window is being destroyed.
67 - SHELL32:
68 Wrong systray classname used when creating systray window
69 Fixed bugs in SYSTRAY_SetTip/SYSTRAY_ModifyTip; string
70 copy operations used wrong size -> heap corruption
71 - DINPUT: Check window handle if app acquired mouse input in
72 cooperative mode
73 - TOOLS\INSTALL: Fixed wrong glide dll for voodoo 2 install package
74
75 2000-05-06: Sander van Leeuwen <sandervl@xs4all.nl>
76 - GDI32: Added stretch blit mode support to dibsection blits
77
78 2000-05-05: Sander van Leeuwen <sandervl@xs4all.nl>
79 - USER32:
80 Fixed window property functions (ported from Wine)
81 The old ones used Open32 functions which no longer work
82 due to atom api changes a few months ago.
83 If the mouse has already been captured, then it must
84 be released before calling WinSetCapture ->
85 fixes menus & dialog in MS Word 97
86 - OLE32:
87 Fixed BindCtxImpl_SetBindOptions/BindCtxImpl_GetBindOptions
88 Need to check size of bind structure before copying (as done in Wine)
89 -> fixes crash (stack corruption) in MS Word 97
90 - WSOCK32:
91 When changing the receive or send buffer (setsockopt) and
92 it fails with WSAENOBUFS, decrease size until no error
93 is returned (63kb buffer is not always accepted by the
94 16 bits tcpip stack) (stops when buffer < 4096)
95
96 2000-05-04: Achim Hasenmueller <achimha@innotek.de>
97 - USER32:
98 Applied fix to GetDCEx where the check to see if
99 the window has its own DC was applying invalid
100 style flags due to missing parantheses
101 (reported by Oliver Braun)
102
103 2000-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
104 - USER32:
105 Menu font from bold to normal again. Bold fonts are too
106 big (rp7 menu split in two parts).
107
108 2000-05-03: Sander van Leeuwen <sandervl@xs4all.nl>
109 - WSOCK32:
110 Fixed WSAEFAULT errors in setsockopt (16 bits TCP/IP stack
111 doesn't like high addresses; similar problems can also occur
112 elsewhere in wsock32)
113 - USER32:
114 Change settings return by SystemParameterInfo for SPI_GETNONCLIENTMETRICS
115 Caption & menu fonts now bold; different sizes (more like Wine now)
116 Set/clear WS_VISIBLE flag in SetWindowPos; don't call
117 ShowWindow.
118 Implemented Set/Get/ReleaseCapture without Open32
119 Release capture for window that is about to be disabled
120 Send WM_CAPTURECHANGED messages when capture changes
121
122 2000-05-02: Sander van Leeuwen <sandervl@xs4all.nl>
123 - KERNEL32:
124 GetLocaleInfoA/W fix (size of buffer for i.e. LOCALE_IDATE
125 should be >= 2, not > 2)
126 VirtualFree: Check for ERROR_ALIAS return value
127
128 Ported and changed/fixed XFolder stack dump code (symbol file only)
129 When a win32 app crashes, a dump of the stack is written
130 in odin32_0.log.
131 - USER32:
132 Merged some Wine dialog changes (setting focus + font size)
133 Extra logging for some apis
134 Added support for RDW_FRAME flag to GetDCEx
135 - INCLUDE\makefiles:
136 Added rule for converting map to symfile
137 A symbol file is now created for each exe/dll
138 - INCLUDE\ODINWRAP:
139 Turned off profiling by default.
140 Our log is big enough as it is without even
141 more logging.
142
143 2000-05-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
144 - makefile and tools/makefile:
145 tools/install is not a "needed tool" required for
146 to do the rest of the build; and it'is dependent on
147 kernel32.lib which haven't been made at the time
148 the needed_tools are being made. So, the making of
149 tools/install is the last thing we do in the makeprocess.
150 - WSOCK32, WINMM:
151 ODINWRAP changes below broke WSOCK32 and WINMM.
152 I've created some highly temporary fix for it this problem.
153 Could someone please make a permanent fix?
154 - tools/bin/wrc.exe and tools/wrc:
155 Important notice: __WIN32OS2__ is not defined when making wrc!
156 This was the reason why ':' was used as include separator.
157 This is corrected now. ';' is now the include separator.
158 A new wrc.exe has been checked in.
159
Note: See TracBrowser for help on using the repository browser.