[3671] | 1 | /* $Id: changelog,v 1.975 2000-06-07 22:56:26 bird Exp $ */
|
---|
[2659] | 2 |
|
---|
[3671] | 3 |
|
---|
| 4 | 2000-08-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 5 | - tools/install:Added a stram 'close' on the changelog.
|
---|
| 6 | (4OS2 can't copy files which are opened for write(?).
|
---|
| 7 | The changelog has to be closed after copying it into
|
---|
| 8 | the odininst.wis file.)
|
---|
| 9 | - tools/DailyBuild:
|
---|
| 10 | - Creates .WPI releases too.
|
---|
| 11 | (odin32pack.cmd and odin32ftp2.cmd)
|
---|
| 12 | - WarpIn is added to the build environment variables
|
---|
| 13 | (odin32env.cmd).
|
---|
| 14 | - WarpIn is added to the build environment variables
|
---|
| 15 | (odin32env.cmd).
|
---|
| 16 |
|
---|
| 17 |
|
---|
[3661] | 18 | 2000-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 19 | - USER32: Fixed wrong dispatch of WM_NCHITTEST
|
---|
| 20 | Fixed DC leak in EndPaint (reset hps type to TYPE_1)
|
---|
| 21 | -> resulted in out of memory and very slow PM operations
|
---|
| 22 | -> ICQ 2000a install now finishes (used to run out of mem)
|
---|
| 23 | Rewrote window management; now one PM window (non-frame)
|
---|
| 24 | is created for each win32 window (used to be a frame/client
|
---|
| 25 | pair)
|
---|
| 26 | -> speeds up drawing & fixes some repaint problems
|
---|
| 27 | Window coordinates (internally stored) are now relative
|
---|
| 28 | to window parent (or screen coord. if no parent); client
|
---|
| 29 | coordinates relative to the frame window
|
---|
| 30 | GetParent now returns owner if toplevel window
|
---|
| 31 | SetParent hides and shows window when changing parent
|
---|
| 32 | Added support for DCX_USESTYLE, DCX_CLIPSIBLINGS, DCX_CLIPCHILDREN
|
---|
| 33 | and DCX_PARENTCLIP in GetDCEx
|
---|
| 34 | Rewrote Set/GetWindowPlacement + SetInternalWindowPos (Wine port)
|
---|
| 35 | Manual minimize, maximize & restore in ShowWindow + fixes
|
---|
| 36 | TODO: Repaint problems, move child windows when client position/size
|
---|
| 37 | changes
|
---|
[3664] | 38 | SetParent/GetParent fixes for desktop parent.
|
---|
[3661] | 39 | - SHELL32: Disabled system tray window for now. (appears in top/right
|
---|
| 40 | of the desktop otherwise)
|
---|
| 41 |
|
---|
[3656] | 42 | 2000-06-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
|
---|
| 43 | - WINMM: Don't start playback when WaveOutRestart is called
|
---|
| 44 | before any buffers have been added.
|
---|
[3657] | 45 | Clear WHDR_INQUEUE bit for buffers returned in WaveOutReset
|
---|
[3656] | 46 |
|
---|
[3652] | 47 | 2000-06-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 48 | - Win32k/REXX: Rewrote the REXX stub program in assembly.
|
---|
| 49 | (exe size: 688 bytes) Might be able to embedd it in
|
---|
| 50 | win32k.sys... (not priority)
|
---|
| 51 |
|
---|
[3654] | 52 | 2000-06-02: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
|
---|
| 53 | - SHELL32: Systray class registered with wrong name
|
---|
| 54 |
|
---|
[3639] | 55 | 2000-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 56 | - GDI32/USER32: Moved GetClipRgn & GetClipBox into user32 (dc.cpp)
|
---|
[3654] | 57 | - GDI32: Added more logging
|
---|
[3639] | 58 | - KERNEL32: Rewrote CompareFileTime, DeleteFileA
|
---|
| 59 | Put file io apis in separate handlemanager object class
|
---|
| 60 | Rewrote most file io apis; includes support for 64 bits file
|
---|
| 61 | pointer/size:
|
---|
| 62 | - CreateFile/OpenFile/DuplicateHandle/CloseHandle
|
---|
| 63 | - ReadFile(Ex)/WriteFileEx/GetFileType/GetFileInformationByHandle
|
---|
| 64 | - SetEndOfFile/SetFileTime/GetFileTime/GetFileSize
|
---|
| 65 | - SetFilePointer/LockFile(Ex)/UnlockFile(Ex)/FlushFileBuffers
|
---|
| 66 | Fixed some OpenFile bugs. Put Read/WriteFileEx into file
|
---|
| 67 | io class. Fixed LockFileEx/UnlockFileEx
|
---|
| 68 | New file apis use OS/2 apis now; overlapped IO not yet
|
---|
| 69 | supported.
|
---|
[3644] | 70 | - SHELL32: Added ISF_MyComputer_fnParseDisplayName from latest Wine
|
---|
| 71 | Fixes open file dialog
|
---|