Changeset 7570 for trunk/changelog
- Timestamp:
- Dec 8, 2001, 11:14:18 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r7565 r7570 1 /* $Id: changelog,v 1.188 8 2001-12-07 14:12:25sandervl Exp $ */1 /* $Id: changelog,v 1.1889 2001-12-08 10:14:18 sandervl Exp $ */ 2 2 3 3 2001-12-07: Sander van Leeuwen <sandervl@xs4all.nl> … … 75 75 - USER32: o MENU_FindItem: extra check added for loops in menus 76 76 77 2001-11-30: Patrick Haller <patrick.haller@innotek.de>78 - KERNEL32: o heapstring.cpp: improvement on HEAP_malloc, HEAP_free,79 HEAP_realloc, HEAP_size80 o acceleration on GetCurrentThreadId()81 - SHELL32: o use HEAP_xxx functions for frequently called APIs82 - ODINPROF: o Note: SET PROFILEHOOKS=1 before doing NMAKE PROFILE=183 This will enable the profiler in ODINCRTP.DLL84 (use release build ODINPROF.DLL), generates (pid).prof85 on process exit.86 - * o fixed out-of-scope TRACE,FIXME,WARN macros87 88 2001-11-30: Sander van Leeuwen <sandervl@xs4all.nl>89 - USER32: o Changed menu hilite background to the color used by PM90 (OS/2 look)91 o DIALOG_IsAccelerator resync (Wine)92 - KERNEL32: o Partly implemented PurgeComm93 - * o Removed all the TRACE, FIXME & WARN redefinitions94 (temporary hack for better logging; didn't affect the release95 build anyway)96 TODO: we need better logging in Wine code97 98 2001-11-29: Patrick Haller <patrick.haller@innotek.de>99 - KERNEL32: o Split dosdevice.cpp from stubs.cpp100 (DefineDosDevice, QueryDosDevice)101 o Fixed CDROM ioctls and disk access102 (previous fix failed or cause possible regression)103 - OLEAUT32: o olepicture.c: fixed null pointer exception104 cause: our TRACE, FIXME, etc. debugtools macros all105 go out of scope of a braceless if-statement before!106 Therefore, we're getting false (error) messages or107 even crashes. (to be fixed)108 109 2001-11-29: Sander van Leeuwen <sandervl@xs4all.nl>110 - COMCTL32: o Listview: invalidate entire item for ownerdraw control111 (don't exclude report margin)112 - KERNEL32: o Fixed disk access (yesterday's changes broke it)113 - SHELL32: o Removed wrong call to ctordtorInit that caused the disk114 access problems in the custom build.115 116 2001-11-28: Patrick Haller <patrick.haller@innotek.de>117 - KERNEL32: o fixes in ::CreateFile calls (return codes must be Win32)118 o fixes in symbolic link management119 o marked some important TBDs for phys. disk mgmt!120 o fixed HMCOMM to accept (what a good idea)121 \\.\COM1, COM1, COM1: but not "\\.\COM1:" (NT4SP6)122 o added support for AUX->COM1, PRN->LPT1, CON->CONOUT$123 o added NUL device124 125 2001-11-28: Sander van Leeuwen <sandervl@xs4all.nl>126 - KERNEL32: o WaitCommEvent fixes (must reset overlapped event semaphore &127 store result of overlapped operation in parameter)128 o Removed symbolic link for \\.\. Adding this is a very bad idea129 as CreateFile calls for device driver will be routed to files.130 Probably causes even more problems.131 - INCLUDE: o winbase.h: CBR_xxxx definitions wrong132 133 2001-11-27: Patrick Haller <patrick.haller@innotek.de>134 - KERNEL32: o added \\.\ as standard symbolic link to the local namespace135 This is the clean way for alternative device names,136 local kludges in the device handlers should be avoided.137 o fix in name resolver138 139 2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>140 - WSOCK32: o Missing FS wrapper macros added141 - KERNEL32: o Accept \\.\COMx as name for COM ports142 - USER32: o EnumChildWindow bugfix143 144 2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>145 - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm146 o Preliminary work on overlapped IO for serial comm147 148 2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>149 - KERNEL32: o Custom build fix; check for double call for inittermKernel32150 o More informative message when non-existing api is called.151 Now displays dll + function name or ordinal.152 153 2001-11-23: Patrick Haller <patrick.haller@innotek.de>154 - KERNEL32: o minor work in parallel port support (ioctls)155 o "Kernel Object Namespace" -> handlenames.cpp introduced156 (yet inactive)157 158 2001-11-23: knut st. osmundsen <kosmunds@csc.com>159 - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).160 161 2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>162 - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to163 see if the media has been changed or removed.164 o Implemented WriteFile & GetFileType for disk handles165 (write currently only allowed for drive A)166 - DSOUND: o Renamed DllGetClassObject & DllCanUnloadNow to avoid name167 conflicts in the custom build.168 169 2001-11-22: Patrick Haller <patrick.haller@innotek.de>170 - ODINPROF: o initial version171 PROFILE images using ODINCRTP generate a <pid>.prof file172 (the optimized release build of ODINPROF should be used)173 No source code modification required.174 Problem: mapsym seems to corrupt kernel32.sym175 - KERNEL32: o additions to parallel port support176 177 2001-11-21: knut st. osmundsen <kosmunds@csc.com>178 - src/makefile:179 o Added guidlib to NOTDLLS.180 181 2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>182 - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)183 - USER32: o GetMenu: check that window menu is indeed a menu and not an id184 (fixes failed assertion in ZOC)185 o Groupbox fix: if text changes; erase top border + old text186 187 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>188 - USER32: o Destroy CD notification window during dll unload189 o Focus fix for dialog windows190 Experiments in NT4 show that dialogs that are children don't191 receive focus. Not sure if this is always true. (couldn't192 find any info about this in the SDK docs)193 194 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>195 - GUIDLIB: o Library with all GUIDs used by Odin196 - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:197 o Removed guid source files and link with guidlib.lib198 199 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>200 - WS2_32: o Compile fix201 - OLEAUT32: o Don't include guid file in custom build library202 203 2000-11-18: Yuri Dario <mc6530@mclink.it>204 - USER32: o WM_SETTEXT (unicode) fix205 (latest changes broke Opera among other things)206 207 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>208 - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)209 - USER32: o Disallow nested calls to SetScrollRange. This is most likely210 not the right fix, but it works so far without negative side211 effects.212 (fixes crash in CVP listview with 4+ items)213 - GDI32: o Removed line draw speedup. If I have to choose between214 a performance loss of a few clock cycles and a code size215 increase of 2k, I prefer the 1st option.216 - WSOCK32: o ODINWRAP changes break winsock. This code still depended217 on FS save/restore. Now added a wrapper header for all218 OS/2 socket functions.219 220 2001-11-16: Patrick Haller <patrick.haller@innotek.de>221 - ODINWRAP: o don't generate any frame procedure for RELEASE build222 anymore (even no FS: wrapper (meanwhile superfluous))223 -> significant performance gain for logged micro functions224 - KERNEL32: o heap speedup (30%)225 - GDI32: o minor line drawing speedup226 227 2001-11-14: Patrick Haller <patrick.haller@innotek.de>228 - KERNEL32: o fixed infinite loop in PE loader for corrupted or229 misinterpreted PE images (Opera 6)230 - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate231 232 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>233 - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:234 o Removed unnecessary string copy operation changes (heap -> stack)235 Performance improvement is minimal at best and stack236 corruption is MUCH harder to locate than heap corruption.237 238 2001-11-13: Patrick Haller <patrick.haller@innotek.de>239 - fastdep: o IPF support.240 241 2001-11-13: Patrick Haller <patrick.haller@innotek.de>242 - KERNEL32: o provided faster alternatives to HEAP_strdupXXX243 ... which operate on stack only (STACK_strdupXXX)244 This could slightly reduce heap pressure.245 - USER32: o avoid unnecessary strcpy/strlen when get/setting window text246 247 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>248 - KERNEL32: o Added missing entry in debug log table for hmparport249 (fixes crash in debug build with selective logging)250 - GDI32: o CalcBitmapSize bugfix251 o SetDIBitsToDevice workaround for bug in Matrox driver.252 When blitting 32 bpp data, the GpiDrawBits call will253 fail with an insufficient memory error. When that happens,254 convert data to 24 bpp and try again.255 (TODO: This can happen in more functions!!)256 o Fixes for wrong bit masks in several functions (24 & 32 bpp)257 o Refuse DeleteObject for DEFAULT_GUI_FONT handle258 259 2001-11-12: Patrick Haller <patrick.haller@innotek.de>260 - ODINWRAP: o improved thread call path tracking261 (now collects i. e. HEAP_malloc->HeapAlloc paths)262 263 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>264 - USER32: o Fix for calculating font size for a dialog box265 266 2001-11-11: knut st. osmundsen <kosmunds@csc.com>267 - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.268 (Build breaker. Seems like someone has an old toolkit...)269 270 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>271 - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask272 273 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>274 - COMCTL32: o Ported latest Wine property sheet control275 (fixes some, but not all problems in CVP)276 277 2001-11-08: Patrick Haller <patrick.haller@innotek.de>278 - KERNEL32: o first shot at parport support279 280 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>281 - USER32: o EndDialog fix for MFC dialog windows282 o static control fix: SS_CENTERIMAGE means fill remainder283 of client area with upper left pixel of bitmap284 - KERNEL32: o Fix for applications that use CreateFile to open285 a named pipe286 287 2001-11-07: Patrick Haller <patrick.haller@innotek.de>288 - WININET: o http, internet: WINE sync289 290 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>291 - KERNEL32: o Call old DosOpen if DosOpenL not available292
Note:
See TracChangeset
for help on using the changeset viewer.