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