source: trunk/changelog@ 7426

Last change on this file since 7426 was 7426, checked in by phaller, 24 years ago

.

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