| 1 | /* $Id: changelog,v 1.1422 2001-05-18 20:13:46 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - KERNEL32: o Fixed FS corruption in LCMapStringA/W
|
|---|
| 5 | o ole2nls: resync with latest Wine sources
|
|---|
| 6 |
|
|---|
| 7 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 8 | - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
|
|---|
| 9 | with RDW_ALLCHILDREN flag.
|
|---|
| 10 | (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
|
|---|
| 11 | style -> InvalidateRect overwrites child windows (buttons))
|
|---|
| 12 |
|
|---|
| 13 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 14 | - USER32: o Destroy menu windows when they are no longer used.
|
|---|
| 15 | (fixes activation problems with dialogs created after
|
|---|
| 16 | selecting a menu item)
|
|---|
| 17 | (TODO: sync with latest wine menu control sourcecode)
|
|---|
| 18 | o clientHeight bugfix (fixes crash in Solitaire)
|
|---|
| 19 | o Check if another app changed mouse cursor (Get/SetCursor)
|
|---|
| 20 | (previously mouse cursor did not change back if another
|
|---|
| 21 | app modified it)
|
|---|
| 22 |
|
|---|
| 23 | 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 24 | - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
|
|---|
| 25 | both client and frame window.
|
|---|
| 26 | (winhlp32 buttons are now visible again)
|
|---|
| 27 |
|
|---|
| 28 | 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 29 | - Tools\bin:o Synced with other projects using the same tools.
|
|---|
| 30 |
|
|---|
| 31 | 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 32 | - USER32: o BeginPaint must return logical points instead of device points.
|
|---|
| 33 | (not the same if e.g. app changes page viewport)
|
|---|
| 34 | (fixes scaling in Opera)
|
|---|
| 35 | o SetFocus fix; manual activation of windows; PM sometimes
|
|---|
| 36 | changes the Z-order of the window being activated.
|
|---|
| 37 | Also call WH_CBT hook handler (if present)
|
|---|
| 38 | (fixes hotlist window in Opera)
|
|---|
| 39 | - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
|
|---|
| 40 | if true. (verified in NT4, SP6)
|
|---|
| 41 |
|
|---|
| 42 | 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 43 | - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
|
|---|
| 44 | - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
|
|---|
| 45 | Wrong assumption about lParam as it's not always a pointer
|
|---|
| 46 | (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
|
|---|
| 47 |
|
|---|
| 48 | 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 49 | - COMCTL32: o Fixed wrong return values for datetime control
|
|---|
| 50 | (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
|
|---|
| 51 |
|
|---|
| 52 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 53 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
|---|
| 54 | for each win32 window.
|
|---|
| 55 | (fixes visible region problems with e.g. Opera)
|
|---|
| 56 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
|---|
| 57 | the transparency problems reported earlier when using this method.
|
|---|
| 58 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
|---|
| 59 | painting algorithm stops top-down search when it finds
|
|---|
| 60 | a window with WS_CLIPCHILDREN style
|
|---|
| 61 | -> result: dialog window won't update groupbox background
|
|---|
| 62 | as groupbox only draws the border
|
|---|
| 63 | o UpdateWindow: Must use frame window handle even though
|
|---|
| 64 | UpdateWindow only updates the client area.
|
|---|
| 65 | If the frame window has a valid update region and we call
|
|---|
| 66 | WinUpdateWindow for the client window, then no WM_PAINT
|
|---|
| 67 | messages will be sent.
|
|---|
| 68 | o Don't erase background in RedrawWindow (invalidate) when
|
|---|
| 69 | RDW_ERASE flag not set.
|
|---|
| 70 | (gets rid of excessive background redraws (flickering) for
|
|---|
| 71 | progress windows in some installers)
|
|---|
| 72 | o Fixed ScrollWindow bug
|
|---|
| 73 | o WM_SHOWWINDOW sent twice
|
|---|
| 74 | o Mark window's visible region as changed when client receives
|
|---|
| 75 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
|---|
| 76 | flag is set (regardless of erase flag set by RedrawWindow)
|
|---|
| 77 | o ScrollDC fix (window handle transation)
|
|---|
| 78 | o ScrollDC and ScrollWindowEx bugfix (setting update region)
|
|---|
| 79 | (fixes scrolling in MS Word 97)
|
|---|
| 80 | - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
|
|---|
| 81 | (fixes pictures in (some) documents for Word 97)
|
|---|
| 82 | TODO: Probably need to check bitfields and convert for some
|
|---|
| 83 | other blit functions
|
|---|
| 84 |
|
|---|
| 85 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
|---|
| 86 | - GDI32: o Rop conversion for DIB Section blits
|
|---|
| 87 | o Support for negative height (origin top left) in
|
|---|
| 88 | SetDIBitsToDevice + StretchDIBits
|
|---|
| 89 |
|
|---|
| 90 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 91 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
|---|
| 92 | then the rectangle isn't empty. (include/include input)
|
|---|
| 93 | (fixes e.g. missing erase background when slowly moving window
|
|---|
| 94 | over Odin window (full window dragging enabled))
|
|---|
| 95 |
|
|---|
| 96 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 97 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
|---|
| 98 | src/win32k/debug:
|
|---|
| 99 | o Removed directories. These were either not needed
|
|---|
| 100 | or unused. I did this now since I was going to
|
|---|
| 101 | remove ws2help anyway and there by breaking your tree.
|
|---|
| 102 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
|---|
| 103 | o Rexx script which removes the above directories
|
|---|
| 104 | from your local tree. Run this from the root of the tree.
|
|---|
| 105 | To physically remove the directories you have to specify
|
|---|
| 106 | REMOVE as argument (no dash or slash!).
|
|---|
| 107 |
|
|---|
| 108 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 109 | - src/makefile:
|
|---|
| 110 | o Ignore WS2HELP for the moment.
|
|---|
| 111 | (Never add empty subdirs to /src without making
|
|---|
| 112 | /src/makefile ignore it!)
|
|---|
| 113 |
|
|---|
| 114 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 115 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
|---|
| 116 | - KERNEL32: o CreateProcess error handling corrected, if
|
|---|
| 117 | O32_CreateProcess fails with specific reason
|
|---|
| 118 |
|
|---|
| 119 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 120 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
|---|
| 121 |
|
|---|
| 122 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 123 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
|---|
| 124 |
|
|---|
| 125 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
|---|
| 126 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
|---|
| 127 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
|---|
| 128 | if font is changed.
|
|---|
| 129 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
|---|
| 130 |
|
|---|