source: trunk/changelog@ 9301

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

* empty log message *

File size: 5.8 KB
Line 
1/* $Id: changelog,v 1.2324 2002-09-27 13:57:30 sandervl Exp $ */
2
3 2002-09-27: Sander van Leeuwen <sandervl@innotek >
4 - KERNEL32: o GetFileSize must fail for drives
5 o Disable physical disk & volume access by default;
6 call EnablePhysicalDiskAccess to enable it (custom build)
7
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
25 2002-09-24: Vit Timchishin <tivv@ukr >
26 - KERNEL32: o Fix for OSLibDosFreeMem
27
28 2002-09-24: Sander van Leeuwen <sandervl@innotek >
29 - BIN: o WGSS update from IBM
30 - IPHLPAPI: o GetNetworkParams: fixed completely broken code to fill in
31 DNS entries.
32
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
43 2002-09-19: Sander van Leeuwen <sandervl@innotek >
44 - ODINCRT: o Include new & delete in memory statistics
45
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
51 2002-09-18: Sander van Leeuwen <sandervl@innotek >
52 - KERNEL32: o Added code to print leaked heap memory
53
54 2002-09-18: Platon Fomichev <platon@innotek >
55 - USER32: o WM_MOUSEWHEEL update
56
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
60 o Added WM_MOUSEWHEEL message support
61
62 2002-09-16: Sander van Leeuwen <sandervl@innotek >
63 - COMCTL32: o LISTVIEW_ProcessLetterKeys bugfix
64 - GDI32: o Statistics fixes & print leaked gdi handles
65 when unloaded.
66 o Don't recycle handles too soon. That makes it more difficult
67 to interpret the logfile.
68
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
73 2001-09-15: Dietrich Teickner <Dietrich_Teickner@t-online >
74 - SHELL32: o Wine resync for shfileop.c
75
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
83 2002-09-14: Yuri Dario <mc6530@mclink >
84 - DSOUND: o Load MMPM2 (MDM.DLL) on demand
85
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
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
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
103 2002-09-05: Sander van Leeuwen <sandervl@innotek >
104 - USER32: o Caret bug in edit control WM_ERASEBKGND handler (hidden,
105 but not shown again)
106 o Removed obsolete hack in CreateCaret
107
108 2002-09-05: Dietrich Teickner <Dietrich_Teickner@t-online >
109 - COMDLG32: o Corrected translation of IDS_TODESKTOP resource string
110
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.
114 o Corrected makefile. No memory debug.
115 - CMDQD: o Corrected makefile.
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.
121 - MAKE: o Corrected CC_NO_DBGMEM check for vac3xx.
122
123 2002-09-03: Sander van Leeuwen <sandervl@innotek >
124 - USER32: o Cleaned up clipboard code
125
126 2002-09-03: Platon Fomichev <platon@innotek >
127 - USER32: o Fix for Ctrl-Break
128
Note: See TracBrowser for help on using the repository browser.