source: trunk/changelog@ 7437

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

* empty log message *

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