source: trunk/changelog@ 5971

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

* empty log message *

File size: 9.1 KB
Line 
1/* $Id: changelog,v 1.1502 2001-06-12 17:00:28 sandervl Exp $ */
2
3 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Partly fixed position of PM frame controls
5 o FillRect fix for 0 brush
6 o Workaround for windows with CS_CLASSDC class. Use same
7 mechanism as CS_OWNDC. (might not always work though)
8 No (easy) way to share a single DC between windows in PM.
9 (fixes paint problems in MED)
10 o Use critical sections for local hooks; faster than
11 kernel mutex semaphore calls.
12 - GDI32: o SetDIBColorTable bugfix
13 - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
14 (Winbench tries this)
15
16 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
17 - USER32: o Reference count bugfixes
18 - GDI32: o Added RGB555 conversion for CreateDIBitmap & SetDIBits
19
20 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
21 - USER32: o SetParent bugfix (caused crashes in user32 after yesterday's changes)
22 o Preliminary support added for OS/2 look and feel (not finished)
23 Odin.ini option:
24 [ODINSYSTEM]
25 OS2Look=1 (default = 0)
26 Creates OS/2 Titlebar, system menu & min/max/close buttons.
27 Also overrides UseWinColors option (uses OS/2 colors).
28 NOTE: Can interfere with windows applications that draw their
29 own custom titlebar. (e.g. RealPlayer)
30 - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
31 o CreateProcess: launch win16 loader for NE executables
32 - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
33 Overrides GetVersion & WinExec functions to return the
34 version NT returns and to launch 32 bits programs (using pe).
35 (NOT FINISHED and not included in daily build)
36 - PELDR: o Execute win16 loader for NE executables.
37
38 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
39 - Win32API.h:
40 o Added APIs required to compile user32.
41 - src/makefile:
42 o Relaxed the locks a little.
43 - Win32k: o Separated VAC3 and VAC36 output. (Please re-run configure!)
44 - makefiles/VAC36:
45 o Ignore ILIB warnings. (like those in the opengl tree)
46
47 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
48 - USER32: o Keep reference count for window and class objects.
49 Only delete the objects when nobody else is using them anymore.
50 (fixes crashes due to premature destruction of objects;
51 e.g. during Napster startup)
52 - KERNEL32: o heap checking accidentally turned on during logging
53 (making the debug build extremely slow)
54 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
55 no apparent reason. Don't bail out when that happens, but try
56 to create the process anyway.
57 (fixes CreateProcess during Napster install)
58 o Improved version of InterlockedIncrement & InterlockedDecrement
59 (borrowed from Wine)
60
61 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
62 - KERNEL32: o WinExec fixes
63 o Ported Wine's WritePrivateProfileSectionA
64 - GDI32: o DIB Section blits: translate all ROPs
65 o GetDIBits fix; RGB conversion was not always performed;
66 now only for requested scanlines.
67
68 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
69 - KERNEL32: o Optimizations for loading of PE images
70
71 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
72 - OLE32: o More VAC 3.6.5 compile fixes
73
74 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
75 - FastDep: o Performance enh. Don't scan files more than 1 month older
76 than existing .depend file.
77 o Optimized AVL tree sligtly by not performing two strcmp
78 on the same keys (but resuing the result from the first).
79 o Improved dependencies genereated for OS/2 resource files.
80 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
81 o Code is now in sync with OS2Tools.
82
83 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
84 - OLE32: o VAC 3.6.5 compile fix
85
86 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
87 - KERNEL32: o Fixed ordinal export resolving for PE executables
88 (SO52 complained about missing exports)
89
90 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
91 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
92 (fixes endless repainting loop in WinRAR 2.80)
93 - KERNEL32: o Optimized ordinal lookup even more.
94 (6900 ordinal lookups takes (on average) 31 ms now instead
95 of 78)
96
97 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
98 - KERNEL32: o Added driver dll plugin for custom device driver emulation
99 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
100 that contain 'DllName' keys.
101 DllName contains the name of the plugin dll that exports
102 DrvOpen, DrvClose & DrvIOCtl.
103 o Dispatch breakpoint exception to application (release build only)
104 Some nasty applications expect this.
105
106 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
107 - USER32: o Ported & fixed ScrollDC (Wine)
108 (fixes scrolling in Adobe Framemaker 5.5)
109 - GDI32: o RGB 565->555 conversion in GetDIBits
110 o RGB 555->565 conversion in DIB Section sync
111 o Sync DIB section in RealizePalette if any colors changed
112 (fixes PowerDVD colors)
113
114 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
115 - Win32k/configure.cmd:
116 o Corrected search for the VAC compiler.
117 o Removed stupid messages when -w is specified.
118
119 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
120 - COMDLG32: o fix crash due to uninitialized COM object pointer in
121 Win95 open file dialog browse mode
122 o default to open mode in file dialog when the
123 OFN_NOVALIDATE mode is used
124 (fixes crash in FrameMaker 5.5 file dialog when opening
125 a file that has broken image references)
126 - KERNEL32: o log both error and no error conditions for GetLastError
127 with default error level. Sometimes, we don't set an error
128 where we should so this logging information is important
129 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
130 CreateFileA to open a non existing file.
131 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
132 Verified with Windows 2000 SP2
133 (makes Acrobat Distiller 5.0 startup and work!)
134
135 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
136 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
137 [WINMM]
138 DefVolume=50[0-100] Default waveout volume (default = 100)
139 - USER32: o ScrollDC fix for translating clip & scroll rectangles
140 (fixes scrolling in Adobe Framemaker 5.5)
141
142 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
143 - USER32: o Send WM_HELP if F1 pressed & no menu active
144 o Disabled system hooks (only work in one process)
145 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
146 barely noticable with 'real' applications)
147 - OLE32: o Added OleLoadPictureEx stub
148 - GDI32: o GetDIBits fix for querying the bitmap information
149 WGSS returns 0, but we should return the nr of scan lines requested
150 o GetDIBits fix for memory dcs. WGSS messes things up if
151 it's a memory DC.
152 (fixes lower right button in AIM's logon window when typing
153 in new name)
154 o ExtTextOutA/W fix for filling rectangle with background color
155 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
156 (fixes border between menu & button bar in Odin MFC app &
157 Acrobat Reader 4.05)
158 o StretchDIBits fix for RGB555 bitmaps
159 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
160 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
161
162 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
163 - KERNEL32: o benchmarked new experimental loader and reverted to
164 old but slightly optimized loader (processExport usually
165 outweighs processImport, so lookup is less valuable than
166 add to export list)
167 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
168 its icon cache. Revert to on-demand loading of the icons,
169 speeds up loading of SHELL32 (therefore most apps)
170 by several seconds.
171
Note: See TracBrowser for help on using the repository browser.