source: trunk/changelog@ 8305

Last change on this file since 8305 was 8305, checked in by sandervl, 23 years ago

* empty log message *

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