source: trunk/changelog@ 3772

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

* empty log message *

File size: 13.2 KB
Line 
1 /* $Id: changelog,v 1.1013 2000-06-29 12:25:25 sandervl Exp $ */
2
3 2000-06-29: Sander van Leeuwen <sandervl@xs4all.nl>
4 - INCLUDE\WIN\commctrl.h:
5 Put undocumented parts in #ifdef COMCTL32UNDOC statement
6 - INCLUDE\makefiles
7 Added -DCOMCTL32UNDOC to Odin compile flags
8 - USER32: Added HCBT_ACTIVATE hook call to SetActiveWindow
9 Send WM_ACTIVATE from WM_WINDOWPOSCHANGED if SWP_ACTIVATE
10 flag set -> fixes activation of odin windows
11 Removed forwarding of messages to PM frame window handler.
12
13 2000-06-28: Sander van Leeuwen <sandervl@xs4all.nl>
14 - KERNEL32: Cleaned up resource handling (findResourceA/W); much
15 more efficient now (searching for different languages)
16 Sets proper error code when failing to find type or name
17 Search for language in following order:
18 - specified language (user default if LANG_GETFIRST)
19 - primary specified language with default sublanguage
20 - language neutral
21 - first available language
22 Changed return type of HMDeviceFileClass file locking
23 methods (DWORD -> BOOL; not a bugfix)
24
25 2000-06-28: Michal Necasek <mike@mendelu.cz>
26 - USER32: BeginDeferWindowPos accepts count 0 as valid parameter
27 (verified in NT; negative count is illegal)
28
29 2000-06-27: Patrick Haller <phaller@gmx.net>
30 - KERNEL32: Added CreatePipe() call. Note: Anonymous and named
31 pipes do NOT comply with HandleManager right now!
32
33 2000-06-27: Michal Necasek <michalnec@volny.cz>
34 - DINPUT: Fixed some key values, MS uses mostly raw scan
35 codes but not always, why am I not surprised?
36
37 2000-06-26: Sander van Leeuwen <sandervl@xs4all.nl>
38 - GDI32: Fixed inverse video in RealPlayer 7 with SDD video drivers
39 - USER32: Fixed bug in InvalidateRect/Rgn, don't include children
40 in WinInvalidateRect/Region call -> fixes painting of
41 background bitmap in XWing vs Tie Fighter install app.
42 WinInvalidateRegion with fIncludeChildren=0 invalidates both
43 the parent and child windows (for !WS_CLIPCHILDREN window)
44 fIncludeChildren=1 -> invalidates only child (in xwing case
45 as it overlaps the invalid region completely; though parent
46 window doesn't have WS_CLIPCHILDREN style)
47 - KERNEL32: Added check for crossing limit of relocation section when
48 applying fixups. (fixes crash in IBM VisualAge Java setup)
49
50 2000-06-25: Michal Necasek <mike@mendelu.cz>
51 - KERNEL32: When creating files and mode is readonly, change to
52 read/write (or else DosOpen fails)
53 GetFileTime failed in OpenFile because handle wasn't
54 saved yet
55
56 2000-06-23: Sander van Leeuwen <sandervl@xs4all.nl>
57 - KERNEL32: Changed version; Odin presents itself as Windows NT 4 Service Pack 6
58 Return build nr in high word in GetVersion
59 Minor fixes in GetSystemInfo (processor level & revision)
60 FindResource bugfix for resource types starting with '#'
61 (i.e. "#102" really means numeric id 102)
62
63 2000-06-22: Michal Necasek <mike@mendelu.cz>
64 - KERNEL32: Added language support for Czech Republic
65 - USER32: wsprintf bugfix for %#04x (didn't add leading 0('s) if required)
66
67 2000-06-22: Christoph Bratschi <cbratschi@datacomm.ch>
68 - COMCTL32: fixed ANIMATE_ThreadFunc's calling convention
69
70 2000-06-21: Sander van Leeuwen <sandervl@xs4all.nl>
71 - USER32: Owner bugfix (WS_CHILD window has no owner)
72 Replaced calls to PM frame window handler (i.e. WM_FOCUSCHANGE)
73 Activated menu keyboard accelerators
74 - KERNEL32: Setup environment similar to NT. I.e.:
75 CPU=i386
76 HOMEDRIVE=<Odin drive>
77 HOMEPATH=\
78 NUMBER_OF_PROCESSORS=2
79 OS=Windows_NT
80 PATHEXT=.COM;.EXE;.BAT;.CMD
81 PROCESSOR_ARCHITECTURE=x86
82 PROCESSOR_IDENTIFIER=x86 Family 6 Model 6 Stepping 5, GenuineIntel
83 PROCESSOR_LEVEL=6
84 PROCESSOR_REVISION=0605
85 SystemDrive=<Odin drive>
86 SystemRoot=<Odin Windows dir>
87 windir=<Odin Windows dir>
88 TODO: Some environment variables still missing (see kernel32\initsystem.cpp)
89
90 2000-06-21: Patrick Haller <phaller@gmx.net>
91 - MSVCRT: - Added stub for __CxxLongjmpUnwind (NETSCAPE 4.7)
92 - CRTDLL: - CRTDLL is in some serious troble:
93 1. CRTDLL__close() -> _close()
94 CRTDLL__openU() -> CreateFileA()
95 this combination is incompatible !
96 2. calls like _close() go into the OS/2 kernel somewhere
97 without proper FS: protection -> CRASH.
98 CRTDLL__close() is fixed (CloseHandle()) now.
99
100 2000-06-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
101 - KERNEL32: Added language support for Poland
102
103 2000-06-18 Patrick Haller <phaller@gmx.net>
104 - KERNEL32: - fixed potential memory leak in GetLocaleInfoA
105 - improved GetNumberFormatA
106
107 2000-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
108 - KERNEL32: Bugfix in resource handling (due to yesterday's change)
109 DuplicateHandle fix
110 - USER32: Region fixes (RedrawWindow)
111 Get/SetWindowRgn fixes
112 - INCLUDE\OS2WRAP.H:
113 Added missing wrappers for GpiCreatePolygonRegion,
114 GpiCreateEllipticRegion & GpiCreateRoundRectRegion
115
116 2000-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
117 - GDI32: Put back region 'bugfix' as it's completely wrong and breaks
118 RealPlayer 7.
119 - KERNEL32: FindResource bugfix for resource names starting with '#'
120 (i.e. "#102" really means numeric id 102)
121
122 2000-06-14: Patrick Haller <phaller@gmx.net>
123 - KERNEL32: - fix in HandleManager::DuplicateHandler to call
124 OSLibDosDupHandle() instead of CreateFile
125 - fix oslibdos.h FILE_ SetFilePointer constants
126 were shifted by 1
127 - fix for signed negative 32-bit seek from llseek()
128 forwarded to the 64-bit OS/2 DosSetFilePtrL()
129 Note: need to check file locking APIs !
130 - fix GPI32 region: clientHeight, clientWidth:
131 hwnd == 0 == HWND_DESKTOP seems to be valid !
132
133 2000-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
134 - USER32: Rewrote ExcludeUpdateRgn & GetUpdateRgn
135 Check if update rectangle is emtpy in PM WM_PAINT msg;
136 ignore it when that's the case
137 -> fixes excessive redrawing in Lotus Notes
138 - GDI32: Put back region apis
139 Rewrote region functions
140 DIB section reversal bugs fixed (as seen in Starcraft install)
141
142 2000-06-14: Patrick Haller <phaller@gmx.net>
143 - KERNEL32: Altered calling of dllEntryPoint() depending on
144 static or dynamic loading if library according
145 to the Win32 documentation. (StarCraft)
146
147 2000-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
148 - USER32: Check if class already exists in RegisterClass(Ex)A/W
149 and return 0 (ERROR_CLASS_ALREADY_EXISTS) if true
150
151 2000-06-12: Patrick Haller <phaller@gmx.net>
152 - LZ32: Updated to current WINE level (minor changes)
153
154 2000-06-11: Patrick Haller <phaller@gmx.net>
155 - KERNEL32: Moved GetNumberFormat to different source file and enhanced
156 it a little (WinRAR shows file sizes)
157 Creating an existing directory does not return an error ?!
158 Updated GetStringTypeA/W and GetStringTypeExA/W
159
160 - SHLWAPI: Added a whole lot of missing functions, forwarders, stubs
161 Only 50 more to go for IE4 ...
162
163 2000-06-09: Patrick Haller <phaller@gmx.net>
164 - COMCTL32: Added some missing stubs (.9 .10 .389 .390)
165 - SHLWAPI: Added numerous missing functions, some stubs
166 (.1 .2 .3 .4 .5 .6 .7 .8 .9 .10 .11 .12 .13 .14 .15 .16
167 .23 .28 .37 .38 .40 .43 .53 .56 .59 .60 .74 .83 .94 .95
168 .102 .116 .117 .158 .197 .240)
169
170 2000-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
171 - KERNEL32: Fixed incorrect last error for OpenFile & LoadLibrary(Ex)
172 Added null pointer check to RegQueryValueW and fixed
173 memory leak.
174 - USER32: Ignore weird WM_ADJUSTWINDOWPOS messages (why are they sent?)
175 -> fixes combo box
176 Fixed GetUpdateRect
177 RedrawWindow changes; SetWindowPos fix (client invalidation)
178 Call MsgNCPaint in RedrawWindow (WM_NCPAINT is not posted
179 if update region doesn't include (part of) the nonclient area.
180 -> fixes RealPlayer 7 titlebar, borders & menu
181 GetTopWindow fix. (should work properly now)
182
183 2000-08-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
184 - tools/install:Added a stram 'close' on the changelog.
185 (4OS2 can't copy files which are opened for write(?).
186 The changelog has to be closed after copying it into
187 the odininst.wis file.)
188 - tools/DailyBuild:
189 Creates .WPI releases too.
190 (odin32pack.cmd and odin32ftp2.cmd)
191 WarpIn is added to the build environment variables
192 (odin32env.cmd).
193 WarpIn is added to the build environment variables
194 (odin32env.cmd).
195
196 2000-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
197 - USER32: Fixed wrong dispatch of WM_NCHITTEST
198 Fixed DC leak in EndPaint (reset hps type to TYPE_1)
199 -> resulted in out of memory and very slow PM operations
200 -> ICQ 2000a install now finishes (used to run out of mem)
201 Rewrote window management; now one PM window (non-frame)
202 is created for each win32 window (used to be a frame/client
203 pair)
204 -> speeds up drawing & fixes some repaint problems
205 Window coordinates (internally stored) are now relative
206 to window parent (or screen coord. if no parent); client
207 coordinates relative to the frame window
208 GetParent now returns owner if toplevel window
209 SetParent hides and shows window when changing parent
210 Added support for DCX_USESTYLE, DCX_CLIPSIBLINGS, DCX_CLIPCHILDREN
211 and DCX_PARENTCLIP in GetDCEx
212 Rewrote Set/GetWindowPlacement + SetInternalWindowPos (Wine port)
213 Manual minimize, maximize & restore in ShowWindow + fixes
214 TODO: Repaint problems, move child windows when client position/size
215 changes
216 SetParent/GetParent fixes for desktop parent.
217 - SHELL32: Disabled system tray window for now. (appears in top/right
218 of the desktop otherwise)
219
220 2000-06-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
221 - WINMM: Don't start playback when WaveOutRestart is called
222 before any buffers have been added.
223 Clear WHDR_INQUEUE bit for buffers returned in WaveOutReset
224
225 2000-06-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
226 - Win32k/REXX: Rewrote the REXX stub program in assembly.
227 (exe size: 688 bytes) Might be able to embedd it in
228 win32k.sys... (not priority)
229
230 2000-06-02: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
231 - SHELL32: Systray class registered with wrong name
232
233 2000-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
234 - GDI32/USER32: Moved GetClipRgn & GetClipBox into user32 (dc.cpp)
235 - GDI32: Added more logging
236 - KERNEL32: Rewrote CompareFileTime, DeleteFileA
237 Put file io apis in separate handlemanager object class
238 Rewrote most file io apis; includes support for 64 bits file
239 pointer/size:
240 - CreateFile/OpenFile/DuplicateHandle/CloseHandle
241 - ReadFile(Ex)/WriteFileEx/GetFileType/GetFileInformationByHandle
242 - SetEndOfFile/SetFileTime/GetFileTime/GetFileSize
243 - SetFilePointer/LockFile(Ex)/UnlockFile(Ex)/FlushFileBuffers
244 Fixed some OpenFile bugs. Put Read/WriteFileEx into file
245 io class. Fixed LockFileEx/UnlockFileEx
246 New file apis use OS/2 apis now; overlapped IO not yet
247 supported.
248 - SHELL32: Added ISF_MyComputer_fnParseDisplayName from latest Wine
249 Fixes open file dialog
Note: See TracBrowser for help on using the repository browser.