source: trunk/changelog@ 4021

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

* empty log message *

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