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