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