source: trunk/changelog@ 5988

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

* empty log message *

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