Ignore:
Timestamp:
Jun 2, 2001, 1:00:07 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog-2001

    r5656 r5877  
    1  /* $Id: ChangeLog-2001,v 1.4 2001-05-04 17:03:26 sandervl Exp $ */
     1 /* $Id: ChangeLog-2001,v 1.5 2001-06-02 10:59:31 sandervl Exp $ */
     2
     3 2001-05-31: Sander van Leeuwen <sandervl@xs4all.nl>
     4    - OLEAUT32: o Fixed ITypeInfoImpl_Invoke
     5
     6 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
     7    - KERNEL32: o further performance improvement of hashtables
     8                o fixes for loader improvements (PE, LX)
     9                o Todo: measuring new code, reducing memory requirements               
     10
     11 2001-05-30: Sander van Leeuwen <sandervl@xs4all.nl>
     12    - USER32:   o RedrawWindow: don't clear erase background flag if the
     13                  window is already (partly) invalidated.
     14                  (fixes redrawing of dialogs controls in mIRC startup dialog
     15                   window (when switching option windows))
     16    - KERNEL32: o Put back old lookup code.
     17                  New files renamed to winimagepeldr_new.cpp/h
     18                  (Odin test app crashes; looks like MFC42 ordinal lookup
     19                   fails somewhere)
     20    - OLEAUT32: o Added RegisterTypeLib (ported recent Wine patch) &
     21                  UnRegisterTypeLib
     22                o Added ITypeInfoImpl_Invoke (ported Francois Jacques'
     23                  (refused) patch and rewrote it to get rid of stack
     24                  layout dependency.
     25                o VT_HRESULT -> VT_INT conversion added to Coerce
     26                  (all needed for Quicken Deluxe 2001; still crashes, but
     27                   gets passed data loading)
     28    - OLE32:    o OleRun: check pointer with IsValidInterface
     29                  (fixes crash in Quicken after data loading)
     30
     31 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
     32    - KERNEL32: o replaced linear lists in PE loader with faster hashtables
     33                  (ccollection.cpp, experimental)
     34                  ToDo: measure any difference, revert eventualls
     35
     36 2001-05-29: Sander van Leeuwen <sandervl@xs4all.nl>
     37    - GDI32:    o Set/GetDIBColorTable fixes for DIB sections with bpp > 8
     38                o Don't sync DIB section in SelectPalette if bForceBackground
     39                  is -1. (hack for bitmap buttons in Beyond Compare)
     40    - DCIMAN32: o Updated & return proper error codes
     41
     42 2001-05-28: Patrick Haller <patrick.haller@innotek.de>
     43    - GDI32:    o Split GDI32.CPP into ICM.CPP and GDI32.CPP
     44                o CreateDC() accepts "display" instead of "DISPLAY"
     45                  (fixes font-not-found problem in ZD Bench 99)
     46    - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
     47                o directory.cpp: don't trap in CreateDirectory(NULL, NULL)               
     48    - DDRAW:    o implemented DirectDrawCreateClipper()
     49    - WOW32:    o created initial (fake) version of WOW32.DLL
     50                  (SBLiveXP accesses this directly)
     51
     52 2001-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
     53    - COMCTL32: o Listview: merged old LISTVIEW_EnsureVisible
     54                  (gets rid of excessive repaints)
     55    - USER32:   o Replaced TabbedTextOutA/W & GetTabbedTextExtentA/W with
     56                  Wine version. GPI doesn't support strings > 512 characters.
     57    - GDI32:    o Commented out InternalTabbedTextOutA/W & InternalGetTabbedTextExtentA/W
     58
     59 2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
     60    - COMCTL32: o Datetime control resync with Wine (get/setrange added)
     61
     62 2001-05-25: Sander van Leeuwen <sandervl@xs4all.nl>
     63    - Odin.ini: o Removed MS Shell Dlg font mapping
     64    - GDI32:    o Synchronize DIB Section after SelectPalette call (if selected in DC)
     65                  (fixes wrong colors for some bitmaps)
     66                o Update bitmap and synchronize DIB Section in SetDIBits
     67                o Update color table during DIB sync too
     68    - USER32:   o Dialog control x & y coordinates in dialog template are signed
     69                  words. (fixes dialog controls with negative offset)
     70                o Rewrote Post(Thread)/SendMessage; filtering of posted/sent
     71                  messages (by app) is now possible with Peek/GetMessage.
     72                o PeekMessage fix; got rid of double removal for untranslated
     73                  messages
     74
     75 2001-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
     76    - GDI32:    o Commented out recent changes (color conversion) in
     77                  SetDIBitsToDevice. Breaks startup bitmap of Acrobat Reader 4
     78                o GetTextExtentPointA; call WGSS instead.
     79                  Better result (strings not clipped).
     80    - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
     81                  handle)
     82    - IPHLPAPI  o Added stub dll
     83
     84 2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
     85    - USER32:   o RedrawWindow with desktop window handle no longer returns
     86                  an error.
     87                  (fixes RealPlayer Auto Size window)
     88    - Odin.ini  o Added font mapping for MS Shell Dlg to WarpSans
     89                  (gets rid of ugly fonts (in dialogs) which also have the wrong
     90                   size (text clipping))
     91    - KERNEL32: o CreateFile for partitions; handle lookup fails if
     92                  OS/2 handle is set to -1 (happens if disk not inserted)
     93                  -> set to 0 instead
     94
     95 2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
     96    - COMCTL32: o Partial merge of listview control with latest Wine
     97                o Listview: Send WM_MEASUREITEM for controls with
     98                  LVS_OWNERDRAWFIXED style.
     99                  (TODO: sets size for all items only)
     100                  (fixes wrong item size for VirtualPC main window)
     101    - USER32:   o Fixed minimizing & restoring of top-level windows
     102    - KERNEL32: o Check name before adding dependency for module in
     103                  order to avoid circular dependencies (WNETAP32 (== NETAPI32)
     104                  imports from NETAPI32)
     105                  (fixes crash at exit in VirtualPC)
     106
     107 2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
     108    - GDI32:    o Fixed LPtoDP/DPtoLP again.
     109    - USER32:   o Paint menu item first before destroying it
     110                  (prevents menu control from painting selected item on
     111                   desktop)
     112                o Don't show or hide scrollbar in SetScrollInfo if
     113                  scroll parameters didn't change.
     114                  (fixes loop in VirtualPC settings dialog)
     115
     116 2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     117    - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
     118
     119 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     120    - win32k:   o Added improvements from Rafal, better validation of the
     121                  paths which are found. Might cause some warnings for
     122                  some of you, but just read and ignore them.
     123                  Run configure.cmd (one of them)!
     124
     125 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
     126    - GDI32:    o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
     127                  illegal values (TODO: check what NT does)
     128                  (fixes huge buttons in VirtualPC dialog (font with wrong
     129                   height created))
     130    - INCLUDE\odinwrap.h:
     131                o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
     132                  and restore FS!!!
     133                  (FS corruption in release build; mainly affects wsock32)
     134    - WS2_32:   o Added more exports
     135    - KERNEL32: o Export TryEnterCriticalSection
     136                o InterlockedCompareExchange bugfix; should not always return
     137                  old destination; return whatever cmpxchg puts in eax
     138    - SHLWAPI:  o Export SHSetValueW
     139                o Ordinal export 342 is InterlockedCompareExchange implementation
     140                  Takes 3 parameters, not 4. (Wine bug)
     141                o Ordinal export 151 takes 3 parameters, not zero.
     142                o Implemented SHLWAPI_151 (case sensitive string compare
     143                  with length; ascii version of SHLWAPI_152)
     144                o Implemented SHLWAPI_153 (case insensitive string compare
     145                  with length (ascii))
     146                o Added SHLWAPI_154 (case insensitive string compare with
     147                  length (unicode))
     148    - USER32:   o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
     149    - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
     150                o Set lasterror in EnumServicesStatusA/W stubs
     151    - GDI32:    o GetTextExtentPointA now handles strings larger than 512
     152                  characters.
     153
     154 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     155    - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
     156
     157 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
     158    - KERNEL32: o Fixed FS corruption in LCMapStringA/W
     159                o ole2nls: resync with latest Wine sources
     160
     161 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
     162    - USER32:   o InvalidateRect & InvalidateRgn must call RedrawWindow
     163                  with RDW_ALLCHILDREN flag.
     164                  (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
     165                   style -> InvalidateRect overwrites child windows (buttons))
     166
     167 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
     168    - USER32:   o Destroy menu windows when they are no longer used.
     169                  (fixes activation problems with dialogs created after
     170                   selecting a menu item)
     171                  (TODO: sync with latest wine menu control sourcecode)
     172                o clientHeight bugfix (fixes crash in Solitaire)
     173                o Check if another app changed mouse cursor (Get/SetCursor)
     174                  (previously mouse cursor did not change back if another
     175                   app modified it)
     176
     177 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
     178    - USER32:   o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
     179                  both client and frame window.
     180                  (winhlp32 buttons are now visible again)
     181
     182 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     183    - Tools\bin:o Synced with other projects using the same tools.
     184
     185 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
     186    - USER32:   o BeginPaint must return logical points instead of device points.
     187                  (not the same if e.g. app changes page viewport)
     188                  (fixes scaling in Opera)
     189                o SetFocus fix; manual activation of windows; PM sometimes
     190                  changes the Z-order of the window being activated.
     191                  Also call WH_CBT hook handler (if present)
     192                  (fixes hotlist window in Opera)
     193    - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
     194                  if true. (verified in NT4, SP6)
     195
     196 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     197    - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
     198    - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
     199                  Wrong assumption about lParam as it's not always a pointer
     200                  (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
     201
     202 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     203    - COMCTL32: o Fixed wrong return values for datetime control
     204                  (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
     205
     206 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
     207    - USER32:   o Rewrote window handling. Back to using frame and client windows
     208                  for each win32 window.
     209                  (fixes visible region problems with e.g. Opera)
     210                  Frame windows never have the WS_CLIPCHILDREN style; this caused
     211                  the transparency problems reported earlier when using this method.
     212                  E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
     213                        painting algorithm stops top-down search when it finds
     214                        a window with WS_CLIPCHILDREN style
     215                        -> result: dialog window won't update groupbox background
     216                                   as groupbox only draws the border
     217                o UpdateWindow: Must use frame window handle even though
     218                  UpdateWindow only updates the client area.
     219                  If the frame window has a valid update region and we call
     220                  WinUpdateWindow for the client window, then no WM_PAINT
     221                  messages will be sent.
     222                o Don't erase background in RedrawWindow (invalidate) when
     223                  RDW_ERASE flag not set.
     224                  (gets rid of excessive background redraws (flickering) for
     225                   progress windows in some installers)
     226                o Fixed ScrollWindow bug
     227                o WM_SHOWWINDOW sent twice
     228                o Mark window's visible region as changed when client receives
     229                  WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
     230                  flag is set (regardless of erase flag set by RedrawWindow)
     231                o ScrollDC fix (window handle transation)
     232                o ScrollDC and ScrollWindowEx bugfix (setting update region)
     233                  (fixes scrolling in MS Word 97)
     234    - GDI32:    o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
     235                  (fixes pictures in (some) documents for Word 97)
     236                  TODO: Probably need to check bitfields and convert for some
     237                        other blit functions
     238
     239 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
     240    - GDI32:    o Rop conversion for DIB Section blits
     241                o Support for negative height (origin top left) in
     242                  SetDIBitsToDevice + StretchDIBits
     243
     244 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
     245    - GDI32:    o includeBottomRightPoint bugfix; if left == right or top == bottom
     246                  then the rectangle isn't empty. (include/include input)
     247                  (fixes e.g. missing erase background when slowly moving window
     248                   over Odin window (full window dragging enabled))
     249
     250 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     251    - src/ws2help, bin/debug, bin/release, src/win32k/list,
     252      src/win32k/debug:
     253                o Removed directories. These were either not needed
     254                  or unused. I did this now since I was going to
     255                  remove ws2help anyway and there by breaking your tree.
     256    - tools/bin/CVSRemoveDeletedDirs.cmd:
     257                o Rexx script which removes the above directories
     258                  from your local tree. Run this from the root of the tree.
     259                  To physically remove the directories you have to specify
     260                  REMOVE as argument (no dash or slash!).
     261
     262 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     263    - src/makefile:
     264                o Ignore WS2HELP for the moment.
     265                  (Never add empty subdirs to /src without making
     266                   /src/makefile ignore it!)
     267
     268 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
     269    - WS2_32:   o created skeleton and added forwarders to WSOCK32
     270    - KERNEL32: o CreateProcess error handling corrected, if
     271                  O32_CreateProcess fails with specific reason
     272
     273 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     274    - SHELL32:  o Update for SHFileOperationA (FO_MOVE)
     275
     276 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
     277    - USER32:   o FrameTrackFrame bugfix for moving child windows
     278
     279 2000-05-03: Yuri Dario <mc6530@mclink.it>
     280    - USER32:   o SendNCCalcSize call bugfix (client rectangle parameter)
     281                o Fix for groupbox WM_SETFONT handler. Must erase top part
     282                  if font is changed.
     283    - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
    2284
    3285 2001-04-30: Sander van Leeuwen <sandervl@xs4all.nl>
Note: See TracChangeset for help on using the changeset viewer.