1 | /* $Id: changelog,v 1.1069 2000-08-14 19:17:03 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2000-08-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - KERNEL32: Fixed sharing violation errors in OSLibDosCreateFile
|
---|
5 | (FILE_SHARE_DELETE now included in share flag var)
|
---|
6 | (fixes error messages when playing files in RealPlayer 7)
|
---|
7 | TLS fix in PE loader (no .tls section, but valid tls image directory)
|
---|
8 |
|
---|
9 | 2000-08-13: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
10 | - COMCTL32: added propsheet, treeview Corel WINE 20000807 changes
|
---|
11 | - GDI32: activated WinDrawText code
|
---|
12 |
|
---|
13 | 2000-08-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
14 | - KERNEL32: Do not set OPEN_ACCESS_READWRITE flag in OSLibDosCreateFile
|
---|
15 | (if OPEN_ACTION_CREATE_IF_NEW & readonly access)
|
---|
16 | This was causing access denied errors (using FILE_SHARE_WRITE
|
---|
17 | on a file on a readonly volume was not causing this; that's allowed)
|
---|
18 | Removed share mode hack. Caused by the bug mentioned above.
|
---|
19 | (You can change the file sharing mode when opening the same
|
---|
20 | file several times in OS/2)
|
---|
21 | Fixed system dll unload bug.
|
---|
22 | Extra checks in Win32ImageBase::isPEImage (nr of bytes read is correct or not)
|
---|
23 |
|
---|
24 | 2000-08-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
25 | - KERNEL32: Lock/Unlock
|
---|
26 | 64 bits values are only supported by JFS
|
---|
27 | Try the 32 bits DosSetFileLocks if it fails with ERROR_INVALID_PARAMETER
|
---|
28 | (TODO: should check the partition type instead)
|
---|
29 | Build fake dll header for system dlls and use it's address
|
---|
30 | as instance handle.
|
---|
31 | VIRTUAL_MapFileA/W: open file in share read/write mode
|
---|
32 | Fixed HMDuplicateHandle (check for DUPLICATE_ACCESS_READWRITE)
|
---|
33 | LoadLibraryExA: if dll name = executable name of current process
|
---|
34 | -> return handle of exe
|
---|
35 | (GrandPrix 3 installer does this; verified in NT)
|
---|
36 | FreeLibrary: if handle = exe handle of current process -> ignore
|
---|
37 | - SRC\*\initterm.cpp
|
---|
38 | Changed RegisterLxDll call for fake headers.
|
---|
39 | - INCLUDE\misc.h:
|
---|
40 | Removed versionos2.h dependancy
|
---|
41 | - VERSION\version.cpp
|
---|
42 | Include versionos2.h
|
---|
43 | - COMCTL32: Put back old property page code (breaks VPBuddy preferences
|
---|
44 | dialog). SameTime install property sheet now messed up (again).
|
---|
45 |
|
---|
46 | 2000-08-10: Patrick Haller <phaller@gmx.net>
|
---|
47 | - KERNEL32: OSLibDosQueryVolumeFS does no more return an error if
|
---|
48 | the caller is not interested in the volume name.
|
---|
49 | Console Input handling improved, some correction.
|
---|
50 | SetConsoleTitleW fixed.
|
---|
51 | NOTE! lstrcpynAtoW and lstrcpynWtoA do no more enforce (erroneous)
|
---|
52 | string termination.
|
---|
53 | NT4's CMD.EXE is quite working now.
|
---|
54 |
|
---|
55 | 2000-08-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
56 | - KERNEL32: TLS changes (now updates THDB array instead of calling
|
---|
57 | Open32)
|
---|
58 |
|
---|
59 | 2000-08-09: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
60 | - COMCTL32: added language dependent resources
|
---|
61 |
|
---|
62 | 2000-08-08: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
63 | - COMCTL32: first part of Corel WINE 20000807 changes
|
---|
64 |
|
---|
65 | 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
66 | - doc\ReportingBugs.txt:
|
---|
67 | Added a little more information
|
---|
68 | - tools\install
|
---|
69 | Add Logging.txt + symbol files to debug build.
|
---|
70 |
|
---|
71 | 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
72 | - KERNEL32: Temporary workaround for differences in share mode between
|
---|
73 | OS/2 & NT (for opening the same file multiple times):
|
---|
74 | NT: CreateFile with FILE_SHARE_READ
|
---|
75 | CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
|
---|
76 | -> 2nd CreateFile overrides share flags of first one
|
---|
77 | -> CreateFile with GENERIC_WRITE is now allowed
|
---|
78 | OS2: DosOpen with OPEN_SHARE_DENYWRITE
|
---|
79 | DosOpen with OPEN_SHARE_DENYNONE
|
---|
80 | -> sharing violation; can't change share flags while
|
---|
81 | handle returned by 1st DosOpen isn't closed
|
---|
82 | --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
|
---|
83 | (several installation programs depend on this behaviour)
|
---|
84 |
|
---|
85 | 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
86 | - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
|
---|
87 | directories in odininst.exe + extra registry keys:
|
---|
88 | [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
|
---|
89 | "ProgramFilesDir"="x:\Program Files"
|
---|
90 | "CommonFilesDir"="x:\Program Files\Common Files"
|
---|
91 | "SharedDir"="x:\Odin"
|
---|
92 | - COMCTL32: Fixed property page bugfix (wrong position) (by merging
|
---|
93 | latest PROPSHEET_ShowPage from Wine)
|
---|
94 | - DOC\ToDo.txt:
|
---|
95 | Added:
|
---|
96 | KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
|
---|
97 | (some applications use the handles as pointers)
|
---|