source: trunk/changelog@ 8229

Last change on this file since 8229 was 8224, checked in by bird, 24 years ago

* empty log message *

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