source: trunk/changelog@ 5943

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

* empty log message *

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