source: trunk/changelog@ 4031

Last change on this file since 4031 was 4031, checked in by phaller, 25 years ago

.

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