source: trunk/changelog@ 3458

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

* empty log message *

File size: 14.6 KB
Line 
1 /* $Id: changelog,v 1.916 2000-04-29 18:21:59 sandervl Exp $ */
2
3 2000-04-29: Yuri Dario <mc6530@mclink.it>
4 - USER32: Bugfix for owner of windows (set to owner instead of parent now)
5
6 2000-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
7 - USER32/KERNEL32: Added selectable logging for level 2 dprintfs.
8
9 - USER32: Commented out default x & y position code
10 (FCF_SHELLPOSITION no longer works)
11 -> fixes menu & toolbars in MS Word 97
12
13 - KERNEL32: Added windows directory override again
14 (NOTE: for developers *ONLY*; DO NOT USE IT)
15 [DEVDIRECTORIES]
16 WINDOWS=drive:\path
17 Default System directory is kernel32 path
18 (with new install program: x:\odin\system32)
19 Default Windows directory is parent of System Directory
20 (with new install program: x:\odin)
21 NOTE: This assumption could break current installs
22 Will be fixed in upcoming WarpIn installation distributions
23
24 Changed InitSystemAndRegistry:
25 InitSystemAndRegistry creates:
26 - WINDOWSDIR\SYSTEM
27 - WINDOWSDIR\AppData
28 - WINDOWSDIR\Cache
29 - WINDOWSDIR\Cookies
30 - WINDOWSDIR\Desktop
31 - WINDOWSDIR\Favorites
32 - WINDOWSDIR\Fonts
33 - WINDOWSDIR\History
34 - WINDOWSDIR\NetHood
35 - WINDOWSDIR\My Documents
36 - WINDOWSDIR\PrintHood
37 - WINDOWSDIR\Recent
38 - WINDOWSDIR\SendTo
39 - WINDOWSDIR\Start Menu
40 - WINDOWSDIR\Start Menu\Programs
41 - WINDOWSDIR\Start Menu\Programs\Startup
42 - WINDOWSDIR\ShellNew
43 - and a minimal system registry
44
45 - TOOLS\INSTALL: WarpIn install script + small install program
46 that calls kernel32 export (InitSystemAndRegistry)
47
48 - TOOLS\WRC: Forgot to add change in preproc.c (ifdef)
49 (shouldn't really matter though)
50
51 2000-04-27: David Raison <djr@lemur.co.uk>
52 - OLE32/NEW: Work-in-progress on adding apartment handling.
53 Added here for backup until ready for release.
54
55 2000-04-27: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
56 - tools/DailyBuild: Checked in the scripts used for the daily build.
57
58 2000-04-27: Achim Hasenmueller <achimha@innotek.de>
59 - put back new wrc.exe, provide workarounds in
60 header files, old one breaks comdlg32
61 TODO: find bug in new wrc and really fix it
62
63 2000-04-26: David Raison <djr@lemur.co.uk>
64 - INCLUDE/WIN: Added RPC_E_* codes to winerror.h
65 - OLE32: Fixed StringFromGUID2
66
67 2000-04-25: Achim Hasenmueller <achimha@innotek.de>
68 - TOOLS/BIN: put back old wrc.exe from Oct. 99 because the
69 new one has problems with include files...
70
71 2000-04-25: Patrick Haller <phaller@gmx.net>
72 - SHLWAPI: - stubbed all the UrlXXX functions (required for IE4/5 ;-)
73
74 2000-04-23: Sander van Leeuwen <sandervl@xs4all.nl>
75 - GDI32: Dib section blit fix (missing pixels)
76 - WSOCK32: Don't send FD_CLOSE message when select returns
77 and there's no data available (recv in another thread
78 might have taken that data before the ioctl call in
79 the WSAAsyncSelect thread is executed)
80 -> fixes lost connections in RealPlayer 7
81
82 2000-04-19: Patrick Haller <phaller@gmx.net>
83 - INCLUDE/PDWIN32.TOOLS: fix build rule for (old) .asm sources
84
85 2000-04-19: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
86 - KERNEL32: Added fix for bug in FP13 DosQuerySysInfo.
87 Win32k/Pe2Lx loaded files didn't work.
88 Corrected TLS handling for Borland.
89
90 2000-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
91 - TOOLS\WRC: Resync with latest Wine wrc + added code to produce
92 masm compatible assembly (for some reason removed from
93 wrc some time ago)
94 -> fixes file open dialog (nothing painted)
95 - COMCTL32: Check for NULL pointers before freeing memory
96 (toolbar; removes some warnings from the logfiles)
97
98 2000-04-18: Sander van Leeuwen <sandervl@xs4all.nl>
99 - USER32: Added LR_LOADFROMFILE support for icon & cursor loading
100 - GDI32: Dib section fixes (use height/width of window when
101 dc belongs to a window; use correct stretchblit mode)
102 - TOOLS\REGEDIT: Added regedit command line tool (ported this from
103 Wine with some modifications & bug fixes)
104 - KERNEL32: Also set FPU control word to 0x27f before calling thread
105 functions (just to be sure)
106
107 2000-04-16: Christoph Bratschi <cbratschi@datacomm.ch>
108 - COMCTL32: added new resources: i.e. header cursors
109 changed file version to 5.80 (IE5, Win2k)
110 implemented missing listview messages, implemented some
111 extended styles
112
113 2000-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
114 - KERNEL32: Put back dll search method, fixed bug in LoadLibraryEx
115 (no return after error detection)
116 Set FPU control word to 0x27F before calling exe entrypoint
117 (fixes some FPU exception problems in RealPlayer 7)
118
119 2000-04-16: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
120 - KERNEL32: Reorganized/reworte LoadLibrary/LoadLibraryEx code.
121 isPEImage was changed to return 1 if DLL and 2 if EXE.
122 (It still returns FALSE if not valid PE image.)
123
124 - include\odin32validate.h:
125 New header file. Parameter validation macros.
126 - KERNEL32: Before reading Sanders last message I had rewritten most of
127 the findDll function. So, as my implementation seems a bit
128 more flexible I decided to commit it.
129 Currently it's searching the three LIBPATH paths too. If
130 this causes any real trouble we'll disable this.
131
132 findDll now returns TRUE if a file were found. Callers are
133 corrected to test for this.
134
135 2000-04-15: Christoph Bratschi <cbratschi@datacomm.ch>
136 - COMCTL32: rewrote listview item handling: sort bug fix,
137 allows >= 4.70 support
138 implemented several new messages
139
140 2000-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
141 - WSOCK32: Async select fix (VPBuddy can connect again)
142 - KERNEL32: Remove terminating backslash in FindFirstFileA (if present)
143 (otherwise DosFindFirst fails)
144 Fixed flushing of file maps (wrong VirtualQuery parameter)
145 Path search fix for dlls
146 Dll search order:
147 1) exe dir
148 2) current dir
149 3) windows system dir (kernel32 path)
150 4) windows dir
151 5) path environment variable
152
153 - ODINCRT: Added checks for failing mallocs
154 - USER32: Corrected return value of EnableWindow
155 Send WM_CANCELMODE message when disabling window
156 (return true if previous state was disabled, else false (sdk docs))
157 Don't send mouse messages to disabled windows; reroute
158 them to their parent windows (if any)
159
160 2000-04-14: Sander van Leeuwen <sandervl@xs4all.nl>
161 - KERNEL32: Hardcoded system & windows dir
162 system dir = kernel32 dir
163 windows dir = kernel32 dir\win
164 Fixed dll attach for pe2lx/win32k & lx Odin executables
165 Command line fixes (now starts with full path of exe)
166 Search for dlls in:
167 1) current dir
168 2) win32 exe dir
169 3) windows system dir
170 4) path
171 Append backslash if GetFileAttributes fails (and it's missing
172 from the filename)
173 - PELDR/KERNEL32: Fixed starting of executable with spaces in name
174 (might not be 100% complete yet)
175 Fixes for relative path of executable
176 - ODIN.INI.TXT: Removed DIRECTORIES section
177
178 2000-04-13: Sander van Leeuwen <sandervl@xs4all.nl>
179 - USER32: Set thread message structure to 0 before dispatching it
180 Prevents app from sending the same posted message twice
181 (causing problems when freeing the postmsg struct)
182 (fixes RealPlayer 7 Update service)
183 - CRTDLL: Fixed div (result must be returned in edx:eax)
184 - PE: Check PATH for executable file
185
186 2000-04-12: Christoph Bratschi <cbratschi@datacomm.ch>
187 - COMCTL32: listview: completed most version 4 features
188
189 2000-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
190 - USER32: Added support for topmost windows
191
192 2000-04-10: David Raison <djr@lemur.co.uk>
193 - COMDLG32: fixed wrong lParam in file dialog
194
195 2000-04-09: Sander van Leeuwen <sandervl@xs4all.nl>
196 - GDI32: Y inversion fix for dib sections blits
197 - WINMM: GetPosition fix (don't return 0 when stream not active)
198 - KERNEL32: Fixed OSLibDosFindFirst. Return error if First DosFirstFirst
199 fails. (fixes RealPlayer 7 install)
200
201 2000-04-09: Yuri Dario <mc6530@mclink.it>
202 - INCLUDE(\WIN):
203 - odin.h: define NONAMELESSUNION only for VA3.0 (now works with VA4);
204 remove buildin.h when invoked from resource compiler.
205 - commctrl.h: new macros
206 - mmsystem.h: define DUMMYUNIONNAME with same code used in other
207 headers to avoid precompiling errors.
208 - shlguid.h: missing ID
209 - shlobj.h: missing shlguid.h include
210 - windows.h: define CINTERFACE only for C compilers or VA3.x
211 - windowsx.h: macros
212 - wingdi.h: few AW defines
213 - winuser.h: new macros
214
215 2000-04-08: Christoph Bratschi <cbratschi@datacomm.ch>
216 - COMCTL32: added new styles and functionality, bug fixes
217
218 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl>
219 - WINMM: Restart, pause & underrun fixes
220 - KERNEL32: Fixed bug in CompareStringW. Unicode conversion was
221 causing heap corruption. (RealPlayer 7 crashes)
222
223 2000-04-07: Michal Necasek <mike@mendelu.cz>
224 - DDRAW\NEW: Experimental fullscreen DDraw, VIDEOPMI based.
225 May not work with all video cards and may cause all
226 kinds of trouble. But works swell for eg. Fallout 1/2
227 or HMM3. Contains some extra bugs compared to the
228 windowed DDraw, ie. Moorhuhn and others don't work
229 with it at all. Please tell me about your experience
230 with this shameless hack.
231
232 2000-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
233 - WINMM: Don't restart when already playing
234 - USER32: Print mark in debug log with WriteLog (#ifdef DEBUG), not dprintf
235 Workaround for paint problems in RealPlayer 7 Update 1.
236 (don't clip the dc with a region in DoNCPaint if the clip
237 region has the same size as the window; doing so creates
238 update problems for no obvious reason)
239 - GDI32: Only change bitmap size in SetDIBitsToDevice if bitmap
240 is not compressed. (fixes crash during startup in Excel)
241 NOTE: Open32 doesn't implement compression type conversion
242 correctly. (black splash screen for RLE8 bitmap)
243 - KERNEL32: Return length of windows or system directory when
244 GetWindowsDirectory/GetSystemDirectory is called with
245 a NULL pointer
246
247 2000-04-07: David Raison <djr@lemur.co.uk>
248 - USER32: Set lfSmCaptionFont structure in NONCLIENTMETRICSA
249 (SystemParametersInfoA/SPI_GETNONCLIENTMETRICS)
250
251 2000-04-07: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
252 - TOOLS\DBGINFO: Sym2Hll is now able to convert .SYM files into HLL
253 debuginfo and add it to LX executables. This might be
254 quite useful if you want to see system DLL while debugging.
255 But before you add debuginfo to all dll's in c:\os2\dll
256 I have to warn that this is _very_ alpha software. Do always
257 make a backup (Sym2Hll don't create backups!) and have
258 recovery boot disks ready!
259
260 2000-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
261 - WINMM: Fixed message callback once more (previous fix broke rp7)
262 Fixed restart
263
264 2000-04-08: Michal Necasek <mike@mendelu.cz>
265 - WINMM: Moved phwo == NULL check below format query handling.
266 (enables sound in Jack Jazzrabbit; still not right though)
267
268 2000-04-05: David Raison <djr@lemur.co.uk>
269 - OLEAUT32: Turned default DEBUG-info down.
270
271 2000-04-05: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
272 - Win32k: Added fixpack 13 symbols to the symbol database.
273 Using win32k.sys with fp13 works fine here.
274
275 2000-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
276 - WINMM: Smallest waveout buffer size = 128 bytes
277 Fixed callback bugs (reported by Michal Necasek)
278
279 2000-04-03: David Raison <djr@lemur.co.uk>
280 - OLE32: Added CoCreateGUID (calls RPCRT4.UuidCreate)
281 - RPCRT4: Beginning of new dll:
282 RpcStringFreeA, RpcStringFreeW, UuidCompare
283 UuidCreate, UuidCreateNil, UuidEqual
284 UuidFromStringA, UuidFromStringW, UuidHash
285 UuidIsNil, UuidToStringA, UuidToStringW
286
287 2000-04-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
288 - SHELL32: don't sort files case sensitive
289
290 2000-04-02: Christoph Bratschi <cbratschi@datacomm.ch>
291 - KERNEL32: FindFirst: don't return "." and ".." in root
292 wrote long to short name conversion
293 added error code converter
294 - USER32: removed 'What You See Is What You Get On First Of April'
295
296 2000-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
297 - USER32: dc.cpp cleanup
298 - GDI32: Dib section sync bugfix (todo: rgb 565 to 555 conversion if bpp == 16)
299 Set y inversion to 0 if dib section isn't flipped
300 (fixes upside down flash videos in RealPlayer 7)
301 - WINMM: Faked mixer apis
302
303 2000-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
304 - GDI32: Fixed dibsection bitblits. (wrong updates of realplayer 7
305 videos)
306
307 2000-04-01: Christoph Bratschi <cbratschi@datacomm.ch>
308 - USER32: added WYSIWYGOFOA interface
309
310 2000-04-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
311 - USER32: Fixed track frame width & height (now you can actually
312 see the tracking frame when moving a window)
313
Note: See TracBrowser for help on using the repository browser.