source: trunk/changelog@ 5952

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

* empty log message *

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