[3977] | 1 | /* $Id: changelog,v 1.1058 2000-08-10 02:26:01 phaller Exp $ */
|
---|
[2659] | 2 |
|
---|
[3976] | 3 | 2000-08-10: Patrick Haller <phaller@gmx.net>
|
---|
| 4 | - KERNEL32: OSLibDosQueryVolumeFS does no more return an error if
|
---|
| 5 | the caller is not interested in the volume name.
|
---|
| 6 | Console Input handling improved, some correction.
|
---|
[3977] | 7 | SetConsoleTitleW fixed.
|
---|
[3976] | 8 | NOTE! lstrcpynAtoW and lstrcpynWtoA do no more enforce (erroneous)
|
---|
| 9 | string termination.
|
---|
| 10 | NT4's CMD.EXE is quite working now.
|
---|
| 11 |
|
---|
[3974] | 12 | 2000-08-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 13 | - KERNEL32: TLS changes (now updates THDB array instead of calling
|
---|
| 14 | Open32)
|
---|
| 15 |
|
---|
[3973] | 16 | 2000-08-09: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 17 | - COMCTL32: added language dependent resources
|
---|
| 18 |
|
---|
[3971] | 19 | 2000-08-08: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 20 | - COMCTL32: first part of Corel WINE 20000807 changes
|
---|
| 21 |
|
---|
[3959] | 22 | 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 23 | - doc\ReportingBugs.txt:
|
---|
| 24 | Added a little more information
|
---|
| 25 | - tools\install
|
---|
| 26 | Add Logging.txt + symbol files to debug build.
|
---|
| 27 |
|
---|
[3949] | 28 | 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 29 | - KERNEL32: Temporary workaround for differences in share mode between
|
---|
| 30 | OS/2 & NT (for opening the same file multiple times):
|
---|
| 31 | NT: CreateFile with FILE_SHARE_READ
|
---|
| 32 | CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
|
---|
| 33 | -> 2nd CreateFile overrides share flags of first one
|
---|
| 34 | -> CreateFile with GENERIC_WRITE is now allowed
|
---|
| 35 | OS2: DosOpen with OPEN_SHARE_DENYWRITE
|
---|
| 36 | DosOpen with OPEN_SHARE_DENYNONE
|
---|
| 37 | -> sharing violation; can't change share flags while
|
---|
| 38 | handle returned by 1st DosOpen isn't closed
|
---|
| 39 | --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
|
---|
| 40 | (several installation programs depend on this behaviour)
|
---|
| 41 |
|
---|
[3909] | 42 | 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 43 | - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
|
---|
| 44 | directories in odininst.exe + extra registry keys:
|
---|
| 45 | [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
|
---|
| 46 | "ProgramFilesDir"="x:\Program Files"
|
---|
| 47 | "CommonFilesDir"="x:\Program Files\Common Files"
|
---|
| 48 | "SharedDir"="x:\Odin"
|
---|
[3911] | 49 | - COMCTL32: Fixed property page bugfix (wrong position) (by merging
|
---|
| 50 | latest PROPSHEET_ShowPage from Wine)
|
---|
| 51 | - DOC\ToDo.txt:
|
---|
[3895] | 52 | Added:
|
---|
[3909] | 53 | KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
|
---|
| 54 | (some applications use the handles as pointers)
|
---|