source: trunk/changelog@ 4849

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

* empty log message *

File size: 10.2 KB
Line 
1/* $Id: changelog,v 1.1196 2000-12-29 18:41:44 sandervl Exp $ */
2
3 2000-12-29: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Export OS2ToWin32Handle & Win32ToOS2Handle with stdcall
5 convention. (not mangled)
6 - GDI32: o Changes for above exports
7
8 2000-12-27: Jeroen van den Horn <J.vandenHorn@chello.nl>
9 - WININET: o Resync with latest Wine + fixes/additions
10
11 2000-12-27: Yuri Dario <mc6530@mclink.it>
12 - USER32: o Wrong flag check in SetWindowPos (didn't include e.g. SWP_NOSENDCHANGING)
13
14 2000-12-21: Sander van Leeuwen <sandervl@xs4all.nl>
15 - USER32: o Fixed two FS bugs in main PM window handler. (FS not restored
16 before returning)
17 o Split up frame and child window PM handlers.
18 o Don't send PM WM_ACTIVATE to child windows in WM_WINDOWPOSCHANGED
19 (fixes some activation problems)
20 o Put back code to add MDI windows to menu (latest update doesn't work)
21 o Properly invalidate non-client area when SetWindowPos is called
22 with SWP_FRAMECHANGED. (fixes menu switch)
23 o SetParent bugfix; when putting window at the top of the z-order we
24 mustn't activate it (SWP_NOACTIVATE)
25 (fixes activate problem when starting up Lotus Notes 5)
26 - OLEAUT32: o Ported latest Wine version (12-22-2000)
27 (TODO: Port David's additions)
28 - TOOLS\INSTALL:
29 o 3Dfx glide & opengl removed from base install
30 (download opengl3dfx.zip from ftp.os2.org if you need it)
31 Dllfixes win32k feature disabled (enabled by default); it's
32 causing too many problems right now.
33
34 2000-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
35 - USER32: o Call WH_CBT hook during OS/2 WM_CREATE message. Some apps
36 rely on the window being valid when this hook is called.
37 (Girotel used GetDC which previously failed)
38 o Use different PM window class for child windows. Solves some
39 focus problems. (TODO)
40 o Some MDI changes/fixes (from Wine)
41
42 2000-12-16: Sander van Leeuwen <sandervl@xs4all.nl>
43 - USER32: o Edit control: Limits removed. EM_SETTEXTLIMIT has no effect in
44 NT4, SP6 (EM_GETTEXTLIMIT only returns that value).
45 Limits are simply ignored, no EN_MAXTEXT notification is ever sent.
46 (fixes license edit control in Microsoft Visual C++ 4.2 install)
47 o Static control: SS_REALSIZEIMAGE is supposed to prevent
48 control resizing, but that doesn't appear to happen in NT
49 (although the SDK docs are very clear about this)
50 Need to figure out why. (not resizing messes up the bitmap
51 control in the Microsoft Visual C++ 4.2 install program)
52 Same thing happens with a very simply test app, so the installer
53 does nothing special.
54 - WNASPI32: o Fixed bug in access aspi method. (wait check reversed)
55 - MAKEFILES:o Update for overriding stack size of executables
56 - PELDR: o Fixed makefiles (PEC was built as a PM app -> must be VIO!)
57 - KERNEL32: o Only call DosGetNamedSharedMem & free view if map created
58 by different process. (fixes hang in Lotus Notes 5)
59
60 2000-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
61 - KERNEL32: o GetVolumeInformationA bugfix (lpFileSystemNameBuffer == NULL &
62 lpFileSystemFlags != NULL)
63 o Wrong calls to VirtualFree in memory map & tls code (size must be zero)
64 o Shared memory address retrieved with DosGetNamedSharedMem not properly freed
65
66 2000-12-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
67 - Win32k: o Fixed problem with newer kernels having a different
68 prolog to ldrCheckInternalName. (Seems like either new
69 compiler or better optimization.)
70 o Corrected bad loop condition in configure.cmd causing
71 a neverending loop during build.
72 - Win32kCC: o Corrected the setting of the -DllFixes parameter.
73 - readme.txt:
74 o Corrected minor flaw: Win32k option "-PE" should be "-Pe".
75
76 2000-12-10: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
77 - Win32k: o Fixed minor error in the *printf function.
78 o Added the 14063 kernels (*1129[d].zip).
79 o Removed OS/2 kernel limit for DLL name length.
80 (Experimental - see readme.txt option -Dllfixes.)
81 o Removed OS/2 kernel restriction for DLL extention.
82 (Experimental - see readme.txt option -Dllfixes.)
83 - readme.txt:
84 o Updated win32k.sys with new parameter, -Dllfixes.
85
86 2000-12-09: Patrick Haller <patrick.haller@innotek.de>ú
87 - KERNEL32: o accelerated FindFirst/FindNext calls (oslibdos.cpp)ú
88 - makefile: o added support for "profile" debug buildú
89
90 2000-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
91 - GDI32: o Temporary fix for bugs introduced by recent handle changes.
92
93 2000-12-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
94 - USER32: o Changed CFLAGS and CXXFLAGS overrides to a CDEFINES override.
95 (This is the new way to alter the standard C and C++ defines.)
96
97 2000-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
98 - USER32: o Missing USING_OPEN32 define in makefile. Might be responsible
99 for a lot of problems that have recently emerged.
100
101 2000-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
102 - USER32: o Must call selectClientArea after GpiSetClipRegion in BeginPaint
103 When a window with CS_OWNDC looses focus, for some reason
104 GpiSetClipRegion resets the window dc origin back to (0,0).
105 (fixes e.g. Visual C++ 4.2 setup when switching between
106 setup window & another app)
107 - KERNEL32: o Rewrote GetLogicalDrives
108 o Minor fixes for GetDriveType (return value equals DRIVE_NO_ROOT_DIR
109 for junk input; does not change last error)
110
111 2000-12-06: Patrick Haller <patrick.haller@innotek.de>
112 - USER32: o added debug macros to HOOK_ functions
113 - GDI32: o added debug macros to Font related functions
114
115 2000-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
116 - USER32: o 16 bits menu handles are now supported (fixes crash in MultiEdit)
117 - GDI32: o Changes to local object handle management (for user32 menus)
118 - KERNEL32: o Don't assume resources start at section boundary.
119 Must use DataDirectory virtual address.
120 (fixes winrar self-extracting executables)
121
122 2000-12-03: chris.wohlgemuth <chris.wohlgemuth@cityweb.de>
123 - KERNEL32: o Fix for TVFS & GetDiskFreeSpaceA (Windows Media Player
124 install complains about cluster size)
125 (DRIVESPACE section, key CLUSTERTO32 in odin.ini)
126 o Fix in PROFILE_GetSection for crash in Windows Media Player install
127 - WINMM: o Ported Wine MCI code
128
129 2000-12-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
130 - TOOLS\install:
131 o More installation script fixes.
132 - Win32k: o Fatal error! I mixed flags for C and C++ compilation during
133 makefile rewrite. This caused C++ exceptionhandlers to be
134 generated and registered, leading to Trap 000e during boot.
135 o Confirmed working on the Warp 4 14.060 (at least halfstrict)
136 kernel (w41106.zip).
137
138 2000-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
139 - TOOLS\install:
140 o Installation script fixes.
141
142 2000-12-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
143 - *, makefiles, pdwin32k.*, odin32.*.mk, Configure.cmd:
144 o Made some addjustments to the makefiles. Most important
145 eliminating nearly all ODIN32_<dir> directory macros.
146 o Changed all "PDWIN32_" to "ODIN32_".
147 o Renamed pdwin32.$(CCENV).* to pdwin32.*.$(CCENV).mk
148 and pdwin32.* to odin32.*.mk.
149 o Added tiny rexx script, Configure.cmd, which generates
150 a file with absolute directory macros; makefile.inc.
151 Makefile.inc also includes /include/odin32.mk.
152 NB. This script is automatically invoked the first time
153 you start nmake or wmake on /makefile.
154 o Restructured the win32k.sys makefiles. Now all but
155 the win32k.sys makefile is using the new makefile style.
156 o The tools makefiles are mostly according to the new style.
157 o Compiler and debug/release specific library directory.
158 ODIN32_LIB will now point to a compiler specific directory
159 under /lib. Debug and release files are also separated.
160 o The <>exp.def are now generated in the $(OBJDIR) directory.
161 o .lib-files are also targeted to $(OBJDIR).
162 o More Watcom friendly makefiles. (I didn't say that they are
163 working with Watcom! I removed VAC dependencies when
164 possibled or else tried to make wmake fail.)
165 o Moved readmes in the /bin/glide tree to the source
166 directories under opengl.
167 - tools/install:
168 o Removed odininst.wis - odin.cmd generates this.
169 o Tried to make odin.cmd more readable; uses
170 the wic.exe option -c <dir> to set current directory.
171 ARG! Why can't wic.exe return anything but 0? When files
172 aren't found for example, I have no way of finding it out.
173 o Added package which adds win32k.sys to the config.sys.
174 Seems like I have to add a file to that packet, so win32k.ddp
175 works as dummy file. It also seems like there is a but in
176 WarpIn 0.95 - it inserts the line between the '\r' and the '\n'
177 chars at the end of the previous line.
178
179 2000-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
180 - KERNEL32: o Added renaming for MCICDA (MCICDA.DLL -> MCICDA.DRV)
181
182 2000-12-02: chris.wohlgemuth <chris.wohlgemuth@cityweb.de>
183 - WINMM\MCICDA:
184 o Rewrote it for OS/2
185
Note: See TracBrowser for help on using the repository browser.