[9318] | 1 | /* $Id: changelog,v 1.2331 2002-10-03 12:49:06 sandervl Exp $ */
|
---|
[9049] | 2 |
|
---|
[9318] | 3 | 2002-10-03: Sander van Leeuwen <sandervl@innotek >
|
---|
| 4 | - KERNEL32: o Added IP logging (define WIN32_IP_LOGGING in dbglog.cpp)
|
---|
| 5 | - IPLOG: o IP logging server
|
---|
| 6 |
|
---|
[9316] | 7 | 2002-10-03: Platon Fomichev <platon@innotek >
|
---|
| 8 | - KERNEL32: o Implemented IOCTL_CDROM_RAW_READ
|
---|
| 9 |
|
---|
[9314] | 10 | 2002-10-01: Sander van Leeuwen <sandervl@innotek >
|
---|
| 11 | - KERNEL32: o Be careful with stack usage in exception handler during
|
---|
| 12 | XCPT_GUARD_PAGE_VIOLATION.
|
---|
| 13 |
|
---|
[9307] | 14 | 2002-09-30: Sander van Leeuwen <sandervl@innotek >
|
---|
| 15 | - SHELL32: o Fixed crash when deleting a file in the file dialog
|
---|
[9309] | 16 | - KERNEL32: o Fixes for volume access
|
---|
[9307] | 17 |
|
---|
[9305] | 18 | 2002-09-30: Platon Fomichev <platon@innotek >
|
---|
| 19 | - COMDLG32: o File dialogs: if lpstrInitialDir is not a dir but a filename
|
---|
| 20 | skip it and use current directory
|
---|
| 21 |
|
---|
[9299] | 22 | 2002-09-27: Sander van Leeuwen <sandervl@innotek >
|
---|
| 23 | - KERNEL32: o GetFileSize must fail for drives
|
---|
[9301] | 24 | o Disable physical disk & volume access by default;
|
---|
| 25 | call EnablePhysicalDiskAccess to enable it (custom build)
|
---|
[9303] | 26 | o FindFirst/NextVolumeA fixes for ignoring LVM volumes
|
---|
[9299] | 27 |
|
---|
[9295] | 28 | 2002-09-26: Sander van Leeuwen <sandervl@innotek >
|
---|
| 29 | - KERNEL32: o OS/2 Physical partition names have base 1 (0 for win32)
|
---|
| 30 | o Convert ERROR_PATH_NOT_FOUND to ERROR_FILE_NOT_FOUND in
|
---|
| 31 | OSLibDosCreateFile
|
---|
| 32 | o IOCTL_DISK_GET_DRIVE_GEOMETRY fix for physical drive
|
---|
| 33 | o Fixed return value for FindNextVolumeMountPointA/W
|
---|
| 34 | o Fixed read & write for unmounted volumes; must update
|
---|
| 35 | current file position manually & check for boundaries
|
---|
| 36 | - WINMM: o Fixed debug wrapper logging
|
---|
| 37 | - USER32: o WM_ADJUSTFRAMEPOS:
|
---|
| 38 | The PM frame control changes the z-order of a child window
|
---|
| 39 | if it receives focus after a window has been destroyed
|
---|
| 40 | We can't let this happen as this breaks assumptions
|
---|
| 41 | elsewhere (e.g. GetNextDlgGroupItem)
|
---|
| 42 | By returning 0 here, we prevent the default frame handler
|
---|
| 43 | from messing things up. (one example is a group of radio buttons)
|
---|
| 44 |
|
---|
[9293] | 45 | 2002-09-24: Vit Timchishin <tivv@ukr >
|
---|
| 46 | - KERNEL32: o Fix for OSLibDosFreeMem
|
---|
| 47 |
|
---|
[9288] | 48 | 2002-09-24: Sander van Leeuwen <sandervl@innotek >
|
---|
| 49 | - BIN: o WGSS update from IBM
|
---|
[9289] | 50 | - IPHLPAPI: o GetNetworkParams: fixed completely broken code to fill in
|
---|
| 51 | DNS entries.
|
---|
[9288] | 52 |
|
---|
[9285] | 53 | 2002-09-19:
|
---|
| 54 | - MAKE, TOOLS/BIN/RM, FASTDEP:
|
---|
| 55 | o IPF and IPP support. They are built in the 'misc' pass.
|
---|
| 56 | See make\testcase\ipf.mak for usage example.
|
---|
| 57 | NB. FastDep does only C styled dependency generation
|
---|
| 58 | for .IPP files.
|
---|
| 59 | o Corrected bad .orc dependency generation.
|
---|
| 60 | o Added some shortcut rules to restart/skip passes.
|
---|
| 61 | o Fixed rm -R filename. Suppressed ERROR_PATH_NOT_FOUND msgs.
|
---|
| 62 |
|
---|
[9267] | 63 | 2002-09-19: Sander van Leeuwen <sandervl@innotek >
|
---|
| 64 | - ODINCRT: o Include new & delete in memory statistics
|
---|
| 65 |
|
---|
[9264] | 66 | 2002-09-19: Platon Fomichev <platon@innotek >
|
---|
| 67 | - USER32: o Put window on top of owner if owner is not in the foreground;
|
---|
| 68 | HWND_TOP forces the owner to the top as well
|
---|
| 69 | (window creation)
|
---|
| 70 |
|
---|
[9263] | 71 | 2002-09-18: Sander van Leeuwen <sandervl@innotek >
|
---|
| 72 | - KERNEL32: o Added code to print leaked heap memory
|
---|
| 73 |
|
---|
[9260] | 74 | 2002-09-18: Platon Fomichev <platon@innotek >
|
---|
| 75 | - USER32: o WM_MOUSEWHEEL update
|
---|
| 76 |
|
---|
[9255] | 77 | 2002-09-17: Platon Fomichev <platon@innotek >
|
---|
| 78 | - USER32: o Create invisible vertical scroller for all top-level windows
|
---|
| 79 | so the IBM wheel driver sends us WM_VSCROLL messages
|
---|
[9257] | 80 | o Added WM_MOUSEWHEEL message support
|
---|
[9255] | 81 |
|
---|
[9246] | 82 | 2002-09-16: Sander van Leeuwen <sandervl@innotek >
|
---|
| 83 | - COMCTL32: o LISTVIEW_ProcessLetterKeys bugfix
|
---|
[9248] | 84 | - GDI32: o Statistics fixes & print leaked gdi handles
|
---|
| 85 | when unloaded.
|
---|
[9250] | 86 | o Don't recycle handles too soon. That makes it more difficult
|
---|
[9249] | 87 | to interpret the logfile.
|
---|
[9246] | 88 |
|
---|
[9253] | 89 | 2002-09-16: Platon Fomichev <platon@innotek >
|
---|
| 90 | - USER32: o Combobox fix to update selected item when the control is rolled
|
---|
| 91 | up
|
---|
| 92 |
|
---|
[9245] | 93 | 2001-09-15: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
| 94 | - SHELL32: o Wine resync for shfileop.c
|
---|
| 95 |
|
---|
[9234] | 96 | 2002-09-14: Sander van Leeuwen <sandervl@innotek >
|
---|
| 97 | - KERNEL32: o WaitForSingleObject, (Msg)WaitForMultipleObjects:
|
---|
| 98 | If dwTimeout is not 0 and smaller than 20 ms, then
|
---|
| 99 | temporarily change thread priority to time critical to
|
---|
| 100 | make sure we don't get a late timeout.
|
---|
| 101 | (CLOCKSCALE=4 in config.sys also improves timeout responds)
|
---|
| 102 |
|
---|
[9231] | 103 | 2002-09-14: Yuri Dario <mc6530@mclink >
|
---|
| 104 | - DSOUND: o Load MMPM2 (MDM.DLL) on demand
|
---|
| 105 |
|
---|
[9229] | 106 | 2002-09-12: Platon Fomichev <platon@innotek >
|
---|
| 107 | - USER32: o Translate PM WM_VSCROLL to WM_MOUSEWHEEL messages (currently
|
---|
| 108 | only dispatched to (dinput) hook handler)
|
---|
| 109 |
|
---|
[9226] | 110 | 2002-09-12: knut st. osmundsen <bird@anduin >
|
---|
| 111 | - MAKE: o Corrected bug in process which made it put the libraries in
|
---|
| 112 | the wrong place.
|
---|
| 113 | o Always stamp the .def file before linking so that build level
|
---|
| 114 | info will be up to date.
|
---|
| 115 | o Added some shortcuts rules for lazy programmers:
|
---|
| 116 | * pass[1-6] for starting from a given pass.
|
---|
| 117 | * quick for only doing lib, executable and publish.
|
---|
| 118 |
|
---|
[9221] | 119 | 2002-09-10: knut st. osmundsen <bird@anduin >
|
---|
| 120 | - TOOLS/VSLICK:
|
---|
| 121 | o Added kdev.e. Odin32.e with more goodies like an 'Extra' menu.
|
---|
| 122 |
|
---|
[9215] | 123 | 2002-09-05: Sander van Leeuwen <sandervl@innotek >
|
---|
[9221] | 124 | - USER32: o Caret bug in edit control WM_ERASEBKGND handler (hidden,
|
---|
[9215] | 125 | but not shown again)
|
---|
| 126 | o Removed obsolete hack in CreateCaret
|
---|
| 127 |
|
---|
[9219] | 128 | 2002-09-05: Dietrich Teickner <Dietrich_Teickner@t-online >
|
---|
| 129 | - COMDLG32: o Corrected translation of IDS_TODESKTOP resource string
|
---|
| 130 |
|
---|
[9210] | 131 | 2002-09-04: knut st. osmundsen <bird@anduin >
|
---|
| 132 | - FASTDEP: o Corrected bug in caching. Didn't force rescan of files when
|
---|
| 133 | a dependant file wasn't present any more.
|
---|
[9214] | 134 | o Corrected makefile. No memory debug.
|
---|
| 135 | - CMDQD: o Corrected makefile.
|
---|
[9210] | 136 |
|
---|
| 137 | - Tools/DailyBuilds:
|
---|
| 138 | o Changed odin32env.cmd to use buildenv.cmd to set up the
|
---|
| 139 | desired build environment.
|
---|
| 140 | o Changed odin32clean.cmd to use tools\bin\rm.exe.
|
---|
[9214] | 141 | - MAKE: o Corrected CC_NO_DBGMEM check for vac3xx.
|
---|
[9210] | 142 |
|
---|
[9197] | 143 | 2002-09-03: Sander van Leeuwen <sandervl@innotek >
|
---|
| 144 | - USER32: o Cleaned up clipboard code
|
---|
| 145 |
|
---|
[9199] | 146 | 2002-09-03: Platon Fomichev <platon@innotek >
|
---|
| 147 | - USER32: o Fix for Ctrl-Break
|
---|
| 148 |
|
---|