[4036] | 1 | /* $Id: changelog,v 1.1074 2000-08-18 18:17:58 sandervl Exp $ */
|
---|
[2659] | 2 |
|
---|
[4036] | 3 | 2000-08-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - GDI32: Added support for level 2 debug logging
|
---|
| 5 | Ported Wine's CreateHalftonePalette
|
---|
| 6 | Added more logging
|
---|
| 7 | Added RGB565 -> RGB555 conversion in sync method of DIB class
|
---|
| 8 | (PowerDVD colors still wrong)
|
---|
| 9 | - KERNEL32: Added display driver keys for PowerDVD video tester applet
|
---|
| 10 | Extra logging for GetProcAddress
|
---|
| 11 |
|
---|
[4031] | 12 | 2000-08-18: Patrick Haller <phaller@gmx.net>
|
---|
| 13 | - NTDLL: roughly synchronized with current WINE
|
---|
| 14 | - SHELL32: roughly synchronized with current WINE
|
---|
| 15 |
|
---|
[4030] | 16 | 2000-08-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 17 | - KERNEL32: Only call O32_LoadLibrary if dwFlags == 0 and (LX binary
|
---|
| 18 | or win32k process)
|
---|
| 19 | GetModuleHandleA fix (uninit. var)
|
---|
| 20 | (PowerDVD install no longer complains about running InstallShield)
|
---|
| 21 | - DSOUND: Fixed wrong type for dllHandle (caused load failure)
|
---|
| 22 |
|
---|
[4027] | 23 | 2000-08-16: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 24 | - COMCTL32: propsheet: workaround for PROPSHEET_GetPaddingInfoWizard
|
---|
| 25 | design issue
|
---|
| 26 |
|
---|
[4021] | 27 | 2000-08-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 28 | - KERNEL32: Changed search order for resource languages:
|
---|
| 29 | According to Wine:
|
---|
| 30 | FindResourceA/W does search in the following order:
|
---|
| 31 | 1. Neutral language with neutral sublanguage
|
---|
| 32 | 2. Neutral language with default sublanguage
|
---|
| 33 | 3. Current locale lang id
|
---|
| 34 | 4. Current locale lang id with neutral sublanguage
|
---|
| 35 | 5. (!) LANG_ENGLISH, SUBLANG_DEFAULT
|
---|
| 36 | 6. Return first in the list
|
---|
| 37 | FindResourceExA/W does search in the following order:
|
---|
| 38 | 1. Exact specified language
|
---|
| 39 | 2. Language with neutral sublanguage
|
---|
| 40 | 3. Neutral language with neutral sublanguage
|
---|
| 41 | 4. Neutral language with default sublanguage
|
---|
| 42 | (fixes bad string in PowerDVD)
|
---|
| 43 |
|
---|
[4009] | 44 | 2000-08-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[4014] | 45 | - KERNEL32: Fixed sharing violation errors in OSLibDosCreateFile
|
---|
[4009] | 46 | (FILE_SHARE_DELETE now included in share flag var)
|
---|
| 47 | (fixes error messages when playing files in RealPlayer 7)
|
---|
[4016] | 48 | TLS fix in PE loader (no .tls section, but valid tls image directory)
|
---|
[4009] | 49 |
|
---|
[4007] | 50 | 2000-08-13: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 51 | - COMCTL32: added propsheet, treeview Corel WINE 20000807 changes
|
---|
[4013] | 52 | - GDI32: activated WinDrawText code
|
---|
[4007] | 53 |
|
---|
[4000] | 54 | 2000-08-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 55 | - KERNEL32: Do not set OPEN_ACCESS_READWRITE flag in OSLibDosCreateFile
|
---|
| 56 | (if OPEN_ACTION_CREATE_IF_NEW & readonly access)
|
---|
| 57 | This was causing access denied errors (using FILE_SHARE_WRITE
|
---|
| 58 | on a file on a readonly volume was not causing this; that's allowed)
|
---|
[4002] | 59 | Removed share mode hack. Caused by the bug mentioned above.
|
---|
| 60 | (You can change the file sharing mode when opening the same
|
---|
| 61 | file several times in OS/2)
|
---|
[4004] | 62 | Fixed system dll unload bug.
|
---|
| 63 | Extra checks in Win32ImageBase::isPEImage (nr of bytes read is correct or not)
|
---|
[4000] | 64 |
|
---|
[3992] | 65 | 2000-08-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 66 | - KERNEL32: Lock/Unlock
|
---|
| 67 | 64 bits values are only supported by JFS
|
---|
| 68 | Try the 32 bits DosSetFileLocks if it fails with ERROR_INVALID_PARAMETER
|
---|
| 69 | (TODO: should check the partition type instead)
|
---|
| 70 | Build fake dll header for system dlls and use it's address
|
---|
| 71 | as instance handle.
|
---|
[3996] | 72 | VIRTUAL_MapFileA/W: open file in share read/write mode
|
---|
| 73 | Fixed HMDuplicateHandle (check for DUPLICATE_ACCESS_READWRITE)
|
---|
| 74 | LoadLibraryExA: if dll name = executable name of current process
|
---|
| 75 | -> return handle of exe
|
---|
| 76 | (GrandPrix 3 installer does this; verified in NT)
|
---|
| 77 | FreeLibrary: if handle = exe handle of current process -> ignore
|
---|
[3992] | 78 | - SRC\*\initterm.cpp
|
---|
| 79 | Changed RegisterLxDll call for fake headers.
|
---|
| 80 | - INCLUDE\misc.h:
|
---|
| 81 | Removed versionos2.h dependancy
|
---|
| 82 | - VERSION\version.cpp
|
---|
| 83 | Include versionos2.h
|
---|
| 84 | - COMCTL32: Put back old property page code (breaks VPBuddy preferences
|
---|
| 85 | dialog). SameTime install property sheet now messed up (again).
|
---|
| 86 |
|
---|
[3976] | 87 | 2000-08-10: Patrick Haller <phaller@gmx.net>
|
---|
| 88 | - KERNEL32: OSLibDosQueryVolumeFS does no more return an error if
|
---|
| 89 | the caller is not interested in the volume name.
|
---|
| 90 | Console Input handling improved, some correction.
|
---|
[3977] | 91 | SetConsoleTitleW fixed.
|
---|
[3976] | 92 | NOTE! lstrcpynAtoW and lstrcpynWtoA do no more enforce (erroneous)
|
---|
| 93 | string termination.
|
---|
| 94 | NT4's CMD.EXE is quite working now.
|
---|
| 95 |
|
---|
[3974] | 96 | 2000-08-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 97 | - KERNEL32: TLS changes (now updates THDB array instead of calling
|
---|
| 98 | Open32)
|
---|
| 99 |
|
---|
[3973] | 100 | 2000-08-09: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 101 | - COMCTL32: added language dependent resources
|
---|
| 102 |
|
---|
[3971] | 103 | 2000-08-08: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 104 | - COMCTL32: first part of Corel WINE 20000807 changes
|
---|
| 105 |
|
---|
[3959] | 106 | 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 107 | - doc\ReportingBugs.txt:
|
---|
| 108 | Added a little more information
|
---|
| 109 | - tools\install
|
---|
| 110 | Add Logging.txt + symbol files to debug build.
|
---|
| 111 |
|
---|
[3949] | 112 | 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 113 | - KERNEL32: Temporary workaround for differences in share mode between
|
---|
| 114 | OS/2 & NT (for opening the same file multiple times):
|
---|
| 115 | NT: CreateFile with FILE_SHARE_READ
|
---|
| 116 | CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
|
---|
| 117 | -> 2nd CreateFile overrides share flags of first one
|
---|
| 118 | -> CreateFile with GENERIC_WRITE is now allowed
|
---|
| 119 | OS2: DosOpen with OPEN_SHARE_DENYWRITE
|
---|
| 120 | DosOpen with OPEN_SHARE_DENYNONE
|
---|
| 121 | -> sharing violation; can't change share flags while
|
---|
| 122 | handle returned by 1st DosOpen isn't closed
|
---|
| 123 | --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
|
---|
| 124 | (several installation programs depend on this behaviour)
|
---|
| 125 |
|
---|
[3909] | 126 | 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 127 | - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
|
---|
| 128 | directories in odininst.exe + extra registry keys:
|
---|
| 129 | [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
|
---|
| 130 | "ProgramFilesDir"="x:\Program Files"
|
---|
| 131 | "CommonFilesDir"="x:\Program Files\Common Files"
|
---|
| 132 | "SharedDir"="x:\Odin"
|
---|
[3911] | 133 | - COMCTL32: Fixed property page bugfix (wrong position) (by merging
|
---|
| 134 | latest PROPSHEET_ShowPage from Wine)
|
---|
| 135 | - DOC\ToDo.txt:
|
---|
[3895] | 136 | Added:
|
---|
[3909] | 137 | KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
|
---|
| 138 | (some applications use the handles as pointers)
|
---|