source: trunk/changelog@ 5730

Last change on this file since 5730 was 5730, checked in by sandervl, 24 years ago

* empty log message *

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