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