source: trunk/changelog@ 5992

Last change on this file since 5992 was 5990, checked in by sandervl, 25 years ago

* empty log message *

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