source: trunk/changelog@ 7441

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

.

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