source: trunk/changelog@ 4030

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

* empty log message *

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