source: trunk/changelog@ 7452

Last change on this file since 7452 was 7452, checked in by bird, 24 years ago

* empty log message *

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