source: trunk/changelog@ 6059

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

* empty log message *

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