source: trunk/changelog@ 8376

Last change on this file since 8376 was 8376, checked in by bird, 24 years ago

* empty log message *

File size: 6.1 KB
Line 
1/* $Id: changelog,v 1.2063 2002-05-07 09:21:04 bird Exp $ */
2
3 2002-05-07: knut st. osmundsen <bird@anduin.net>
4 - CmdQd: o The daemon shouldn't inherit standard handles when started.
5 (Hung the daily build, since we use tee to do logging.)
6
7 2002-05-06: Sander van Leeuwen <sandervl@xs4all.nl>
8 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
9
10 2002-05-01: Sander van Leeuwen <sandervl@xs4all.nl>
11 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
12 translation array
13
14 2002-04-30: Sander van Leeuwen <sandervl@xs4all.nl>
15 - GDI32: o Font renaming support added to EnumFontFamiliesA/W
16 - USER32: o Implemented WH_MOUSE_LL hook
17 o Removed DInput hack for keyboard & mouse message translation
18 - DINPUT: o Resync with last X11 licensed Wine (TODO: LGPL)
19
20 2002-04-30: knut st. osmundsen <bird@anduin.net>
21 - KERNEL32: o Changes for debug heap (makefile + exception handler)
22
23 2002-04-30: Platon Fomichev <platon@innotek.de>
24 - KERNEL32: o FileTimeToSystemTime, DosDateTimeToFileTime &
25 SystemTimeToFileTime bugfixes
26 - USER32: o Focus fix when minimizing window
27
28 2002-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
29 - KERNEL32: o Export RegisterCustomDriver
30
31 2002-04-29: Patrick Haller <patrick.haller@innotek.de>
32 - OLEAUT32: o Clean up hash object during dll unload
33 - KERNEL32: o Fixed memory leaks in handlename class, Win32ImageBase::isPEImage
34 and DestroyTIB
35 o fixed unicode conversion for APIs that allow
36 NULL strings as input parameter (SearchPathW,
37 Registry APIs) not to set last error to EROROR_INVALID_HANDLE
38 o wprocess.cpp:
39 - set ODIN32.DEBUG_CHILD=ICSDEBUG.EXE will cause CreateProcess
40 to start PE-clients inside a new debugger instance
41 - GetModuleFileName fixes (don't count zero termination)
42 o don't set last error in HeapFree()
43 - COMCTL32: o Draglist control bugfix (crash)
44
45 2002-04-28: knut st. osmundsen <bird@anduin.net>
46 - Configure.cmd, Odincrt:
47 o Added option --with-klib to configure.cmd to link
48 odincrt with the electric debug heap of kLib.
49 Concider this experimental!
50
51 2002-04-28: Platon Fomichev <platon@innotek.de>
52 - USER32: o Focus fix when minimizing window
53 - IPHLPAPI: o Bugfix
54
55 2002-04-24: Platon Fomichev <platon@innotek.de>
56 - USER32: o Don't activate window when it's minimized (ShowWindow)
57 o Deactivate window & move to bottom of z-order when it's
58 minimized
59 o Listbox fix; rollup dropdown if mouse button pressed outside
60 control
61
62 2002-04-17: Platon Fomichev <platon@innotek.de>
63 - COMDLG32: o If application specifies full path in file dialog structure
64 (and initial dir string is NULL), then change to the directory.
65
66 2002-04-17: knut st. osmundsen <bird@anduin.net>
67 - Makefiles:
68 o Use the VAC40 profiler for profiling in PROFILE=1, DEBUG=
69 mode. See /tools/profilerfix/Readme.1st for details.
70 - ProfilerFix:
71 o Added readme.1st for VAC308, vac365 profiling using the
72 VAC4 profiler features.
73
74 2002-04-14: knut st. osmundsen <bird@anduin.net>
75 - KERNEL32: o Cache CDROM drive letters in OSLibGetDriveType.
76 o Added testcases to makescripts in the testcase subdir.
77 'nmake build testcase' from that dir will build test
78 program(s) and run testcases.
79
80 2002-04-13: knut st. osmundsen <bird@anduin.net>
81 - Windefs.h:
82 o _MAX_PATH, _MAX_DIR, _MAX_EXT crashes withc Watcom C.
83 - KERNEL32: o GetDriveType optimizations.
84 Made it just as strict as WinXP. Hope this won't
85 blow up any thing. (A little bit worried about a call in
86 shell32/folders.c and mci_open.)
87 o Corrected a call to GetDirveTypeA in hmdisk.cpp. (paranoia)
88 o Made (stupid) test program which is placed in the testcase
89 subdir. This is compilable for both OS/2 and NT.
90 o Hot fix for 0 CDROM issue. (To be removed)
91
92 - USER32: o Corrected a call to GetDriveTypeA. (missing ':')
93
94 2002-04-11: knut st. osmundsen <bird@anduin.net>
95 - Makefiles:
96 o Output linenumbers to the map file when linking.
97 o Attempt at VAC308 profiling (icsperf.exe).
98 This is only enabled if you set PROFILE without DEBUG.
99 - ProfileFix:
100 o Hack to prevent the app which is profiled to crash
101 on Warp 4.5+.
102 - Install: o Changed it to work with 0.9.18+. Not that this fix
103 requires a bugfix over the 0.9.18 warping release.
104 - DailyBuild:
105 o Updated scripts so I can run the daily build on my
106 workstaion at home.
107
108 2002-04-10: knut st. osmundsen <bird@anduin.net>
109 - UXTHEME: o Stubbed the DLL as some apps keeps trying to load it.
110 - src/makefile:
111 o Update the CUSTOMBUILD module list.
112
113 2002-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
114 - ODINCRT: o Wrote OS/2 version of CriticalSection apis (including
115 support for shared critical sections; which is currently
116 not possible with the Win32 version due to missing
117 support for global object handles in kernel32)
118 - KERNEL32: o Rewrote VMutex class to use odincrt critical sections
119 o Rewrote global vmutex usage (mmap)
120 - USER32: o Rewrote global vmutex usage (window handles)
121 o EnumWindows made safer
122 o Fixed bug in desktop window constructor (double window
123 handle allocation)
124 - WINMM: o Rewrote vmutex usage (wave in/out classes)
125 - GDI32: o Rewrote vmutex usage (object handle functions)
126 - INCLUDE: o Debug wrapper fixes (missing 6th argument)
127
128 2002-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
129 - KERNEL32: o Do not test for write capability with CDROM drives
130 (IOCTL_DISK_IS_WRITABLE)
131
Note: See TracBrowser for help on using the repository browser.