source: trunk/changelog@ 3200

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

* empty log message *

File size: 19.1 KB
Line 
1 /* $Id: changelog,v 1.830 2000-03-22 20:12:07 sandervl Exp $ */
2
3 2000-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
4 - WSOCK32\NEW: Completely rewritten (removed dependancy on pmwsock)
5 Untested and unfinished (WSAAsyncSelect)
6
7 2000-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
8 - GDI32: Added RGB 555 to 565 conversion in dibsection blit.
9 (fixes wrong colors in RealPlayer 7 Update 1 (rm videos
10 only))
11 - include\odinwrap.h: Disable heap checking by default for debug
12 build -> kills performance!
13
14 2000-03-21: Edgar Buerkle <Edgar.Buerkle@gmx.net>
15 - MSVCRT: Adding logging statement to _EH_prolog
16
17 2000-03-21: Christoph Bratschi <cbratschi@datacomm.ch>
18 - COMCTL32: optimized header/treeview for AMD cpuid
19 fixed dispinfo callbacks
20 reduced listview redraws
21 fixed wrong ASCII definitions in commctrl.h
22
23 2000-03-20: David Raison <djr@lemur.co.uk>
24 - OLE32: Ported OleQueryCreateFromData, OleCreateFromData from
25 wine/corel sources.
26 - OLEAUT32: Bugfix in ITypeLibImpl_GetDocumentation
27
28 2000-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
29 - WSOCK32: Fixed relay bug in WSAAsyncSelect (delete relay slot
30 with same socket nr & window handle; there can
31 be more selects per window)
32
33 2000-03-19: David Raison <djr@lemur.co.uk>
34 - OLE32: Bugfixes.
35 Ported changes from wine/corel sources.
36 Created ReadClassStm, WriteClassStm, ProgIDFromCLSID
37
38 2000-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
39 - ODINCRT: Fixed FS wrapper for _fdopen & others in file.cpp
40 (missing SetFS)
41
42 2000-03-19: Michal Necasek <mike@mendelu.cz>
43 - DINPUT: Few fixes, now Fallout 1/2 almost works
44
45 2000-03-18: Michal Necasek <mike@mendelu.cz>
46 - DDRAW: Fixed messed up DPA callback calling convention
47 Added some transparent blit code which was
48 mysteriously missing
49
50 2000-03-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
51 - MSVCRT: Implemented _EH_prolog
52
53 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch>
54 - USER32: merged with Corel WINE 20000317
55 added GCL_HICONSM support
56 fixed messagebox with no icon
57 - COMCTL32: merged with Corel WINE 20000317 + bug fixes
58
59 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
60 - ODINCRT: Added FS wrapper for _fdopen
61 (fixes crash at exit in Professional MineSweeper when
62 selection About Odin from the system menu)
63
64 2000-03-17: Christoph Bratschi <cbratschi@datacomm.ch>
65 - COMCTL32: fixed trackbar buddy alignment
66 added useful internal tooltip styles
67
68 2000-03-17: Sander van Leeuwen <sandervl@xs4all.nl>
69 - WSOCK32: Semaphore protection for relay slot alloc/free
70 Fixed bug in WSAAsyncSelect. Allow more than one
71 async call per window for RelayAlloc call. If it's not
72 alloced, pmwsock will return an error. Previously it was
73 overwriting slots for other async calls. (WSAAsyncGetHostName
74 in RealPlayer 7)
75 - KERNEL32: Fixed handle creation for thread 0.
76
77 2000-03-16: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
78 - TOOLS\FASTDEP:
79 Speed optimizations: using AVL trees, include dir caching,
80 dependencies stored in AVL tree until all files has been
81 processes, buffered write.
82 Cyclic dependency check.
83 All files but the objectfiles now should have fully qualified paths.
84
85 - INCLUDE\PDWIN32.TOOLS:
86 DEPEND: Enabled cyclic check.
87
88 2000-03-16: Sander van Leeuwen <sandervl@xs4all.nl>
89 - USER32: Fixed virtual keycode of return key
90 TODO: Not done for all keys. Should probably looks at the
91 scancode (not virtual char) to translate keys.
92 - GDI32: RP7 calls CreateDIBSection with HDC 0; Call
93 GetWindowDC(GetDesktopWindow()) in that case
94 -> fixes crash (result of CreateDIBSection failure)
95 TODO: Looks like this is allowed in NT, but need to check
96 this to be sure nothing else caused this problem.
97 (Note: most recent RealPlayer 7 version only)
98 - KERNEL32: Semaphore protection of handle alloc
99 Added handlemanager class for thread handles
100 Added workaround for Open32 WaitForSingleObject bug
101 (if thread is terminated and WaitForSingleObject is
102 called with the thread's handle -> never returns
103 (new rp7 hang at exit))
104 TODO: WaitForMultipleObjects can still hang ->
105 Event, semaphore, mutex & wait apis need to
106 be redesigned (not using Open32)
107
108 2000-03-14: Christoph Bratschi <cbratschi@datacomm.ch>
109 - USER32: implemented much faster LB_SETCOUNT
110
111 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
112 - USER32: Put back check (oldsel == newsel) in LISTBOX_SetSelection
113 (why was this commented out?)
114 Fixed combobox: Clear CBF_SELCHANGE flag before calling
115 CBUpdateEdit
116 Don't send CBN_EDITUPDATE when CBF_NOEDITNOTIFY
117 flag is set (by combo_handletext)
118 -> fixes infinite loops in RealPlayer 7 (type name of file
119 previously used in edit box; last letter entered -> crash)
120 AdjustWindowRectEx bugfix (reported by Robert Lalla)
121 Don't clear WS_POPUP flag. (HAS_THINFRAME depends on it)
122 -> fixes wrong resolution changes in Quake 2
123 Don't clear WS_CHILD flag either. (HAS_THICKFRAME depends on it)
124
125 - KERNEL32: Clear FILE_SHARE_DELETE flag before calling Open32's
126 CreateFile. (otherwise it fails) -> fixes RealPlayer 7
127 Basic (new update).
128
129 - WSOCK32: Changed workaround for setsockopt bug (SO_SNDBUF/SO_RCVBUF (OS/2's
130 winsock returns WSAEINVAL if size > 64k))
131 Only change size if setsockopt returns WSAINVAL (32 bits stack
132 should support size > 64 kb (?))
133 Added selective logging feature.
134
135 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
136 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
137 i.e. 'c:'; needs to be changed into 'c:\'
138
139 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
140 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
141 (reported by Yuri Dario)
142 - DSOUND: Replaced dsound by new version
143 - USER32: Replaced os2.h includes by os2wrap.h
144 Set message nr, wParam & lParam to 0 for dummy messages
145 (to prevent keyboard or mouse messages swallowed by dinput
146 from being dispatched)
147 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
148 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
149 winsock returns WSAEINVAL if size > 64k)
150
151 2000-03-12: Michal Necasek <mike@mendelu.cz>
152 - dsound\new: Fixed sound in Heroes of M&M III
153
154 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
155 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
156
157 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
158 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
159 the toolkit sys\time.h.
160 - TOOLS\BIN: Implemented an optional directory locking in
161 dowithdirs.cmd. (Useful for SMP builds.)
162
163 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
164 - OPENGL\GLUT: Fixed compile problems + cleanup
165 (use C(XX)FLAGS_WIN32APP so you don't have to
166 explicitely specify which api type you use (ascii or unicode)!)
167
168 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
169 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
170
171 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
172 - OPENGL: Fixed error preventing build to complete
173
174 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
175 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
176 Create DDRAW & DSOUND registry keys in InitRegistry
177 (NOTE: Must be done in install program!)
178 Added some win95 stubs
179 - GDI32: Added 16 bits device apis stubs
180
181 2000-03-10: Michal Necasek <mike@mendelu.cz>
182 - dsound\new: Changed DART buffer size calcualation, hopefully
183 WinAmp will sound better now.
184
185 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
186 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
187 - tools\bin\Exists.cmd: New tool which checks if the file passed in
188 exists. If the file exists it returns 0, else 1. This is
189 used to check if .depend and other files exists in the
190 makefiles. (See pdwin32.post to see how.)
191 - include\pdwin32.post: .depend is only included if it exists. You'll
192 get a warning if it don't, but the makefile works fine.
193 Added a check on OBJDIR not being empty in the clean rule.
194 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
195 OBJDIR is empty.
196 - win32k: Updated makefile with the use of EXISTS for both .depend and
197 makfile.inc. An update check for makefile.inc <-> configure.cmd
198 was also added.
199 Added checks for empty variables in clean rule, and we no longer
200 deletes * in any directory.
201
202 A CVS tip:
203 When new directories are added you have to to a 'cvs checkout .'
204 from the root.
205 A 'cvs update' don't get the new directories it seems
206 (There have been added some dirs under win32k lately so please do this.)
207
208 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
209 - KERNEL32: Major rewrite of PE loader classes to correctly support
210 dll dependencies
211 TODO: Circular dependencies only partly working
212 (a->b->a works, but a->b->c->a doesn't)
213 - USER32: Fixed bug in dialog constructor (class name translation)
214 (only showed up in release build)
215 Dinput mouse changes/fixes
216
217 2000-03-08: Michal Necasek <mike@mendelu.cz>
218 - dsound\new: Fixed volume and panning calculation that
219 sometimes caused ugly noise
220
221 2000-03-08: Michal Necasek <mike@mendelu.cz>
222 - dsound\new: Completely new DART-based DirectSound. Works fine
223 for me with Quake 3, Moorhuhn and WinAmp.
224
225 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
226 - makefiles and include\pdwin32.*:
227 * Updated nearly all makefiles to the new makefile style.
228 Win32k, pe2lx and some subdirs of Winmm
229 * Odin32 resource files are now to have the extention .orc
230 All files have, save some under WinMM and in old/new dirs,
231 been renamed. There are now new interference rules in
232 pdwin32.tools which will create the resource assembly and
233 assemble it into an object file. So you simply have to
234 specify the output object file for Odin32 resources along
235 with the other object files.
236 * A little not on forwarders. ILINK returns a warning code of
237 4 when aliases are generated. An errorcode <> 0 stops NMAKE
238 normally. To workaround these problem we simply tell NMAKE to
239 accespt all error codes in the range 0-4. This is done by
240 putting '-4 ' in front of the $(LD2) statement.
241 I don't want to see _any_ '-$(LD2)'!!!
242
243
244 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
245 - USER32: Fixed bug in edit control
246 If nyoff > nr lines in control -> bottom line in control
247 window should show last line of control
248 Wine code shows last line at the top of the control
249 (Quake 3 startup edit control shows the problem)
250
251 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
252 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
253 OS/2 resource compiler and the flags used during compilation.
254 When it comes to linking we should assume NO flags and simply
255 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
256 (See src\kernel32\makefile for an example.)
257
258 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
259 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
260 error in calling convention prototype in glutint.h
261
262 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
263 - GLUT32: Added logic to escape from optimizer bug in VACPP
264
265 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
266 - fastdep: Simple preprocessor. Commments and #if 0/1.
267 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
268 Didn't concider the NODEBUGINFO macro causing daily builds
269 to become enormous. Daily build of 6MB is not good!.
270 - include\pdwin32.v*.*:
271 *Alternate linker tool, LD2. This is ilink for VAC.
272 (See src\kernel32\makefile for hints how to use it).
273 *Synced configuration for the two VAC versions.
274
275 NOTE that NODEBUGINFO and DEBUGALL is handled within these
276 files. You don't have to test for them to set the correct
277 compiler and linker flags, this is allready done!
278
279 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
280 - INCLUDE\pdwin32.tools, pdwin.vac*
281 Added new build rules (conditional at this time)
282 For each dll a subdir bin\release & bin\debug is created
283 in which the object files of the release & build version
284 are saved.
285 - INCLUDE\pdwin32.post
286 Common makefile rules to be included by all makefiles
287 - USER32\KERNEL32: Switched to new build rules
288 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
289 adjusted)
290 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
291 Partially fixed destruction of loaded dlls in ExitProcess
292 (TODO: dependencies are not yet right; needs new design)
293 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
294 to hmdevio.cpp
295 - USER32: Pass on keyboard messages if dinput handler returns TRUE
296 Also send non-client mouse messages to dinput
297 (TODO: always returns true after calling dinput handler)
298 - OPENGL\GLIDE:
299 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
300 to hmdevio.cpp (reported by Michal Necasek)
301
302 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
303 - DDRAW: Fixed bug in CreateSurface and QueryInterface
304 (Moorhuhn now starts fine with ddraw)
305 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
306 in the virtualKeyTable
307
308 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
309 - KERNEL32: Create shell dirs in odin\bin directory
310 Cleanup (never call Open32 apis directly if the proc
311 isn't a wrapper; include win32api.h and call Odin api)
312 Fixed FS corruption for DosAliasMem
313 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
314 fixup section doesn't start on page boundary)
315 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
316 there (importing them directly creates a circular
317 dependency (kernel32->advapi32->kernel32))
318 Should probably be moved to ntdll
319 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
320 (Realplayer 7 audio now works (when playing .rm files))
321
322 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
323 - KERNEL32: Fixed calling convention bug in conprop2.cpp
324 (caused crashes with release build)
325
326 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
327 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
328 - OPENGL\MESA: Reapplied TLS fixes
329 Check for null pointer in wglSetPixelFormat
330 - OPENGL\MESA\3dfx: Use c files from Mesa dir
331 Check for null pointer in wglSetPixelFormat
332 - WINMM: Fixed DartWaveOut::getPosition (overflow)
333 (fixes mp3 playback in RealPlayer 7)
334 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
335 if app wants to change dir to "\")
336 Create shell folders + shell keys
337 (NOTE: This has to be done in the odin install program
338 once we have one)
339 - ADVAPI32: Added crypt api stubs
340
341 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
342 - OPENGL: Implemented DIVE support in Mesa
343
344 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
345 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
346 (FindWindowExW was not working correctly either)
347 First send WM_NCACTIVATE, then WM_ACTIVATE
348 Fixed focus problems with Odin apps
349 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
350 WinSetActiveWindow when a user clicks on the titlebar
351 of an inactive window & after sending WM_MOUSEACTIVATE)
352 TODO: Does WinSetActiveWindow work properly or should we
353 always call WinSetFocus???
354 Call Dinput handler when translating mouse & keyboard
355 messages (during Get/PeekMessage)
356 - OPENGL: Always build release version of glide, mesa, glu32 & glut
357 Build mesa software & 3dfx dlls; don't build OS/2 opengl
358 wrapper anymore
359 - OPENGL\GLIDE\CVG\GLIDE:
360 Disable instruction scheduling in release build -> messed up
361 colors when turned on (most likely VAC optimizer bug)
362 TODO: Somebody should also check this for the voodoo 1 glide dll.
363 - OPENGL\GLIDE\CVG:
364 Fixed makefile
365 - OPENGL\MESA\GL\gl.h
366 Removed circular header dependency (breaks build)
367 - OPENGL\MESA\3dfx:
368 Copy 3dfx opengl32.dll to bin\glide
369
370 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
371 - USER32: Fixed dprintf in CreateWindowExW
372 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
373
Note: See TracBrowser for help on using the repository browser.