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