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