source: trunk/changelog@ 6931

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

* empty log message *

File size: 11.9 KB
Line 
1/* $Id: changelog,v 1.1716 2001-10-02 17:16:18 sandervl Exp $ */
2
3 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
4 - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
5 (Some dlls (divx codec) call CoFreeUnusedLibraries which
6 unloads our dll if we use CoLoadLibrary (-> crash)
7 NT's regsvr32 doesn't use CoLoadLibrary either)
8
9 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
10 - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
11
12 2001-09-30: Sander van Leeuwen <sandervl@xs4all.nl>
13 - INCLUDE: o Hook constants added to winconst.h
14 (adding them to winuser.h only completely breaks Odin)
15 - DDRAW: o Implemented IDirectDrawClipper class for windowed DirectDraw
16 (only works if app uses clipping info for manual blitting;
17 IDirectSurface blitting methods need to be updated to
18 take clipping into account)
19 - USER32: o Added export to register visible region change callback
20
21 2001-09-30: knut st. osmundsen <kosmunds@csc.com>
22 - Makefiles:
23 o Added a DOMAKES util which should be used when invoking
24 other makefiles. (see /src/kernel32/makefile)
25 o Silenced most of the command $(DO*) commands so the commandline
26 doesn't show.
27 o Added some colors on the output from the $(DO*) scripts
28 to make it easier to separate directory and makefile switching
29 from all the other output.
30 Turn this off by using the env.var. BUILD_NOCOLOR.
31 o Did some cleanup of the main Makefile and added some missing rules.
32 o Made separate .depend file for the include files in the /include dir.
33 This will speedup the 'dep' rule somewhat.
34 o Autostart CmdQd with 7 workers if not started and MULTIJOBS are defined.
35 o Profile builds uses ./bin/Profile.* subdir for output, not ./bin/Debug.*.
36 o PROFILE mode (PROFILE=1) overrides DEBUG and RELEASE modes.
37 o NMAKE version of the Watcom support since WMAKE sucks big time :-(
38 These are the the odin32.*.watn.mk files. This caused introduction
39 of the MKFILE macro for the compiler specific filename part.
40 (Set CCENV=WAT and use NMAKE just like with VAC3.)
41 o Enabled Watcom (NMAKE version) support in mostly all makefiles.
42 (I.e. places we do compiler specific tweaks.)
43 - Fastdep: o Corrected processing of C/C++ #include "someheader.h" to
44 start the search in the source code directory.
45 o Corrected handling of deleted files.
46 o Increased some read and write buffers.
47 - Win32k: o Changed PSZ to char *, since H2INC doesn't understand PSZ.
48 - Custombulid:
49 o Can now build object libraries for custombuild without separate
50 makefiles. Define CUSTOMBUILD=1 (=1 is important!) to build an
51 DLL.
52 o To build all needed object libraries and the custom dll,
53 go to /src and 'nmake custombuild'. There is currently no
54 rule in the main makefile for this, so remember to make the
55 libraries in /lib first.
56 o Removed all the obsolete *lib.mak files.
57 - Watcom: o ccollection.h: Include odin.h to get min/max.
58 o odin.h: C INLINE/inline support.
59 o odinwrap.h: Watcom has problems with the GetCurrentThreadId
60 redeclaration. (DWORD != unsigned long int)
61 Exclude prototype if watcomc. (workaround)
62 o windef.h: __max and __min is defined in stdlib.h, undef before
63 redefining them.
64 o unicode.h: static inline workaround (just like VAC).
65 o src/makefile: Temporarily ignore return codes from subdirs.
66 o kernel32/console2.h:
67 Don't include calling convetion for thread
68 function. The default is the correct one usually.
69 o kernel32/conbuffervio.cpp:
70 Alloca is defines in malloc.h for watcom. VAC defines
71 this in both malloc and stdlib.h.
72 o kernel32/console.cpp:
73 _beginthread is defined in process.h not stdlib.h as
74 for VAC.
75
76 2001-09-29: Sander van Leeuwen <sandervl@xs4all.nl>
77 - WGSS50: o WGSS update
78
79 2001-09-28: Patrick Haller <patrick.haller@innotek.de>
80 - USER32: o added experimental support for WH_KEYBOARD_LL hook
81 o implemented keybd_event, mouse_event (-> SendInput )
82
83 2001-09-28: Sander van Leeuwen <sandervl@xs4all.nl>
84 - PE2LX: o Added options to remove fixups and to reroute all
85 imports to a custom odin dll
86
87 2001-09-27: Patrick Haller <patrick.haller@innotek.de>
88 - USER32: o partial implementation of SendInput()
89 - KERNEL32: o improved error code mapping (error2WinError)
90 o keep HandleManager from reusing last handle
91 too quickly (CreateFile after CloseHandle might
92 return the same handle again, which is correct but doesn't
93 put the spotlight on buggy apps)
94
95 2001-09-26: Sander van Leeuwen <sandervl@xs4all.nl>
96 - WININET/ICMP/WS2_32/WINSPOOL/CTL3D32:
97 o Makefiles added to build library with obj files
98 - WININET: o Split up initterm
99 - CUSTOMBUILD:
100 o Ordinals definitions moved into ordinals.h
101
102 2001-09-26: knut st. osmundsen <kosmunds@csc.com>
103 - Win32k: o Create development branch 'splittup' which in the
104 splittup of win32k is being implemented.
105 o BTW. I think I've found the jfs/fat32 + win32k problem.
106 I left some dirty readonly heap pages behind...
107 That is corrected in the splittup.
108 - Some Makefiles:
109 o Corrected the file header to state correct dllname.
110 Ye][ow, which is doing some documentation stuff on the Odin32,
111 pointed this out this for me.
112
113 2001-09-26: Patrick Haller <patrick.haller@innotek.de>
114 - ODINWRAP: o fixed FNEPILOGUE position
115 (MISC) o added support for calldepth tracing
116 - OLE32: o fixed wrong prototype in regsvr32.cpp
117
118 2001-09-25: Sander van Leeuwen <sandervl@xs4all.nl>
119 - COMCTL32: o Wine updates (MRU functions)
120 - SHELL32: o Wine updates (SHAddToRecentDocs)
121 - DDRAW/ADVAPI32: Added makefiles for building library with obj files
122
123 2001-09-24: Sander van Leeuwen <sandervl@xs4all.nl>
124 - DDRAW: o Set screen resolution + bpp of primary surface to those
125 of the PM desktop. (used to default to 640x480x8bpp)
126
127 2001-09-24: Patrick Haller <patrick.haller@innotek.de>
128 - USER32: o added ODINWRAP debug tracing support to WINKEYBOARD.CPP
129
130 2001-09-23: Sander van Leeuwen <sandervl@xs4all.nl>
131 - USER32: o MDI bugfix: set active child to 0 when last one is destroyed
132 (fixes crash when closing mdi window in odinapp)
133 - GDI32: o DIB Section sync bugfix; GpiQueryBitmapBits fails
134 when cbImage is too small (compressed images only)
135 This used to work. Maybe related to new SDD version.
136 (CoolEdit 2000 hits breakpoint in debug build)
137
138 2001-09-23: Dietrich Teickner <Dietrich_Teickner@t-online.de>
139 - SHELL32: o Small update for shfileop.c
140
141 2001-09-21: Sander van Leeuwen <sandervl@xs4all.nl>
142 - USER32: o Focus changes
143 - CTL3D32: o Added stub dll
144
145 2001-09-20: Sander van Leeuwen <sandervl@xs4all.nl>
146 - USER32: o Activate window when it returns 0 for WM_MOUSEACTIVATE
147 0 is not documented, but experiments in NT4 show that
148 the window will get activated when it returns this.
149 (fixes activation of FreeCell when clicking on the window)
150 o WM_NEXTMENU bugfix (from Wine)
151 (fixes crash during menu navigation in MDI windows)
152 - SHELL32: o Shell Folder bugfix from Wine added
153
154 2000-09-19: Oliver Braun <Oliver.Braun@hamburg.de>
155 - USER32: o PeekMessageW bugfix
156
157 2001-09-19: Sander van Leeuwen <sandervl@xs4all.nl>
158 - USER32: o Changed GetLastActivePopup (still not complete)
159 o Prevent loop in DIALOG_IsAccelerator
160 o GetMenuItemInfoW bugfixes
161 o Ported the Wine MDI control
162
163 2001-09-17: Patrick Haller <patrick.haller@innotek.de>
164 - WS2_32: o added stub for WSAIoctl() (Parsec)
165 - WINMM: o lowered minimum OS/2 timer resolution to 2ms
166 (for the new CLOCKSCALE feature)
167
168 2001-09-17: Sander van Leeuwen <sandervl@xs4all.nl>
169 - USER32: o Must return AWP_ACTIVATE/AWP_DEACTIVATE flags in
170 WM_ADJUSTWINDOWPOS (SWP_ACTIVATE/SWP_DEACTIVATE).
171 This ensures activation is handled properly.
172 No longer necessary to manually send WM_ACTIVATE messages.
173 o Only forward SC_CLOSE syscommand to top level window
174 if generated by keyboard
175
176 2001-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
177 - USER32: o Some focus/activation changes
178 o Translation fix for WM_SYSCOMMAND; SC_CLOSE now always
179 directed to top-level window. (OS/2 look only)
180 - ODINBUG: o Update by Herwig Bauernfeind
181 - OLEAUT32/OLE32/QUARTZ/COMDLG32:
182 o Wine updates
183 - COMCTL32: o Wine updates for toolbar, pager & rebar controls
184 o Treeview bugfix when deleting the selected item
185 (fixes crash in UltraEdit when opening files)
186 - * o Put back original sources. Extremely annoying to
187 add tags and change tabs in files.
188
189 2001-09-11: knut st. osmundsen <kosmunds@csc.com>
190 - kKrnlLib: o FYI: Win32k revamp/split-up. Not yet completed.
191
192 2001-09-10: Sander van Leeuwen <sandervl@xs4all.nl>
193 - KERNEL32: o VirtualQuery fix; DosQueryMem doesn't always return region
194 size in pages, so round up size to next page boundary
195 (fixes loop during Netscape 4.7 startup)
196 - GDI32: o DPtoLP fix; signed/unsigned comparison failed
197 (fixes huge fonts in Netscape 4.7)
198 o StretchDIBits fix; clear ulCompression for BI_BITFIELDS
199 or else WGSS blit will fail
200 (fixes black pictures in Netscape 4.7)
201
202 2001-09-09: Sander van Leeuwen <sandervl@xs4all.nl>
203 - TAPI32: o Some updates
204 - OLEAUT32: o Wine typelib updates
205
206 2001-09-07: Patrick Haller <patrick.haller@innotek.de>
207 - include: o removed ./include/wine/server.h (Wine Server)
208 because of collisiton with server.h in OS/2 toolkit
209 - WNETAP32: o NetServerEnum implemented
210 o split into numerous smaller source modules
211
212 2001-09-05: knut st. osmundsen <kosmunds@csc.com>
213 - src\*: o Added/fixed CVS $Id tag in source files.
214 Sorry, if this caused long checkout and compilation. :-)
215 - tools\database:
216 o Fixed a couple of bugs, just in case we get it online some day :-).
217 o More or less implemented @design notes.
218 - tools\dailybuild:
219 o Added automatic uploading of current odin32 api database.
220 (_test_ it at http://odin.netlabs.org/Odin32DBTest/Odin32DB.phtml)
221
222 2001-09-04: knut st. osmundsen <kosmunds@csc.com>
223 - FastDep: o Synced FastDep with OS2Tools.
224
225 2001-09-01: knut st. osmundsen <kosmunds@csc.com>
226 - Tools\CmdQd:
227 o Do DosExecPgm directly on programs when possible.
228 (It's not possible if multiple commands is specified in a job.)
229 o Path search result caching.
230 o Uses CMD.EXE nomatter what is in the COMSPEC.
231 o Corrected memory overwrite in output read loop.
232
Note: See TracBrowser for help on using the repository browser.