source: trunk/changelog@ 5744

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

* empty log message *

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