source: trunk/changelog@ 3530

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

* empty log message *

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