source: trunk/changelog@ 3106

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

* empty log message *

File size: 12.7 KB
RevLine 
[3106]1 /* $Id: changelog,v 1.806 2000-03-13 20:39:39 sandervl Exp $ */
[2659]2
[3106]3 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
4 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
5 i.e. 'c:'; needs to be changed into 'c:\'
6
[3100]7 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
8 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
9 (reported by Yuri Dario)
10 - DSOUND: Replaced dsound by new version
[3102]11 - USER32: Replaced os2.h includes by os2wrap.h
[3104]12 Set message nr, wParam & lParam to 0 for dummy messages
13 (to prevent keyboard or mouse messages swallowed by dinput
14 from being dispatched)
[3102]15 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
[3104]16 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
17 winsock returns WSAEINVAL if size > 64k)
[3100]18
[3097]19 2000-03-12: Michal Necasek <mike@mendelu.cz>
20 - dsound\new: Fixed sound in Heroes of M&M III
21
[3094]22 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
[3100]23 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
[3094]24
[3089]25 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
26 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
27 the toolkit sys\time.h.
28 - TOOLS\BIN: Implemented an optional directory locking in
29 dowithdirs.cmd. (Useful for SMP builds.)
30
[3085]31 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
[3100]32 - OPENGL\GLUT: Fixed compile problems + cleanup
[3089]33 (use C(XX)FLAGS_WIN32APP so you don't have to
[3085]34 explicitely specify which api type you use (ascii or unicode)!)
35
[3100]36 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
37 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
[3085]38
[3080]39 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
40 - OPENGL: Fixed error preventing build to complete
41
[3077]42 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
43 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
[3080]44 Create DDRAW & DSOUND registry keys in InitRegistry
[3077]45 (NOTE: Must be done in install program!)
46 Added some win95 stubs
[3080]47 - GDI32: Added 16 bits device apis stubs
[3077]48
[3073]49 2000-03-10: Michal Necasek <mike@mendelu.cz>
50 - dsound\new: Changed DART buffer size calcualation, hopefully
51 WinAmp will sound better now.
52
53
[3069]54 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
55 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
56 - tools\bin\Exists.cmd: New tool which checks if the file passed in
57 exists. If the file exists it returns 0, else 1. This is
58 used to check if .depend and other files exists in the
59 makefiles. (See pdwin32.post to see how.)
60 - include\pdwin32.post: .depend is only included if it exists. You'll
61 get a warning if it don't, but the makefile works fine.
62 Added a check on OBJDIR not being empty in the clean rule.
63 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
64 OBJDIR is empty.
65 - win32k: Updated makefile with the use of EXISTS for both .depend and
66 makfile.inc. An update check for makefile.inc <-> configure.cmd
67 was also added.
68 Added checks for empty variables in clean rule, and we no longer
69 deletes * in any directory.
70
71 A CVS tip:
72 When new directories are added you have to to a 'cvs checkout .'
73 from the root.
74 A 'cvs update' don't get the new directories it seems
75 (There have been added some dirs under win32k lately so please do this.)
76
[3061]77 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
[3069]78 - KERNEL32: Major rewrite of PE loader classes to correctly support
[3061]79 dll dependencies
80 TODO: Circular dependencies only partly working
[3077]81 (a->b->a works, but a->b->c->a doesn't)
[3069]82 - USER32: Fixed bug in dialog constructor (class name translation)
[3061]83 (only showed up in release build)
[3070]84 Dinput mouse changes/fixes
[3061]85
[3049]86 2000-03-08: Michal Necasek <mike@mendelu.cz>
[3050]87 - dsound\new: Fixed volume and panning calculation that
88 sometimes caused ugly noise
89
90 2000-03-08: Michal Necasek <mike@mendelu.cz>
[3049]91 - dsound\new: Completely new DART-based DirectSound. Works fine
92 for me with Quake 3, Moorhuhn and WinAmp.
93
[3069]94 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3034]95 - makefiles and include\pdwin32.*:
96 * Updated nearly all makefiles to the new makefile style.
97 Win32k, pe2lx and some subdirs of Winmm
98 * Odin32 resource files are now to have the extention .orc
99 All files have, save some under WinMM and in old/new dirs,
100 been renamed. There are now new interference rules in
101 pdwin32.tools which will create the resource assembly and
102 assemble it into an object file. So you simply have to
103 specify the output object file for Odin32 resources along
104 with the other object files.
105 * A little not on forwarders. ILINK returns a warning code of
106 4 when aliases are generated. An errorcode <> 0 stops NMAKE
107 normally. To workaround these problem we simply tell NMAKE to
108 accespt all error codes in the range 0-4. This is done by
109 putting '-4 ' in front of the $(LD2) statement.
110 I don't want to see _any_ '-$(LD2)'!!!
111
112
[3029]113 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
[3049]114 - USER32: Fixed bug in edit control
115 If nyoff > nr lines in control -> bottom line in control
116 window should show last line of control
117 Wine code shows last line at the top of the control
118 (Quake 3 startup edit control shows the problem)
[3029]119
[3034]120 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3025]121 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
122 OS/2 resource compiler and the flags used during compilation.
123 When it comes to linking we should assume NO flags and simply
124 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
125 (See src\kernel32\makefile for an example.)
126
[3022]127 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
128 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
129 error in calling convention prototype in glutint.h
130
[3000]131 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
132 - GLUT32: Added logic to escape from optimizer bug in VACPP
133
[2997]134 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3021]135 - fastdep: Simple preprocessor. Commments and #if 0/1.
[3012]136 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
137 Didn't concider the NODEBUGINFO macro causing daily builds
138 to become enormous. Daily build of 6MB is not good!.
[2997]139 - include\pdwin32.v*.*:
140 *Alternate linker tool, LD2. This is ilink for VAC.
141 (See src\kernel32\makefile for hints how to use it).
142 *Synced configuration for the two VAC versions.
143
144 NOTE that NODEBUGINFO and DEBUGALL is handled within these
145 files. You don't have to test for them to set the correct
146 compiler and linker flags, this is allready done!
147
[2993]148 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
[3022]149 - INCLUDE\pdwin32.tools, pdwin.vac*
[3018]150 Added new build rules (conditional at this time)
151 For each dll a subdir bin\release & bin\debug is created
152 in which the object files of the release & build version
153 are saved.
154 - INCLUDE\pdwin32.post
155 Common makefile rules to be included by all makefiles
[3049]156 - USER32\KERNEL32: Switched to new build rules
157 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
[3017]158 adjusted)
[3049]159 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
[3009]160 Partially fixed destruction of loaded dlls in ExitProcess
161 (TODO: dependencies are not yet right; needs new design)
[3049]162 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
[3009]163 to hmdevio.cpp
[3049]164 - USER32: Pass on keyboard messages if dinput handler returns TRUE
[3009]165 Also send non-client mouse messages to dinput
166 (TODO: always returns true after calling dinput handler)
[3049]167 - OPENGL\GLIDE:
168 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
[3009]169 to hmdevio.cpp (reported by Michal Necasek)
[2993]170
[2991]171 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
[2989]172 - DDRAW: Fixed bug in CreateSurface and QueryInterface
173 (Moorhuhn now starts fine with ddraw)
[2991]174 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
175 in the virtualKeyTable
[2993]176
177 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
[3000]178 - KERNEL32: Create shell dirs in odin\bin directory
[2981]179 Cleanup (never call Open32 apis directly if the proc
180 isn't a wrapper; include win32api.h and call Odin api)
181 Fixed FS corruption for DosAliasMem
[2986]182 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
183 fixup section doesn't start on page boundary)
[3000]184 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
[2981]185 there (importing them directly creates a circular
186 dependency (kernel32->advapi32->kernel32))
187 Should probably be moved to ntdll
[3000]188 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
[2986]189 (Realplayer 7 audio now works (when playing .rm files))
[2981]190
[2980]191 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
[3000]192 - KERNEL32: Fixed calling convention bug in conprop2.cpp
[2980]193 (caused crashes with release build)
194
[2966]195 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
[3000]196 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
197 - OPENGL\MESA: Reapplied TLS fixes
[2975]198 Check for null pointer in wglSetPixelFormat
[3000]199 - OPENGL\MESA\3dfx: Use c files from Mesa dir
[2975]200 Check for null pointer in wglSetPixelFormat
[3000]201 - WINMM: Fixed DartWaveOut::getPosition (overflow)
[2972]202 (fixes mp3 playback in RealPlayer 7)
[3000]203 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
[2974]204 if app wants to change dir to "\")
205 Create shell folders + shell keys
206 (NOTE: This has to be done in the odin install program
207 once we have one)
[3000]208 - ADVAPI32: Added crypt api stubs
[2966]209
[2962]210 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
211 - OPENGL: Implemented DIVE support in Mesa
212
[2957]213 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
[2974]214 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
215 (FindWindowExW was not working correctly either)
216 First send WM_NCACTIVATE, then WM_ACTIVATE
217 Fixed focus problems with Odin apps
218 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
219 WinSetActiveWindow when a user clicks on the titlebar
220 of an inactive window & after sending WM_MOUSEACTIVATE)
221 TODO: Does WinSetActiveWindow work properly or should we
222 always call WinSetFocus???
223 Call Dinput handler when translating mouse & keyboard
224 messages (during Get/PeekMessage)
225 - OPENGL: Always build release version of glide, mesa, glu32 & glut
226 Build mesa software & 3dfx dlls; don't build OS/2 opengl
227 wrapper anymore
228 - OPENGL\GLIDE\CVG\GLIDE:
229 Disable instruction scheduling in release build -> messed up
[3000]230 colors when turned on (most likely VAC optimizer bug)
[2974]231 TODO: Somebody should also check this for the voodoo 1 glide dll.
[3000]232 - OPENGL\GLIDE\CVG:
233 Fixed makefile
234 - OPENGL\MESA\GL\gl.h
235 Removed circular header dependency (breaks build)
236 - OPENGL\MESA\3dfx:
[3049]237 Copy 3dfx opengl32.dll to bin\glide
[2957]238
239 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
[3049]240 - USER32: Fixed dprintf in CreateWindowExW
[3100]241 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
[2957]242
Note: See TracBrowser for help on using the repository browser.