source: trunk/changelog@ 3721

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

* empty log message *

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