source: trunk/changelog@ 6010

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

* empty log message *

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