source: trunk/changelog@ 3713

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

* empty log message *

File size: 6.5 KB
Line 
1 /* $Id: changelog,v 1.991 2000-06-14 18:31:32 sandervl Exp $ */
2
3 2000-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: Rewrote ExcludeUpdateRgn & GetUpdateRgn
5 Check if update rectangle is emtpy in PM WM_PAINT msg;
6 ignore it when that's the case
7 -> fixes excessive redrawing in Lotus Notes
8 - GDI32: Put back region apis
9 Rewrote region functions
10 DIB section reversal bugs fixed (as seen in Starcraft install)
11
12 2000-06-14: Patrick Haller <phaller@gmx.net>
13 - KERNEL32: Altered calling of dllEntryPoint() depending on
14 static or dynamic loading if library according
15 to the Win32 documentation. (StarCraft)
16
17 2000-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
18 - USER32: Check if class already exists in RegisterClass(Ex)A/W
19 and return 0 (ERROR_CLASS_ALREADY_EXISTS) if true
20
21 2000-06-12: Patrick Haller <phaller@gmx.net>
22 - LZ32: Updated to current WINE level (minor changes)
23
24 2000-06-11: Patrick Haller <phaller@gmx.net>
25 - KERNEL32: Moved GetNumberFormat to different source file and enhanced
26 it a little (WinRAR shows file sizes)
27 Creating an existing directory does not return an error ?!
28 Updated GetStringTypeA/W and GetStringTypeExA/W
29
30 - SHLWAPI: Added a whole lot of missing functions, forwarders, stubs
31 Only 50 more to go for IE4 ...
32
33 2000-06-09: Patrick Haller <phaller@gmx.net>
34 - COMCTL32: Added some missing stubs (.9 .10 .389 .390)
35 - SHLWAPI: Added numerous missing functions, some stubs
36 (.1 .2 .3 .4 .5 .6 .7 .8 .9 .10 .11 .12 .13 .14 .15 .16
37 .23 .28 .37 .38 .40 .43 .53 .56 .59 .60 .74 .83 .94 .95
38 .102 .116 .117 .158 .197 .240)
39
40 2000-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
41 - KERNEL32: Fixed incorrect last error for OpenFile & LoadLibrary(Ex)
42 Added null pointer check to RegQueryValueW and fixed
43 memory leak.
44 - USER32: Ignore weird WM_ADJUSTWINDOWPOS messages (why are they sent?)
45 -> fixes combo box
46 Fixed GetUpdateRect
47 RedrawWindow changes; SetWindowPos fix (client invalidation)
48 Call MsgNCPaint in RedrawWindow (WM_NCPAINT is not posted
49 if update region doesn't include (part of) the nonclient area.
50 -> fixes RealPlayer 7 titlebar, borders & menu
51 GetTopWindow fix. (should work properly now)
52
53 2000-08-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
54 - tools/install:Added a stram 'close' on the changelog.
55 (4OS2 can't copy files which are opened for write(?).
56 The changelog has to be closed after copying it into
57 the odininst.wis file.)
58 - tools/DailyBuild:
59 Creates .WPI releases too.
60 (odin32pack.cmd and odin32ftp2.cmd)
61 WarpIn is added to the build environment variables
62 (odin32env.cmd).
63 WarpIn is added to the build environment variables
64 (odin32env.cmd).
65
66 2000-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
67 - USER32: Fixed wrong dispatch of WM_NCHITTEST
68 Fixed DC leak in EndPaint (reset hps type to TYPE_1)
69 -> resulted in out of memory and very slow PM operations
70 -> ICQ 2000a install now finishes (used to run out of mem)
71 Rewrote window management; now one PM window (non-frame)
72 is created for each win32 window (used to be a frame/client
73 pair)
74 -> speeds up drawing & fixes some repaint problems
75 Window coordinates (internally stored) are now relative
76 to window parent (or screen coord. if no parent); client
77 coordinates relative to the frame window
78 GetParent now returns owner if toplevel window
79 SetParent hides and shows window when changing parent
80 Added support for DCX_USESTYLE, DCX_CLIPSIBLINGS, DCX_CLIPCHILDREN
81 and DCX_PARENTCLIP in GetDCEx
82 Rewrote Set/GetWindowPlacement + SetInternalWindowPos (Wine port)
83 Manual minimize, maximize & restore in ShowWindow + fixes
84 TODO: Repaint problems, move child windows when client position/size
85 changes
86 SetParent/GetParent fixes for desktop parent.
87 - SHELL32: Disabled system tray window for now. (appears in top/right
88 of the desktop otherwise)
89
90 2000-06-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
91 - WINMM: Don't start playback when WaveOutRestart is called
92 before any buffers have been added.
93 Clear WHDR_INQUEUE bit for buffers returned in WaveOutReset
94
95 2000-06-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
96 - Win32k/REXX: Rewrote the REXX stub program in assembly.
97 (exe size: 688 bytes) Might be able to embedd it in
98 win32k.sys... (not priority)
99
100 2000-06-02: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
101 - SHELL32: Systray class registered with wrong name
102
103 2000-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
104 - GDI32/USER32: Moved GetClipRgn & GetClipBox into user32 (dc.cpp)
105 - GDI32: Added more logging
106 - KERNEL32: Rewrote CompareFileTime, DeleteFileA
107 Put file io apis in separate handlemanager object class
108 Rewrote most file io apis; includes support for 64 bits file
109 pointer/size:
110 - CreateFile/OpenFile/DuplicateHandle/CloseHandle
111 - ReadFile(Ex)/WriteFileEx/GetFileType/GetFileInformationByHandle
112 - SetEndOfFile/SetFileTime/GetFileTime/GetFileSize
113 - SetFilePointer/LockFile(Ex)/UnlockFile(Ex)/FlushFileBuffers
114 Fixed some OpenFile bugs. Put Read/WriteFileEx into file
115 io class. Fixed LockFileEx/UnlockFileEx
116 New file apis use OS/2 apis now; overlapped IO not yet
117 supported.
118 - SHELL32: Added ISF_MyComputer_fnParseDisplayName from latest Wine
119 Fixes open file dialog
Note: See TracBrowser for help on using the repository browser.