[7405] | 1 | /* $Id: changelog,v 1.1842 2001-11-20 15:25:37 sandervl Exp $ */
|
---|
[6074] | 2 |
|
---|
[7402] | 3 | 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - USER32: o Destroy CD notification window during dll unload
|
---|
[7405] | 5 | o Focus fix for dialog windows
|
---|
| 6 | Experiments in NT4 show that dialogs that are children don't
|
---|
| 7 | receive focus. Not sure if this is always true. (couldn't
|
---|
| 8 | find any info about this in the SDK docs)
|
---|
[7402] | 9 |
|
---|
[7395] | 10 | 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 11 | - GUIDLIB: o Library with all GUIDs used by Odin
|
---|
| 12 | - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
|
---|
| 13 | o Removed guid source files and link with guidlib.lib
|
---|
| 14 |
|
---|
| 15 | 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[7380] | 16 | - WS2_32: o Compile fix
|
---|
| 17 | - OLEAUT32: o Don't include guid file in custom build library
|
---|
| 18 |
|
---|
[7395] | 19 | 2000-11-18: Yuri Dario <mc6530@mclink.it>
|
---|
[7372] | 20 | - USER32: o WM_SETTEXT (unicode) fix
|
---|
| 21 | (latest changes broke Opera among other things)
|
---|
| 22 |
|
---|
[7363] | 23 | 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 24 | - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
|
---|
| 25 | - USER32: o Disallow nested calls to SetScrollRange. This is most likely
|
---|
| 26 | not the right fix, but it works so far without negative side
|
---|
| 27 | effects.
|
---|
| 28 | (fixes crash in CVP listview with 4+ items)
|
---|
[7367] | 29 | - GDI32: o Removed line draw speedup. If I have to choose between
|
---|
| 30 | a performance loss of a few clock cycles and a code size
|
---|
| 31 | increase of 2k, I prefer the 1st option.
|
---|
[7369] | 32 | - WSOCK32: o ODINWRAP changes break winsock. This code still depended
|
---|
| 33 | on FS save/restore. Now added a wrapper header for all
|
---|
| 34 | OS/2 socket functions.
|
---|
[7363] | 35 |
|
---|
[7356] | 36 | 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 37 | - ODINWRAP: o don't generate any frame procedure for RELEASE build
|
---|
| 38 | anymore (even no FS: wrapper (meanwhile superfluous))
|
---|
| 39 | -> significant performance gain for logged micro functions
|
---|
| 40 | - KERNEL32: o heap speedup (30%)
|
---|
[7362] | 41 | - GDI32: o minor line drawing speedup
|
---|
[7356] | 42 |
|
---|
[7350] | 43 | 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 44 | - KERNEL32: o fixed infinite loop in PE loader for corrupted or
|
---|
| 45 | misinterpreted PE images (Opera 6)
|
---|
[7352] | 46 | - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
|
---|
[7350] | 47 |
|
---|
[7344] | 48 | 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 49 | - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
|
---|
| 50 | o Removed unnecessary string copy operation changes (heap -> stack)
|
---|
| 51 | Performance improvement is minimal at best and stack
|
---|
| 52 | corruption is MUCH harder to locate than heap corruption.
|
---|
| 53 |
|
---|
[7339] | 54 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
---|
[7341] | 55 | - fastdep: o IPF support.
|
---|
| 56 |
|
---|
| 57 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
---|
[7339] | 58 | - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
|
---|
| 59 | ... which operate on stack only (STACK_strdupXXX)
|
---|
| 60 | This could slightly reduce heap pressure.
|
---|
| 61 | - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
|
---|
| 62 |
|
---|
[7329] | 63 | 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 64 | - KERNEL32: o Added missing entry in debug log table for hmparport
|
---|
| 65 | (fixes crash in debug build with selective logging)
|
---|
| 66 | - GDI32: o CalcBitmapSize bugfix
|
---|
| 67 | o SetDIBitsToDevice workaround for bug in Matrox driver.
|
---|
| 68 | When blitting 32 bpp data, the GpiDrawBits call will
|
---|
| 69 | fail with an insufficient memory error. When that happens,
|
---|
| 70 | convert data to 24 bpp and try again.
|
---|
| 71 | (TODO: This can happen in more functions!!)
|
---|
| 72 | o Fixes for wrong bit masks in several functions (24 & 32 bpp)
|
---|
[7331] | 73 | o Refuse DeleteObject for DEFAULT_GUI_FONT handle
|
---|
[7329] | 74 |
|
---|
[7326] | 75 | 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 76 | - ODINWRAP: o improved thread call path tracking
|
---|
| 77 | (now collects i. e. HEAP_malloc->HeapAlloc paths)
|
---|
| 78 |
|
---|
[7324] | 79 | 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 80 | - USER32: o Fix for calculating font size for a dialog box
|
---|
| 81 |
|
---|
[7320] | 82 | 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 83 | - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
|
---|
| 84 | (Build breaker. Seems like someone has an old toolkit...)
|
---|
| 85 |
|
---|
[7316] | 86 | 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 87 | - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
|
---|
| 88 |
|
---|
[7303] | 89 | 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 90 | - COMCTL32: o Ported latest Wine property sheet control
|
---|
| 91 | (fixes some, but not all problems in CVP)
|
---|
| 92 |
|
---|
[7299] | 93 | 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 94 | - KERNEL32: o first shot at parport support
|
---|
| 95 |
|
---|
[7292] | 96 | 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 97 | - USER32: o EndDialog fix for MFC dialog windows
|
---|
[7295] | 98 | o static control fix: SS_CENTERIMAGE means fill remainder
|
---|
| 99 | of client area with upper left pixel of bitmap
|
---|
[7292] | 100 | - KERNEL32: o Fix for applications that use CreateFile to open
|
---|
| 101 | a named pipe
|
---|
| 102 |
|
---|
[7291] | 103 | 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 104 | - WININET: o http, internet: WINE sync
|
---|
| 105 |
|
---|
[7285] | 106 | 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 107 | - KERNEL32: o Call old DosOpen if DosOpenL not available
|
---|
| 108 |
|
---|