source: trunk/changelog@ 4852

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

* empty log message *

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