[5763] | 1 | /* $Id: changelog,v 1.1431 2001-05-19 21:31:39 bird Exp $ */
|
---|
[5313] | 2 |
|
---|
[5763] | 3 | 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 4 | - win32k: o Added improovments from Rafal, better validation of the
|
---|
| 5 | paths which are found. Might cause some warnings for
|
---|
| 6 | some of you, but just read and ignore them.
|
---|
| 7 | Run configure.cmd (one of them)!
|
---|
| 8 |
|
---|
[5741] | 9 | 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5763] | 10 | - GDI32: o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
|
---|
[5761] | 11 | illegal values (TODO: check what NT does)
|
---|
| 12 | (fixes huge buttons in VirtualPC dialog (font with wrong
|
---|
| 13 | height created))
|
---|
[5758] | 14 | - INCLUDE\odinwrap.h:
|
---|
| 15 | o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
|
---|
| 16 | and restore FS!!!
|
---|
| 17 | (FS corruption in release build; mainly affects wsock32)
|
---|
[5741] | 18 | - WS2_32: o Added more exports
|
---|
[5744] | 19 | - KERNEL32: o Export TryEnterCriticalSection
|
---|
[5747] | 20 | o InterlockedCompareExchange bugfix; should not always return
|
---|
| 21 | old destination; return whatever cmpxchg puts in eax
|
---|
[5744] | 22 | - SHLWAPI: o Export SHSetValueW
|
---|
[5747] | 23 | o Ordinal export 342 is InterlockedCompareExchange implementation
|
---|
| 24 | Takes 3 parameters, not 4. (Wine bug)
|
---|
[5752] | 25 | o Ordinal export 151 takes 3 parameters, not zero.
|
---|
[5763] | 26 | o Implemented SHLWAPI_151 (case sensitive string compare
|
---|
[5752] | 27 | with length; ascii version of SHLWAPI_152)
|
---|
[5763] | 28 | o Implemented SHLWAPI_153 (case insensitive string compare
|
---|
[5752] | 29 | with length (ascii))
|
---|
[5763] | 30 | o Added SHLWAPI_154 (case insensitive string compare with
|
---|
[5752] | 31 | length (unicode))
|
---|
[5747] | 32 | - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
|
---|
| 33 | - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
|
---|
| 34 | o Set lasterror in EnumServicesStatusA/W stubs
|
---|
[5756] | 35 | - GDI32: o GetTextExtentPointA now handles strings larger than 512
|
---|
| 36 | characters.
|
---|
[5741] | 37 |
|
---|
[5739] | 38 | 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 39 | - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
|
---|
| 40 |
|
---|
[5735] | 41 | 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 42 | - KERNEL32: o Fixed FS corruption in LCMapStringA/W
|
---|
| 43 | o ole2nls: resync with latest Wine sources
|
---|
| 44 |
|
---|
[5724] | 45 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5733] | 46 | - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
|
---|
[5763] | 47 | with RDW_ALLCHILDREN flag.
|
---|
[5733] | 48 | (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
|
---|
| 49 | style -> InvalidateRect overwrites child windows (buttons))
|
---|
| 50 |
|
---|
| 51 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5724] | 52 | - USER32: o Destroy menu windows when they are no longer used.
|
---|
[5763] | 53 | (fixes activation problems with dialogs created after
|
---|
[5724] | 54 | selecting a menu item)
|
---|
| 55 | (TODO: sync with latest wine menu control sourcecode)
|
---|
[5726] | 56 | o clientHeight bugfix (fixes crash in Solitaire)
|
---|
[5730] | 57 | o Check if another app changed mouse cursor (Get/SetCursor)
|
---|
| 58 | (previously mouse cursor did not change back if another
|
---|
| 59 | app modified it)
|
---|
[5724] | 60 |
|
---|
[5720] | 61 | 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 62 | - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
|
---|
| 63 | both client and frame window.
|
---|
| 64 | (winhlp32 buttons are now visible again)
|
---|
| 65 |
|
---|
[5719] | 66 | 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 67 | - Tools\bin:o Synced with other projects using the same tools.
|
---|
| 68 |
|
---|
[5708] | 69 | 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 70 | - USER32: o BeginPaint must return logical points instead of device points.
|
---|
| 71 | (not the same if e.g. app changes page viewport)
|
---|
| 72 | (fixes scaling in Opera)
|
---|
[5711] | 73 | o SetFocus fix; manual activation of windows; PM sometimes
|
---|
| 74 | changes the Z-order of the window being activated.
|
---|
| 75 | Also call WH_CBT hook handler (if present)
|
---|
| 76 | (fixes hotlist window in Opera)
|
---|
[5714] | 77 | - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
|
---|
| 78 | if true. (verified in NT4, SP6)
|
---|
[5708] | 79 |
|
---|
[5705] | 80 | 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 81 | - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
|
---|
| 82 | - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
|
---|
| 83 | Wrong assumption about lParam as it's not always a pointer
|
---|
| 84 | (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
|
---|
| 85 |
|
---|
[5700] | 86 | 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 87 | - COMCTL32: o Fixed wrong return values for datetime control
|
---|
| 88 | (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
|
---|
| 89 |
|
---|
[5683] | 90 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 91 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
---|
| 92 | for each win32 window.
|
---|
| 93 | (fixes visible region problems with e.g. Opera)
|
---|
| 94 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
---|
| 95 | the transparency problems reported earlier when using this method.
|
---|
[5719] | 96 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
---|
| 97 | painting algorithm stops top-down search when it finds
|
---|
[5683] | 98 | a window with WS_CLIPCHILDREN style
|
---|
[5719] | 99 | -> result: dialog window won't update groupbox background
|
---|
[5683] | 100 | as groupbox only draws the border
|
---|
[5719] | 101 | o UpdateWindow: Must use frame window handle even though
|
---|
[5683] | 102 | UpdateWindow only updates the client area.
|
---|
| 103 | If the frame window has a valid update region and we call
|
---|
[5719] | 104 | WinUpdateWindow for the client window, then no WM_PAINT
|
---|
[5683] | 105 | messages will be sent.
|
---|
| 106 | o Don't erase background in RedrawWindow (invalidate) when
|
---|
[5719] | 107 | RDW_ERASE flag not set.
|
---|
[5683] | 108 | (gets rid of excessive background redraws (flickering) for
|
---|
| 109 | progress windows in some installers)
|
---|
| 110 | o Fixed ScrollWindow bug
|
---|
| 111 | o WM_SHOWWINDOW sent twice
|
---|
| 112 | o Mark window's visible region as changed when client receives
|
---|
| 113 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
---|
| 114 | flag is set (regardless of erase flag set by RedrawWindow)
|
---|
[5688] | 115 | o ScrollDC fix (window handle transation)
|
---|
| 116 | o ScrollDC and ScrollWindowEx bugfix (setting update region)
|
---|
[5686] | 117 | (fixes scrolling in MS Word 97)
|
---|
[5688] | 118 | - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
|
---|
| 119 | (fixes pictures in (some) documents for Word 97)
|
---|
| 120 | TODO: Probably need to check bitfields and convert for some
|
---|
| 121 | other blit functions
|
---|
[5683] | 122 |
|
---|
[5679] | 123 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
---|
| 124 | - GDI32: o Rop conversion for DIB Section blits
|
---|
| 125 | o Support for negative height (origin top left) in
|
---|
[5691] | 126 | SetDIBitsToDevice + StretchDIBits
|
---|
[5679] | 127 |
|
---|
| 128 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 129 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
---|
| 130 | then the rectangle isn't empty. (include/include input)
|
---|
| 131 | (fixes e.g. missing erase background when slowly moving window
|
---|
| 132 | over Odin window (full window dragging enabled))
|
---|
| 133 |
|
---|
[5675] | 134 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 135 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
---|
| 136 | src/win32k/debug:
|
---|
| 137 | o Removed directories. These were either not needed
|
---|
| 138 | or unused. I did this now since I was going to
|
---|
| 139 | remove ws2help anyway and there by breaking your tree.
|
---|
| 140 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
---|
| 141 | o Rexx script which removes the above directories
|
---|
| 142 | from your local tree. Run this from the root of the tree.
|
---|
| 143 | To physically remove the directories you have to specify
|
---|
| 144 | REMOVE as argument (no dash or slash!).
|
---|
| 145 |
|
---|
[5671] | 146 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 147 | - src/makefile:
|
---|
| 148 | o Ignore WS2HELP for the moment.
|
---|
| 149 | (Never add empty subdirs to /src without making
|
---|
| 150 | /src/makefile ignore it!)
|
---|
| 151 |
|
---|
[5663] | 152 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
[5668] | 153 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
---|
[5666] | 154 | - KERNEL32: o CreateProcess error handling corrected, if
|
---|
| 155 | O32_CreateProcess fails with specific reason
|
---|
[5663] | 156 |
|
---|
[5656] | 157 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 158 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
---|
| 159 |
|
---|
| 160 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 161 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
---|
| 162 |
|
---|
[5645] | 163 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
---|
| 164 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
---|
[5649] | 165 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
---|
| 166 | if font is changed.
|
---|
[5652] | 167 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
---|
[5645] | 168 |
|
---|