source: trunk/changelog@ 5629

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

* empty log message *

File size: 14.0 KB
Line 
1/* $Id: changelog,v 1.1388 2001-04-29 10:28:49 sandervl Exp $ */
2
3 2001-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
4 - COMCTL32: o Resync with latest Wine (20010418) (animate, comboex, rebar,
5 status, tab)
6
7 2001-04-28: Dietrich Teickner <Dietrich_Teickner@t-online.de>
8 - SHELL32: o Updates and fixes for SHFileOperationA (FO_COPY)
9
10 2000-04-28: Yuri Dario <mc6530@mclink.it>
11 - WSOCK32: o Send FD_READ notification even if nr of bytes read = 0
12 o Corrected error return for recv
13 (fixes for Opera)
14 - KERNEL32: o dprintf(NULL) flushes log stream
15
16 2001-04-28: Sander van Leeuwen <sandervl@xs4all.nl>
17 - SHELL32: o Resync with latest Wine (20010418) + merged Odin fixes/additions
18 - SHLWAPI: o Resync with latest Wine (20010418) + merged Odin fixes/additions
19 - KERNEL32: o Added GetSystemWindowsDirectoryA/W exports
20 - USER32: o Don't use PM api directly in dialog message loop. Must call
21 PeekMessageA & GetMessageA. (or else the WH_MSGFILTER hook
22 won't be called)
23 o Check WM_(SYS)MSGFILTER hooks in DoDialogBox
24
25 2001-04-28: Markus Montkowski <mmontkowski@gmx.de|
26 - MSVFW32: o Fixed ICOpen, check and correct fccType from VIDC to vidc.
27 Videocodecs do load now.
28
29 2001-04-27: Sander van Leeuwen <sandervl@xs4all.nl>
30 - USER32: o Call WH_GETMESSAGE hook handler from GetMessage and PeekMessage
31 (if message present)
32 o Added (not 100% correct) filtering for nonclient mouse messages
33 (fixes nonclient messages for MS Word 97 (frame & menu mouse actions))
34 o Recalculate HDC height of windows with CS_OWNDC style if
35 window is resized.
36 (fixes 28 pixel shift up in MS Word MDI window; Word calls
37 GetDCEx once and does custom WM_PAINT handling (never calls
38 Begin/EndPaint))
39 - KERNEL32: o HeapReAlloc: return old pointer if new size is smaller or
40 equal to old size.
41 - GDI32: o Limit length of converted strings in InternalDrawTextExW,
42 InternalGetTabbedTextExtentW, InternalTabbedTextOutW &
43 InternalTextOutW. (cbCount might be smaller than string
44 length)
45 (fixes crash in MS Word when it tries to display the about
46 dialog)
47 - INCLUDE\win\unicode:
48 o strcpyW bugfix (didn't terminate string -> heap corruption)
49 - DSOUND: o Preliminary code added for DirectAudio interface.
50 (not finished & not activated)
51
52 2001-04-26: Sander van Leeuwen <sandervl@xs4all.nl>
53 - KERNEL32: o Implemented FreeLibraryAndExitThread
54 o Create HandleManager class for mailslots + partial implementation
55 for mailslot APIs (using named pipes)
56 o Fixed wrong return values for some CloseHandle methods
57 o Fixed CreateNamedPipe; must not call DosCreateNPipe for existing pipe
58 (at least according to the SDK docs; must verify this in NT!)
59 o Implemented CreateFile and CloseHandle for named pipe class
60 o Implemented SetNamedPipeHandleState
61 o GetEnvironmentVariableW fix (breakpoint hit in debug build)
62 - ADVAPI32: o IsTextUnicode forwarded to RtlIsTextUnicode (ntdll)
63 - GDI32: o InternalTextOutW fix (breakpoint hit in debug build)
64 - OLE32: o Resync with latest Wine build (20010418)
65
66 2001-04-25: Sander van Leeuwen <sandervl@xs4all.nl>
67 - USER32: o Check visibility of parents in IsWindowVisible
68 o Call ShowWindow(SW_MINIMIZE) in CloseWindow (for non-child windows)
69 Don't use PM directly to minimize it.
70
71 2001-04-25: Shingo Tsuda <sofiya@din.or.jp>
72 - GDI32: o DBCS fix for looking up font name in font rename profile section
73
74 2001-04-24: Sander van Leeuwen <sandervl@xs4all.nl>
75 - COMDLG32, DPLAYX, OLE32, OLEAUT32:
76 o Compile fixes for VAC 3.6.5 (nameless unions & structs)
77 - COMDLG32: o Resync with latest Wine code
78 (directory changed after file chosen in file open dialog)
79
80 2001-04-23: Dietrich Teickner <Dietrich_Teickner@t-online.de>
81 - SHELL32: o Updates and fixes for SHFileOperationA (FO_COPY)
82
83 2001-04-22: Sander van Leeuwen <sandervl@xs4all.nl>
84 - DDRAW: o Wrong calling convention of io_init2. Parameter is pushed
85 on the stack, not put in eax.
86 (fixes crash in release ddraw & systems with xf86sup.sys
87 installed)
88 - KERNEL32: o Removed wrong segment definitions introduced by yesterday's
89 EXC_CallHandler rewrite.
90 (fixes global data section)
91 o Build fake header for LX executable
92 (fixes crash during Acrobat Reader 5 install (regsvr32.exe))
93 - NTDLL: o Updated rtlstr.c (Wine)
94 o Wrote partial implementation of RtlGetAce. Not tested well.
95 Enough to prevent Acrobat Reader 5 install from crashing.
96 - ADVAPI32: o Forward AddAce, FindFirstFreeAce, GetAce & AddAccessAllowedAce
97 to NTDLL
98 - INSTALL: o Add Font registry keys
99 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
100 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Fonts]
101 "Courier 10,12,15 (VGA res)"="COURE.FON"
102 "MS Sans Serif 8,10,12,14,18,24 (VGA res)"="SSERIFE.FON"
103 "MS Serif 8,10,12,14,18,24 (VGA res)"="SERIFE.FON"
104
105 2001-04-21: Sander van Leeuwen <sandervl@xs4all.nl>
106 - KERNEL32: o DosWrite for stdout doesn't accept high addresses
107 o Rewrote EXC_CallHandler in assembly (copied compiler output
108 (opt. off))
109 No longer necessary to turn off optimizations for exceptions.cpp.
110 o Added partial implementation of GetLongPathNameA/W
111
112 2001-04-20: Sander van Leeuwen <sandervl@xs4all.nl>
113 - USER32: o Commented out RestoreCursor call in user32 exitlist handler.
114 Seems to cause PM hangs on some (a lot?) machines for
115 reasons unknown.
116
117 2001-04-20: Patrick Haller <patrick.haller@innotek.de>
118 - DSOUND: o Fixes / Workaround for PowerDVD 3.0
119 Crashed when allocating sound object for
120 48kHz, 16-Bit, 4 channels
121 o dynamically size the internal mixing buffer
122 in DSMIXER
123
124 2001-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
125 - KERNEL32: o Fail properly when a dll can't be found or loaded.
126 - SHELL32: o Ported latest shlfileop.c from Wine. (include functional
127 SHFileOperation).
128 TODO: Merge the rest.
129
130 2001-04-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
131 - dailybuild:
132 o Adjusted to new build pattern.
133 o Copy all builds to local archive directory.
134 - tools\install:
135 o Added Xx2Lx.
136 - Readme.txt:
137 o Changed Pe2Lx to Xx2Lx.
138
139 2001-04-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
140 - Unicode: o Minor addjustments to makefile. CFLAGS is the correct
141 place to addjust flags for C compilation. And flags
142 are compiler specific.. wrapped it in CCENV checks.
143 - Tools\Common:
144 o Revamped a couple of things - introduced interface classes.
145 Not quite statisfied yet, but it's working.
146 o Starting to make an kFileSDF class to access .SDF files
147 SDF = Structure Definition Files - used by PMDF. Contains
148 information about structures (struct _somthing_s).
149 Needs this information for win32k.
150 - Tools\Database:
151 o Recreate makefiles, new style. GD is not compiled any longer.
152 o Addjusted APIImport to fit changes in Tools\Common.
153 - Tools\ImpLib:
154 o Addjusted code to fit changes in Tools\Common.
155
156 2001-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
157 - KERNEL32: o Fix for LoadLibrary(Ex)W. (free must not be called for
158 converted strings; use FreeAsciiString instead)
159 - TOOLS\WRC:o Ported latest wrc. (has proper ascii -> unicode conversion
160 and more features)
161 o Open files in binary mode only; fixes load failures for
162 shell32 icons (newlines were translated; bytes removed from
163 icon data)
164 - DPLAYX: o Compile fixes for header changes.
165 - include\odin.h:
166 o Changes for wrc. It chokes on calling conventions.
167 o Got rid of annoying 'unused struct' warnings
168
169 2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
170 - DSOUND: o Removed pmwinx.lib from makefile. Wasn't used; and it had
171 bad path (ie. no path).
172
173 2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
174 - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
175 (fixes crash in Notepad and possibly solves many other problems)
176 - USER32: o SetCapture change; return immediately when new capture window
177 is the same as old one.
178 (fixes high cpu load in PowerDVD when holding mouse cursor over
179 control window; PM kept sending WM_MOUSEMOVE messages)
180 o Rewrote ClipCursor & GetClipCursor
181 o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
182 flag is changed by the application using SetWindowLong.
183 (fixes Lotus Notes size bar & upper left rectangle painting)
184
185 2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
186 - configure,win32k:
187 o Added option to Configure.cmd, -w, which omittes building
188 of Win32k.sys.
189
190 2001-04-12: Shingo Tsuda <sofiya@din.or.jp>
191 - USER32: o Fixes for DBCS strings
192
193 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
194 - PELDR: o Print module name that contributed to the failure of
195 loading kernel32.
196
197 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
198 - WINMM: o Clean up DirectAudio thread properly.
199
200 2001-04-05: Shingo Tsuda <sofiya@din.or.jp>
201 - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
202 - srclen <= -1 -> calculate length (docs say only for -1)
203 - source and destination pointer can't be the same (as docs also claim)
204 (verified in Windows ME & Windows NT4, SP6)
205
206 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
207 - USER32: o Rewrote ShowCursor
208
209 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
210 - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
211 o lstrcpynWtoA & lstrcpynAtoW fixes
212 o Removed WideCharToLocal & LocalToWideChar
213 - INCLUDE\unicode.h:
214 o AsciiToUnicode* & UnicodeToAscii* functions implemented
215 with functions in heapstring.h
216 - * o Compile fixes due to header changes
217
218 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
219 - DDRAW: o Only reset physical palette in DirectDraw destructor if
220 palette was really changed.
221 (gets rid of excessive screen redraws in DXView)
222 - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
223 o Return GetUserDefaultLangID in GetSystemDefaultLangID
224 o Ported Wine's codepage, string & unicode functions (codepage.cpp)
225 o Ported Wine's codepage unicode conversion functions & tables
226 (kernel32\unicode)
227 o Rewrote string functions (heapstring.cpp) to use new unicode
228 functions.
229 - USER32: o Ported Wine's Char* functions
230 TODO: IsCharAlphaA & IsCharAlphaNumericA
231
232 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
233 - USER32: o Mouse message translation fix (check capture)
234 o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
235 (fixes file dialogs with OFN_ENABLETEMPLATE style)
236 Verified behaviour in NT4, SP6 with DSShow sample
237 - about dialog with DS_CONTROL -> no titlebar
238 - file open dialog without DS_CONTROL -> titlebar + moveable
239 2nd dialog
240 o Temporary workaround for file dialogs with template dialog child.
241 They don't redraw when switching directories. For some reason
242 the new child's (syslistview32) update rectangle stays empty
243 after its parent is made visible with ShowWindow
244 TODO: find real cause
245 - MSACM32: o Ported latest Wine version
246 - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
247 - DDRAW: o Back buffer fix; setup surface descriptor structure and
248 don't clear DDSCAPS_BACKBUFFER flag
249 (fix for WinDVD)
250 o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
251 isn't set.
252 Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
253 (fix for WinDVD)
254 - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
255 correct version of the pe loader (PE/PEC)
256
257 2001-04-02: Michal Necasek <michalnec@volny.cz>
258 - KERNEL32: o Fix for importing from executable
259 (fixes Blade Runner)
260 - TESTAPP\EXCEPTIONS:
261 o Small test apps to test exception handling
262
263 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
264 - WININET: o Added missing exports to wininet.def
265 - KERNEL32: o Removed yesterday's codepage change.
266 (breaks Opera)
267 - WINMM: o Increased nr of DART buffers used for wave playback
268 - ODININST o Moved kernel32 init code into odininst
269 o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
270 registry key with international settings
271 - USER32: o Create dialog controls with CreateWindowExW
272 o Use correct SendMessage(A/W) call during CreateWindow
273
Note: See TracBrowser for help on using the repository browser.