1 | /* $Id: changelog,v 1.1052 2000-08-06 14:38:33 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - doc\ReportingBugs.txt:
|
---|
5 | Added a little more information
|
---|
6 | - tools\install
|
---|
7 | Add Logging.txt + symbol files to debug build.
|
---|
8 |
|
---|
9 | 2000-08-06: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
|
---|
10 | - COMCTL32: Updated toolbar to Wine 20000801 (tooltips + toolbar)
|
---|
11 |
|
---|
12 | 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
13 | - KERNEL32: Temporary workaround for differences in share mode between
|
---|
14 | OS/2 & NT (for opening the same file multiple times):
|
---|
15 | NT: CreateFile with FILE_SHARE_READ
|
---|
16 | CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
|
---|
17 | -> 2nd CreateFile overrides share flags of first one
|
---|
18 | -> CreateFile with GENERIC_WRITE is now allowed
|
---|
19 | OS2: DosOpen with OPEN_SHARE_DENYWRITE
|
---|
20 | DosOpen with OPEN_SHARE_DENYNONE
|
---|
21 | -> sharing violation; can't change share flags while
|
---|
22 | handle returned by 1st DosOpen isn't closed
|
---|
23 | --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
|
---|
24 | (several installation programs depend on this behaviour)
|
---|
25 |
|
---|
26 | 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
27 | - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
|
---|
28 | directories in odininst.exe + extra registry keys:
|
---|
29 | [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
|
---|
30 | "ProgramFilesDir"="x:\Program Files"
|
---|
31 | "CommonFilesDir"="x:\Program Files\Common Files"
|
---|
32 | "SharedDir"="x:\Odin"
|
---|
33 | - COMCTL32: Fixed property page bugfix (wrong position) (by merging
|
---|
34 | latest PROPSHEET_ShowPage from Wine)
|
---|
35 | - DOC\ToDo.txt:
|
---|
36 | Added:
|
---|
37 | KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
|
---|
38 | (some applications use the handles as pointers)
|
---|