source: trunk/changelog@ 8255

Last change on this file since 8255 was 8255, checked in by bird, 23 years ago

* empty log message *

File size: 13.6 KB
Line 
1/* $Id: changelog,v 1.2044 2002-04-13 04:44:49 bird Exp $ */
2
3 2002-04-11: knut st. osmundsen <bird@anduin.net>
4 - Windefs.h:
5 o _MAX_PATH, _MAX_DIR, _MAX_EXT crashes with Watcom C.
6
7 2002-04-11: knut st. osmundsen <bird@anduin.net>
8 - Makefiles:
9 o Output linenumbers to the map file when linking.
10 o Attempt at VAC308 profiling (icsperf.exe).
11 This is only enabled if you set PROFILE without DEBUG.
12 - ProfileFix:
13 o Hack to prevent the app which is profiled to crash
14 on Warp 4.5+.
15 - Install: o Changed it to work with 0.9.18+. Not that this fix
16 requires a bugfix over the 0.9.18 warping release.
17 - DailyBuild:
18 o Updated scripts so I can run the daily build on my
19 workstaion at home.
20
21 2002-04-10: knut st. osmundsen <bird@anduin.net>
22 - UXTHEME: o Stubbed the DLL as some apps keeps trying to load it.
23 - src/makefile:
24 o Update the CUSTOMBUILD module list.
25
26 2002-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
27 - ODINCRT: o Wrote OS/2 version of CriticalSection apis (including
28 support for shared critical sections; which is currently
29 not possible with the Win32 version due to missing
30 support for global object handles in kernel32)
31 - KERNEL32: o Rewrote VMutex class to use odincrt critical sections
32 o Rewrote global vmutex usage (mmap)
33 - USER32: o Rewrote global vmutex usage (window handles)
34 o EnumWindows made safer
35 o Fixed bug in desktop window constructor (double window
36 handle allocation)
37 - WINMM: o Rewrote vmutex usage (wave in/out classes)
38 - GDI32: o Rewrote vmutex usage (object handle functions)
39 - INCLUDE: o Debug wrapper fixes (missing 6th argument)
40
41 2002-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
42 - KERNEL32: o Do not test for write capability with CDROM drives
43 (IOCTL_DISK_IS_WRITABLE)
44
45 2002-03-31: knut st. osmundsen <bird@anduin.net>
46 - Include: o Removed blank lines from odinbuild.h and wrapped
47 the prototype in ifdefs so WIN32API doesn't need
48 to be defined to include the file.
49
50 2002-03-28: Sander van Leeuwen <sandervl@xs4all.nl>
51 - USER32: o Customization changes
52 - WNASPI32: o Fix for disabling aspi by default in custom build
53
54 2002-03-28: Platon Fomichev <platon@innotek.de>
55 - USER32: o Gracefully handle WM_QUIT message sent by window list:
56 do not return from GetMessage with FALSE, but send
57 WM_CLOSE to window. WM_QUIT sent by PostQuitMessage
58 will be handled properly.
59
60 2002-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
61 - KERNEL32: o OpenFileMapping fix
62 (Notes replication seems to work now)
63 o MapViewOfFile fix; all named file mappings can be shared
64 (files & memory only)
65
66 2002-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
67 - KERNEL32: o Removed FindResource hooks
68 - USER32: o Added LoadImageW hook for custom builds
69 - DDRAW: o Do not use XFree driver unless fullscreen mode is enabled
70
71 2002-03-22: Yuri Dario <mc6530@mclink.it>
72 - USER32: o EnumThreadWindows fix (necessary due to recent process &
73 thread id changes)
74
75 2002-03-20: Platon Fomichev <platon@innotek.de>
76 - USER32: o Fixes and changes for minimizing windows (minimized window
77 list; restore; icon paint)
78
79 2002-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
80 - USER32: o BeginPaint change; use entire window if window is minimized
81
82 2002-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
83 - WGSS50: o WGSS update from IBM
84 - WSOCK32: o Return requested version in WSAStartup
85 - GDI32: o Renamed LibMain to avoid name conflict with custom build
86 (shell32)
87
88 2002-03-16: Platon Fomichev <platon@innotek.de>
89 - COMCTL32: o Ownerdrawn listview control items have no margin
90 - USER32: o DIB_BitmapInfoSize fix for 24 bpp bitmaps
91 o CloseWindow change; call ShowWindow(SW_MINIMIZE)
92 o GetWindowPlacement fix; always return internally stored
93 rcNormalPosition
94 - WNASPI32: o Added DisableASPI function
95
96 2002-03-14: knut st. osmundsen <bird@anduin.net>
97 - Fastdep: o Some minor -E<somthing> issues (non Odin32 use).
98
99 2002-03-08: Platon Fomichev <platon@innotek.de>
100 - USER32: o Menu: fix for double click on minimized window (icon)
101
102 2002-03-08: Patrick Haller <patrick.haller@innotek.de>
103 - SHELL32: o WINE sync
104 o some WPS integration (ShellExecute can open WPS objects)
105 - SHLWAPI: o PathIsURLA/W fixes for Flask (crash in Flask->About)
106 - USER32: o Moved some icon extraction functions from shell32 to user32
107 - MAKEFILES:
108 o replaced our version of "netapi32.lib" with "wnetap32.lib"
109 to avoid conflict with toolkit
110 - WNETAP32: o replaced NETAPI32 references by WNETAP32 to avoid
111 toolkit conflict (netapi32.lib)
112 o NetBios support implemented (disabled for now)
113 (yet resources are global and not per-process)
114 - WS2_32: o added fake version of WSAEnumProtocol()
115
116 2002-03-07: Platon Fomichev <platon@innotek.de>
117 - USER32: o CloseWindow fix (use frame window handle)
118 o Minimize window (WinSetWindowPos, SWP_MINIMIZE) on receival
119 of minimize syscommand
120
121 2002-03-06: Platon Fomichev <platon@innotek.de>
122 - USER32: o Fixes for minimized dragging icon and minimized icon distortion
123
124 2002-03-05: Platon Fomichev <platon@innotek.de>
125 - USER32: o Allow single minimize or maximize button in titlebar (os/2
126 appearance)
127
128 2002-03-04: Yuri Dario <mc6530@mclink.it>
129 - KERNEL32: o Update for Italian NLS info
130 o Fall back to English NLS info if time format not found
131
132 2002-03-04: Platon Fomichev <platon@innotek.de>
133 - USER32: o Fix for window restore from minimized state
134
135 2002-02-28: Platon Fomichev <platon@innotek.de>
136 - KERNEL32: o Implemented IOCTL_DISK_IS_WRITABLE ioctl & fixes writing
137 to floppy (DASD mode)
138
139 2002-02-27: Sander van Leeuwen <sandervl@xs4all.nl>
140 - USER32: o Removed WindowFromPoint change; has bad effect on many things
141 - KERNEL32: o Removable disk access fix
142
143 2002-02-26: Sander van Leeuwen <sandervl@xs4all.nl>
144 - USER32: o Rewrote GetWindowThreadProcessId (no longer uses WGSS)
145 o WindowFromPoint change; enumerate z-order, not parent-children
146 - KERNEL32: o Changed GetCurrentThreadId to return unique global thread id
147 ((processid SHL 16) | threadid)
148 Thread ids return by WGSS are unique to the process only.
149
150 2002-02-25: Sander van Leeuwen <sandervl@xs4all.nl>
151 - KERNEL32: o Added hooks for FindResource(Ex)A/W (custom build)
152
153 2002-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
154 - OLE32: o Added some missing exports
155
156 2002-02-23: knut st. osmundsen <bird@anduin.net>
157 - MAKEFILES:
158 o Cleaned up some demangling mess in makefiles.
159 Now both VAC308 and VAC365 builds works again.
160 - /Makefile:
161 o Added a cleanall rule to /makefile which will cleanup
162 for every compiler and all tree build modes.
163 o Corrected problemous odin_library rules in /makefile.
164 (didn't work on a clean tree)
165 - /src/Makefile:
166 o Corrected directory locking for lib module.
167 (Can now build debug and release builds concurrently.)
168 - Tools: o Synced the common kFile* classes with os2tools.
169 (The thing you do when you're supposed to do something else.. ;) )
170
171 2002-02-23: Sander van Leeuwen <sandervl@xs4all.nl>
172 - WSOCK32: o Don't send FD_CONNECT if socket was already connected
173 (accept returns connected socket)
174
175 2002-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
176 - NTDLL/ADVAPI32:
177 o Some Wine updates
178
179 2002-02-21: Platon Fomichev <platon@innotek.de>
180 - IPHLPAPI o GetNetworkParams bugfixes
181
182 2002-02-20: Platon Fomichev <platon@innotek.de>
183 - IPHLPAPI o Implemented GetAdaptersInfo & GetNetworkParams
184
185 2002-02-20: Sander van Leeuwen <sandervl@xs4all.nl>
186 - WSOCK32: o Changed reported winsock version to 2.0 (from 1.1)
187 o Bugfix for accept when changing flags of active async request
188 - COMCTL32: o Listview fix: update item width & height during WM_SIZE
189 (fixes incorrect redraws when selecting items in CVP)
190
191 2002-02-20: Dmitry Froloff <froloff@os2.ru>
192 - PELDR: o Added support for WINDOWSPATH environment variable; PE
193 searches for executables in directories listed in WINDOWSPATH
194
195 2002-02-19: Sander van Leeuwen <sandervl@xs4all.nl>
196 - KERNEL32: o Added support for Russian country code + other countries
197 - OLE32: o Removed old code + some unnecessary changes
198 - SHELL32: o compile fix for SHBrowseForFolderW (due to recent header changes)
199
200 2002-02-18: Patrick Haller <patrick.haller@innotek.de>
201 - USER32: o fixed structure size for
202 SystemParametersInfo(SPI_GETNONCLIENTMETRICSA)
203 o fixed GetModuleHandleW(NULL) string conversion
204
205 2002-02-18: knut st. osmundsen <bird@anduin.net>
206 - KERNEL32: o Tried to work around the 4.51 toolkit issue with the
207 QS*/qs typedefs. Hope this wont cause any problems...
208
209 2002-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
210 - USER32: o Added function to force color to mono mouse cursor conversion
211 (for mouse cursors with more than 2 colors)
212
213 2002-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
214 - OLE32: o Extended logging added
215 o Resync with Wine (20020215)
216 (Out of process COM objects; InstallShield 6)
217 - OLEAUT32: o Partial resync with Wine (20020215)
218 o Extended logging added
219 - COMCTL32: o Extended logging added
220 - KERNEL32: o Named pipe updates
221
222 2002-02-13: Sander van Leeuwen <sandervl@xs4all.nl>
223 - SHELL32: o Extended logging added
224
225 2002-02-12: Sander van Leeuwen <sandervl@xs4all.nl>
226 - SHLWAPI: o StrFromTimeIntervalA/W takes 4 parameters, not 2
227 o Added extended logging
228
229 2002-02-12: Platon Fomichev <platon@innotek.de>
230 - USER32: o Ignore keyboard messages (PM) with scancode 0
231
232 2002-02-11: Platon Fomichev <platon@innotek.de>
233 - USER32: o Fix for double enter keyboard messages
234
235 2002-02-11: Sander van Leeuwen <sandervl@xs4all.nl>
236 - KERNEL32/USER32:
237 o Moved Char*, IsChar*, Oem* functions to kernel32
238 (forwarders in user32)
239 - USER32: o Fixed reference count leak in SetFocus, GetDlgCtrlID,
240 EndDialog & window dtor
241
242 2002-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
243 - USER32: o Extended logging added
244
245 2002-02-10: Platon Fomichev <platon@innotek.de>
246 - USER32\PMKBDHK:
247 o Fixes for shift-enter & shift-enter (numpad)
248 - USER32: o Numpad enter fix for GetKeyNameTextA
249
250 2002-02-10: Dmitry Froloff <froloff@os2.ru>
251 - KERNEL32: o Translate strings used for Dos* functions from Windows
252 to OS/2 codepage
253 o Translate strings returned by Dos* functions from OS/2
254 to Windows codepage
255 - USER32: o Translate strings used to set the window title (OS/2 mode)
256 from Windows to OS/2 codepage.
257
258 2002-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
259 - KERNEL32: o Logging updates
260 - INCLUDE\makefiles:
261 o New rules for generating .def files
262
263 2002-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
264 - KERNEL32: o Implemented tracing of all exported functions
265 (meant to replace ODINFUNCTION* macros; useful mainly
266 to improve logging in Wine modules)
267
268 2002-02-08: Platon Fomichev <platon@innotek.de>
269 - USER32: o Fixes for handling Shift-Enter & Alt-Enter
270
271 2002-02-08: knut st. osmundsen <bird@anduin.net>
272 - WRC: o Added codepage.c from kernel32 as a hotfix to the
273 unresolved external issue. Only the get_char_typeW
274 is enabled.
275
276 2002-02-07: Sander van Leeuwen <sandervl@xs4all.nl>
277 - KERNEL32: o Thread change: determine if thread callback is inside
278 a PE dll. If it is, then force switch to win32 TIB.
279 (necessary for Opera when loading win32 plugins)
280 o Use NLS resources from Wine (no longer rely on OS/2 unicode
281 dll)
282 o ole2nls update; now use GetLocaleInfoA/W from Wine
283
284 2002-02-06: Sander van Leeuwen <sandervl@xs4all.nl>
285 - WSOCK32: o minor recv update for error handling
286 - USER32: o Ported TrackMouseEvent (Wine 20020122)
287 - KERNEL32: o SetWin32TIB update (switch to force switch to win32 FS selector)
288 o Force switch to win32 FS selector when calling PE image
289 entrypoints (necessary for Odin32 applications that use
290 PE dlls (like Opera))
291 - COMCTL32: o Wine updates (smoothscroll, ipaddress, rebar, toolbar, tab,
292 comboex, imagelist) (20020122)
293 - SHLWAPI: o Wine resync (20020122)
294
295 2002-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
296 - USER32: o Ported SendMessageCallbackA/W, SendMessageTimeoutA/W,
297 SendNotifyMessageA/W from Wine (20020122)
298 o Rewrote SendMessageA/W to behave more like Wine
299 (hook calls)
300
301 2002-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
302 - KERNEL32; o Added dummy executable class
303 o Ported GetTempPathA/W from Wine
304
Note: See TracBrowser for help on using the repository browser.