source: trunk/changelog@ 7429

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

* empty log message *

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