source: trunk/changelog@ 4055

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

* empty log message *

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