source: trunk/changelog@ 4083

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

* empty log message *

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