source: trunk/changelog@ 3749

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

* empty log message *

File size: 10.5 KB
RevLine 
[3749]1 /* $Id: changelog,v 1.1005 2000-06-25 07:13:55 sandervl Exp $ */
[2659]2
[3749]3 2000-06-24: Michal Necasek <mike@mendelu.cz>
4 - KERNEL32: When creating files and mode is readonly, change to
5 read/write (or else DosOpen fails)
6
[3744]7 2000-06-23: Sander van Leeuwen <sandervl@xs4all.nl>
8 - KERNEL32: Changed version; Odin presents itself as Windows NT 4 Service Pack 6
9 Return build nr in high word in GetVersion
10 Minor fixes in GetSystemInfo (processor level & revision)
11 FindResource bugfix for resource types starting with '#'
12 (i.e. "#102" really means numeric id 102)
13
14 2000-06-22: Michal Necasek <mike@mendelu.cz>
15 - KERNEL32: Added language support for Czech Republic
16 - USER32: wsprintf bugfix for %#04x (didn't add leading 0('s) if required)
17
[3742]18 2000-06-22: Christoph Bratschi <cbratschi@datacomm.ch>
19 - COMCTL32: fixed ANIMATE_ThreadFunc's calling convention
20
[3741]21 2000-06-21: Sander van Leeuwen <sandervl@xs4all.nl>
[3744]22 - USER32: Owner bugfix (WS_CHILD window has no owner)
23 Replaced calls to PM frame window handler (i.e. WM_FOCUSCHANGE)
24 Activated menu keyboard accelerators
25 - KERNEL32: Setup environment similar to NT. I.e.:
[3741]26 CPU=i386
27 HOMEDRIVE=<Odin drive>
28 HOMEPATH=\
29 NUMBER_OF_PROCESSORS=2
30 OS=Windows_NT
31 PATHEXT=.COM;.EXE;.BAT;.CMD
32 PROCESSOR_ARCHITECTURE=x86
33 PROCESSOR_IDENTIFIER=x86 Family 6 Model 6 Stepping 5, GenuineIntel
34 PROCESSOR_LEVEL=6
35 PROCESSOR_REVISION=0605
36 SystemDrive=<Odin drive>
37 SystemRoot=<Odin Windows dir>
38 windir=<Odin Windows dir>
39 TODO: Some environment variables still missing (see kernel32\initsystem.cpp)
40
[3735]41 2000-06-21: Patrick Haller <phaller@gmx.net>
42 - MSVCRT: - Added stub for __CxxLongjmpUnwind (NETSCAPE 4.7)
[3738]43 - CRTDLL: - CRTDLL is in some serious troble:
44 1. CRTDLL__close() -> _close()
45 CRTDLL__openU() -> CreateFileA()
46 this combination is incompatible !
47 2. calls like _close() go into the OS/2 kernel somewhere
48 without proper FS: protection -> CRASH.
49 CRTDLL__close() is fixed (CloseHandle()) now.
[3735]50
[3732]51 2000-06-18: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
52 - KERNEL32: Added language support for Poland
53
[3741]54 2000-06-18 Patrick Haller <phaller@gmx.net>
[3729]55 - KERNEL32: - fixed potential memory leak in GetLocaleInfoA
56 - improved GetNumberFormatA
57
[3719]58 2000-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
59 - KERNEL32: Bugfix in resource handling (due to yesterday's change)
[3724]60 DuplicateHandle fix
61 - USER32: Region fixes (RedrawWindow)
[3727]62 Get/SetWindowRgn fixes
63 - INCLUDE\OS2WRAP.H:
64 Added missing wrappers for GpiCreatePolygonRegion,
65 GpiCreateEllipticRegion & GpiCreateRoundRectRegion
[3719]66
[3716]67 2000-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
68 - GDI32: Put back region 'bugfix' as it's completely wrong and breaks
69 RealPlayer 7.
[3717]70 - KERNEL32: FindResource bugfix for resource names starting with '#'
71 (i.e. "#102" really means numeric id 102)
[3716]72
[3714]73 2000-06-14: Patrick Haller <phaller@gmx.net>
74 - KERNEL32: - fix in HandleManager::DuplicateHandler to call
75 OSLibDosDupHandle() instead of CreateFile
76 - fix oslibdos.h FILE_ SetFilePointer constants
77 were shifted by 1
78 - fix for signed negative 32-bit seek from llseek()
79 forwarded to the 64-bit OS/2 DosSetFilePtrL()
80 Note: need to check file locking APIs !
81 - fix GPI32 region: clientHeight, clientWidth:
82 hwnd == 0 == HWND_DESKTOP seems to be valid !
83
[3706]84 2000-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
85 - USER32: Rewrote ExcludeUpdateRgn & GetUpdateRgn
[3710]86 Check if update rectangle is emtpy in PM WM_PAINT msg;
87 ignore it when that's the case
88 -> fixes excessive redrawing in Lotus Notes
[3706]89 - GDI32: Put back region apis
90 Rewrote region functions
[3712]91 DIB section reversal bugs fixed (as seen in Starcraft install)
[3706]92
[3704]93 2000-06-14: Patrick Haller <phaller@gmx.net>
[3706]94 - KERNEL32: Altered calling of dllEntryPoint() depending on
95 static or dynamic loading if library according
96 to the Win32 documentation. (StarCraft)
[3704]97
[3703]98 2000-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
99 - USER32: Check if class already exists in RegisterClass(Ex)A/W
100 and return 0 (ERROR_CLASS_ALREADY_EXISTS) if true
101
[3696]102 2000-06-12: Patrick Haller <phaller@gmx.net>
[3706]103 - LZ32: Updated to current WINE level (minor changes)
[3696]104
[3687]105 2000-06-11: Patrick Haller <phaller@gmx.net>
[3706]106 - KERNEL32: Moved GetNumberFormat to different source file and enhanced
107 it a little (WinRAR shows file sizes)
108 Creating an existing directory does not return an error ?!
109 Updated GetStringTypeA/W and GetStringTypeExA/W
[3694]110
[3687]111 - SHLWAPI: Added a whole lot of missing functions, forwarders, stubs
112 Only 50 more to go for IE4 ...
113
[3683]114 2000-06-09: Patrick Haller <phaller@gmx.net>
115 - COMCTL32: Added some missing stubs (.9 .10 .389 .390)
116 - SHLWAPI: Added numerous missing functions, some stubs
117 (.1 .2 .3 .4 .5 .6 .7 .8 .9 .10 .11 .12 .13 .14 .15 .16
118 .23 .28 .37 .38 .40 .43 .53 .56 .59 .60 .74 .83 .94 .95
119 .102 .116 .117 .158 .197 .240)
120
[3681]121 2000-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
122 - KERNEL32: Fixed incorrect last error for OpenFile & LoadLibrary(Ex)
123 Added null pointer check to RegQueryValueW and fixed
124 memory leak.
125 - USER32: Ignore weird WM_ADJUSTWINDOWPOS messages (why are they sent?)
126 -> fixes combo box
127 Fixed GetUpdateRect
128 RedrawWindow changes; SetWindowPos fix (client invalidation)
[3682]129 Call MsgNCPaint in RedrawWindow (WM_NCPAINT is not posted
[3681]130 if update region doesn't include (part of) the nonclient area.
131 -> fixes RealPlayer 7 titlebar, borders & menu
[3706]132 GetTopWindow fix. (should work properly now)
[3671]133
[3681]134 2000-08-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
[3706]135 - tools/install:Added a stram 'close' on the changelog.
136 (4OS2 can't copy files which are opened for write(?).
137 The changelog has to be closed after copying it into
138 the odininst.wis file.)
[3681]139 - tools/DailyBuild:
[3706]140 Creates .WPI releases too.
141 (odin32pack.cmd and odin32ftp2.cmd)
142 WarpIn is added to the build environment variables
143 (odin32env.cmd).
144 WarpIn is added to the build environment variables
145 (odin32env.cmd).
[3681]146
[3661]147 2000-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
148 - USER32: Fixed wrong dispatch of WM_NCHITTEST
149 Fixed DC leak in EndPaint (reset hps type to TYPE_1)
150 -> resulted in out of memory and very slow PM operations
151 -> ICQ 2000a install now finishes (used to run out of mem)
152 Rewrote window management; now one PM window (non-frame)
153 is created for each win32 window (used to be a frame/client
154 pair)
155 -> speeds up drawing & fixes some repaint problems
156 Window coordinates (internally stored) are now relative
157 to window parent (or screen coord. if no parent); client
158 coordinates relative to the frame window
159 GetParent now returns owner if toplevel window
160 SetParent hides and shows window when changing parent
161 Added support for DCX_USESTYLE, DCX_CLIPSIBLINGS, DCX_CLIPCHILDREN
162 and DCX_PARENTCLIP in GetDCEx
163 Rewrote Set/GetWindowPlacement + SetInternalWindowPos (Wine port)
164 Manual minimize, maximize & restore in ShowWindow + fixes
165 TODO: Repaint problems, move child windows when client position/size
166 changes
[3664]167 SetParent/GetParent fixes for desktop parent.
[3661]168 - SHELL32: Disabled system tray window for now. (appears in top/right
169 of the desktop otherwise)
170
[3656]171 2000-06-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
172 - WINMM: Don't start playback when WaveOutRestart is called
173 before any buffers have been added.
[3657]174 Clear WHDR_INQUEUE bit for buffers returned in WaveOutReset
[3656]175
[3652]176 2000-06-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
177 - Win32k/REXX: Rewrote the REXX stub program in assembly.
178 (exe size: 688 bytes) Might be able to embedd it in
179 win32k.sys... (not priority)
180
[3654]181 2000-06-02: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
182 - SHELL32: Systray class registered with wrong name
183
[3639]184 2000-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
185 - GDI32/USER32: Moved GetClipRgn & GetClipBox into user32 (dc.cpp)
[3654]186 - GDI32: Added more logging
[3639]187 - KERNEL32: Rewrote CompareFileTime, DeleteFileA
188 Put file io apis in separate handlemanager object class
189 Rewrote most file io apis; includes support for 64 bits file
190 pointer/size:
191 - CreateFile/OpenFile/DuplicateHandle/CloseHandle
192 - ReadFile(Ex)/WriteFileEx/GetFileType/GetFileInformationByHandle
193 - SetEndOfFile/SetFileTime/GetFileTime/GetFileSize
194 - SetFilePointer/LockFile(Ex)/UnlockFile(Ex)/FlushFileBuffers
195 Fixed some OpenFile bugs. Put Read/WriteFileEx into file
196 io class. Fixed LockFileEx/UnlockFileEx
197 New file apis use OS/2 apis now; overlapped IO not yet
198 supported.
[3644]199 - SHELL32: Added ISF_MyComputer_fnParseDisplayName from latest Wine
200 Fixes open file dialog
Note: See TracBrowser for help on using the repository browser.