source: trunk/changelog@ 5975

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

* empty log message *

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