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