source: trunk/changelog@ 4057

Last change on this file since 4057 was 4057, checked in by sandervl, 25 years ago

* empty log message *

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