source: trunk/changelog@ 4220

Last change on this file since 4220 was 4215, checked in by phaller, 25 years ago

Fix

File size: 6.9 KB
Line 
1 /* $Id: changelog,v 1.1114 2000-09-08 04:33:56 phaller Exp $ */
2
3 2000-09-07: Patrick Haller <phaller@gmx.net>
4 - KERNEL32: Fixed some FS: bugs in time.cpp, environ.cpp, heap.cpp
5 Fixed language support from WINE sync
6 - GDI32: Fixed some FS: bug in DeleteObject(), DeleteDC()
7
8 2000-09-07: Sander van Leeuwen <sandervl@xs4all.nl>
9 - COMCTL32: TOOLBAR_SetBitmapSize & TOOLBAR_SetBitmapSize; do not return
10 FALSE when called after buttons have been created.
11 (failed assertions in MFC applications; this code is from
12 the latest Wine source tree)
13 - SHELL32: Merged more changes made by Christoph into new tree
14 - KERNEL32: InitDirectories must be called before InitializeTIB or else
15 a win.ini file is created in the root dir (InitializeTIB
16 loads ntdll which depends on user32)
17 (reported by Kai Sommerfeld)
18 - USER32: GetWindow was completely wrong. Didn't take Z-order into account.
19 Fixes MFC applications (missing controls + redraw problems)
20
21 2000-09-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
22 - install: Added Win32kCC.exe and kRx.EXE to the .wpi distributions.
23
24 2000-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
25 - USER32: WM_PARENTNOTIFY during WM_CREATE was sent to the wrong window
26 WM_FOCUSCHANGE fix; set & kill focus was sent twice
27 Added more logging.
28 Activate window after resizing (WM_WINDOWPOSCHANGED in pmwindow.cpp)
29 - KERNEL32: Workaround for RegSetValueA; a call to this api in Netscape
30 fails with error 8 due to a 0 size of the key data
31 HMOpenFile fix; pHMHandleData->dwCreation must be set
32 to OPEN_EXISTING or else the memory map class will fail
33 to duplicate the handle.
34
35 2000-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
36 - KERNEL32: GetDiskFreeSpaceExA: added support for 64 bits disk size
37 Rewrote GetDiskFreeSpace (no longer uses Open32)
38 - USER32: SetWindowLong GWL_WNDPROC changes/fixes
39 Type of SetWindowLong determines new window proc type
40 UNLESS the new window proc has already been registered
41 (use the old type in that case) (VERIFIED in NT 4, SP6)
42 Return original window procedure if types match (SetWindowLongX & proc type)
43 otherwise window proc wrapper.
44 Fixes wrong strings in Notes 5.0. (new string problems, but they
45 are caused by something else)
46 - COMCTL32: CreateUpDownControl was not exported correctly
47 (reported by Reinhold Kopper)
48
49 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
50 - Win32k: Improved error reporting.
51 Corrected fatal bug in the QueryOptionsStatus IOCtl,
52 had forgotten three SSToDS()...
53
54 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
55 - doc/readme.txt: Updated Win32k sections.
56 - Win32k: Fixed missing object in the 16-bit clib.lib which caused
57 linking of win32k.sys to fail in last daily build.
58 Support for comport 3 and 4.
59 - Win32kCC: Updated dialog to show all information provided by the
60 Win32k IOCtl interface.
61 - Include/HandleManager.h:
62 Added prototype for HMDeviceIoControl which Sander forgot.
63
64 2000-09-03: Patrick Haller <phaller@gmx.net>
65 - KERNEL32: NLS sync with WINE
66
67 2000-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
68 - KERNEL32: More logging;
69 DeviceIoControl didn't have handlemanager wrapper
70 - GDI32: Missing wrapper for WinDrawTabbedText caused FS corruption.
71 PLEASE be more careful in the future!
72
73 2000-09-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
74 - Win32k: Finally. I've merged the new changes into the main branch.
75 The most important things are:
76 - More correct search order for DLLs. The differences are
77 now that _ALL_ DLLs are found using the Windows search
78 order, and that the LIBPATH are also searched (last).
79 - PE.EXE may be invoked by Win32k.sys.
80 Win32k.sys will now operate in three modes:
81 - Pe2Lx mode. Only the Pe2Lx method is used.
82 - Mixed Pe2Lx and Pe.exe mode. Pe.exe is invoked for
83 executables which Pe2Lx don't currently support.
84 (like WinWord, which BTW may trap you PC if invoked
85 in Pe2Lx mode.)
86 This is the default mode.
87 - Pe.exe mode. Pe.exe is allways used.
88 (see readme.txt, I'll update it to ASAP but not to night.
89 (I tired after working 36 hours on finishing this...)
90 - UNIX Shell Scripts are working (now).
91 - JAVA invokation. If you try to load a JAVA class the
92 it is executed using java.exe. (note that the class
93 name is case sensitive!)
94 - Pure REXX. This one is for Nenad. .RX and .REX are
95 loaded using a tiny REXX starter, kRX.exe (found in
96 System32 directory).
97 - Win32k Control Center, Win32kCC.EXE. Simple PM
98 program which allows you to change the Win32k.SYS
99 options while running. It does also show some status
100 information (will be extended).
101 - Support for FP14 in the Symbol database.
102 (use the 09th Aug. kernel please).
103
104 - KERNEL32: Speeded up loading by using Win32k.sys IOCtl to get
105 objecttable entries (OTE) for the Pe2Lx executable images,
106 instead of using DosQuerySysState (which gets OTEs for all
107 modules in the entrie system). (This is the reason for the
108 win32k.lib file - it's made by the 'libs' rule from src.)
109
110 2000-09-02: Sander van Leeuwen <sandervl@xs4all.nl>
111 - USER32: Rewrote IsZoomed
112 Removed winzip invisible button fix; causes many repaint
113 problems. Need to find the real cause.
114 - DDRAW: More debug logging; implemented ClipGetClipList
115 - WINMM: mixerGetID fix (for NULL hmixer)
116
117 2000-09-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
118 - INCLUDE: Shut up the OS/2 resource compiler (added -n to OS2RCFLAGS).
119 Added linkage macro for the OS2RC which exepacks the resource
120 object: OS2RCLFLAGS
121
122 2000-09-01: Patrick Haller <phaller@gmx.net>
123 - GDI32: - Open32 fix for CreateDIBitmap: some apps claim they have
124 a bitmap w/o palette color table and then send one in to copy.
125 - USER32: - PMWINDOW.CPP: WM_FOCUSCHANCE - validate GetTopParent() handle
126
Note: See TracBrowser for help on using the repository browser.