source: trunk/changelog@ 5937

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

* empty log message *

File size: 6.7 KB
Line 
1/* $Id: changelog,v 1.1490 2001-06-09 19:45:16 sandervl Exp $ */
2
3 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Keep reference count for window and class objects.
5 Only delete the objects when nobody else is using them anymore.
6 (fixes crashes due to premature destruction of objects;
7 e.g. during Napster startup)
8 - KERNEL32: o heap checking accidentally turned on during logging
9 (making the debug build extremely slow)
10 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
11 no apparent reason. Don't bail out when that happens, but try
12 to create the process anyway.
13 (fixes CreateProcess during Napster install)
14 o Improved version of InterlockedIncrement & InterlockedDecrement
15 (borrowed from Wine)
16
17 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
18 - KERNEL32: o WinExec fixes
19 o Ported Wine's WritePrivateProfileSectionA
20 - GDI32: o DIB Section blits: translate all ROPs
21 o GetDIBits fix; RGB conversion was not always performed;
22 now only for requested scanlines.
23
24 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
25 - KERNEL32: o Optimizations for loading of PE images
26
27 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
28 - OLE32: o More VAC 3.6.5 compile fixes
29
30 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
31 - FastDep: o Performance enh. Don't scan files more than 1 month older
32 than existing .depend file.
33 o Optimized AVL tree sligtly by not performing two strcmp
34 on the same keys (but resuing the result from the first).
35 o Improved dependencies genereated for OS/2 resource files.
36 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
37 o Code is now in sync with OS2Tools.
38
39 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
40 - OLE32: o VAC 3.6.5 compile fix
41
42 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
43 - KERNEL32: o Fixed ordinal export resolving for PE executables
44 (SO52 complained about missing exports)
45
46 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
47 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
48 (fixes endless repainting loop in WinRAR 2.80)
49 - KERNEL32: o Optimized ordinal lookup even more.
50 (6900 ordinal lookups takes (on average) 31 ms now instead
51 of 78)
52
53 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
54 - KERNEL32: o Added driver dll plugin for custom device driver emulation
55 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
56 that contain 'DllName' keys.
57 DllName contains the name of the plugin dll that exports
58 DrvOpen, DrvClose & DrvIOCtl.
59 o Dispatch breakpoint exception to application (release build only)
60 Some nasty applications expect this.
61
62 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
63 - USER32: o Ported & fixed ScrollDC (Wine)
64 (fixes scrolling in Adobe Framemaker 5.5)
65 - GDI32: o RGB 565->555 conversion in GetDIBits
66 o RGB 555->565 conversion in DIB Section sync
67 o Sync DIB section in RealizePalette if any colors changed
68 (fixes PowerDVD colors)
69
70 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
71 - Win32k/configure.cmd:
72 o Corrected search for the VAC compiler.
73 o Removed stupid messages when -w is specified.
74
75 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
76 - COMDLG32: o fix crash due to uninitialized COM object pointer in
77 Win95 open file dialog browse mode
78 o default to open mode in file dialog when the
79 OFN_NOVALIDATE mode is used
80 (fixes crash in FrameMaker 5.5 file dialog when opening
81 a file that has broken image references)
82 - KERNEL32: o log both error and no error conditions for GetLastError
83 with default error level. Sometimes, we don't set an error
84 where we should so this logging information is important
85 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
86 CreateFileA to open a non existing file.
87 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
88 Verified with Windows 2000 SP2
89 (makes Acrobat Distiller 5.0 startup and work!)
90
91 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
92 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
93 [WINMM]
94 DefVolume=50[0-100] Default waveout volume (default = 100)
95 - USER32: o ScrollDC fix for translating clip & scroll rectangles
96 (fixes scrolling in Adobe Framemaker 5.5)
97
98 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
99 - USER32: o Send WM_HELP if F1 pressed & no menu active
100 o Disabled system hooks (only work in one process)
101 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
102 barely noticable with 'real' applications)
103 - OLE32: o Added OleLoadPictureEx stub
104 - GDI32: o GetDIBits fix for querying the bitmap information
105 WGSS returns 0, but we should return the nr of scan lines requested
106 o GetDIBits fix for memory dcs. WGSS messes things up if
107 it's a memory DC.
108 (fixes lower right button in AIM's logon window when typing
109 in new name)
110 o ExtTextOutA/W fix for filling rectangle with background color
111 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
112 (fixes border between menu & button bar in Odin MFC app &
113 Acrobat Reader 4.05)
114 o StretchDIBits fix for RGB555 bitmaps
115 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
116 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
117
118 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
119 - KERNEL32: o benchmarked new experimental loader and reverted to
120 old but slightly optimized loader (processExport usually
121 outweighs processImport, so lookup is less valuable than
122 add to export list)
123 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
124 its icon cache. Revert to on-demand loading of the icons,
125 speeds up loading of SHELL32 (therefore most apps)
126 by several seconds.
127
Note: See TracBrowser for help on using the repository browser.