source: trunk/changelog@ 9092

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

* empty log message *

File size: 7.6 KB
Line 
1/* $Id: changelog,v 1.2283 2002-08-22 14:19:54 sandervl Exp $ */
2
3 2002-08-22: Sander van Leeuwen <sandervl@innotek >
4 - SHELL32: o Added bugfix to IEnumIDList_Folder_Constructor (from Wine)
5 o Enabled Christoph Bratschi's CreateFolderEnumList optimization
6 - KERNEL32: o Rewrote GetFileAttributesA & translate filename used from Windows
7 to OS/2 codepage
8
9 2002-08-21: knut st. osmundsen <bird@anduin >
10 - MAKE: o Implemented a 'needed' pass to make required tools (for
11 instance code generators).
12 o Made SUBDIRS and PRE/POSTMAKEFILES more customizable by
13 adding support for override macros:
14 [SUBDIRS|[PRE|POST]MAKEFILES]_<mainrule>
15 This is good when you wanna skip a tree for a rule (=pass)
16 or/and just run do a rule (=pass) in a specific tree.
17 o Added check for TARGET_PRIVATE macro before installing
18 anything.
19 - CMDQD, FASTDEP:
20 o Made makefiles support the new build system.
21 (Testing for the env.var. BUILD_SETUP_MAK.)
22
23 2002-08-21: Sander van Leeuwen <sandervl@innotek >
24 - KERNEL32: o EV_RLSD/MS_RLSD_ON status corresponds to OS/2 DCD (data carrier detect) status
25 GetCommModemStatus & GetCommEvent changed
26 Removed from unsupported flags in SetCommMask.
27
28 2002-08-21: Platon Fomichev <platon@innotek >
29 - USER32: o Fixed OSLibWinSetSysValue
30 o Fixed OSLibSetWindowStyle; delete frame controls if required
31
32 2002-08-21: Yuri Dario <mc6530@mclink >
33 - USER32: o OSLibWinChangeTaskList & OSLibWinAddToTaskList bugfixes;
34 wrong CharToOemBuffA call.
35
36 2002-08-20: knut st. osmundsen <bird@anduin >
37 - FASTDEP: o Support for special makefile chars.
38 o Optimized cyclic dependency checks for large systems.
39 - MAKE: o Corrected all ilib (AR) rules.
40 o Quick LIB testcases.
41
42 2002-08-20: Platon Fomichev <platon@innotek >
43 - COMCTL32: o Trackbar: set position fix
44
45 2002-08-19: knut st. osmundsen <bird@anduin >
46 - MAKE: o New TARGET_MODE: DEPEND.
47 o ilib+dashes and some other bugfixing.
48 o VAC debug memory management option.
49 o Implemented structured make passes.
50 o Polish.
51 - TOOLS: o Did some polish and help on BuildEnv.cmd.
52 o Show make pass number while traversing the tree. (Do*.cmd)
53
54 2002-08-19: Sander van Leeuwen <sandervl@innotek >
55 - USER32: o Don't send queued WM_CHAR messages for windows that have
56 just been destroyed. (Get/PeekMessage)
57
58 2002-08-17: Yuri Dario <mc6530@mclink >
59 - INCLUDE: o Fixed INT32 definition
60 - USER32: o Merged latest Rewind edit control code
61
62 2002-08-16: Sander van Leeuwen <sandervl@innotek >
63 - WINMM: o Put back old wave playback resume code
64 - DINPUT: o Merged with latest Wine (DirectInput 8 support)
65 o Added bugfix from June 18th:
66 SysMouseAImpl_GetDeviceData: check if internal dinput
67 mouse state is out of sync and update if necessary
68 - USER32: o SetCursorPos change:
69 The current cursor position may not have been passed to the application
70 just yet. The position change discards any previous events which may
71 lead to inconsistent mouse behaviour (like in DirectInput).
72 To fix this, we pass down a mouse move event to any hook handlers.
73
74 2002-08-16: Platon Fomichev <platon@innotek >
75 - KERNEL32: o Fully implemented GetShortPathNameA/W & GetLongPathNameA/W
76 (based on Rewind code)
77
78 2002-08-15: Yuri Dario <mc6530@mclink >
79 - USER32: o SPI_GETNONCLIENTMETRICS size check extended
80 o Fixed RMB on icon of minimized mdi window
81
82 2002-08-14: Sander van Leeuwen <sandervl@innotek >
83 - USER32: o CUSTOM_TRACKFRAME code is the default now. removed old code
84 - WINMM: o Dart wave playback bugfix
85
86 2002-08-14: Yuri Dario <mc6530@mclink >
87 - USER32: o RMB on system menu icon pops up system menu (OS/2 look)
88 o GetSysPopupPos fix
89
90 2002-08-13: Sander van Leeuwen <sandervl@innotek >
91 - GDI32: o SelectObject bugfix for region handles. (fixes crash in
92 Freecell)
93 - USER32: o Added more logging for PM SWP & QFC flags
94 o Enable owner of window destroyed by DestroyWindow. Disabled
95 owners will never be activated by PM.
96
97 2002-08-13: Yuri Dario <mc6530@mclink >
98 - USER32: o Resync WM_RBUTTONUP & WM_CONTEXTMENU default window handlers
99 (Rewind)
100
101 2002-08-12: Sander van Leeuwen <sandervl@innotek >
102 - DDRAW: o SetCustomFullScreenMode added to force DirectDraw to
103 report only one fullscreen mode
104 o Added cases for 32 bpp in mode enumeration
105 o DrawEnumDisplayModes bugfixes
106 o Call ShowWindow in SetCooperativeLevel (if valid window)
107 o Resize associated window to full screen in SetCooperativeLevel
108 (not sure if this is correct)
109 o Call DrawSetDisplayMode2 in DrawSetDisplayMode (code duplication)
110
111 2002-08-12: Platon Fomichev <platon@innotek >
112 - COMCTL32: o Tooltips: ignore TTS_ALWAYSTIP style. Windows 2000 appears
113 to do the same.
114 - USER32: o Wine (X11) resync for AdjustRectOuter
115
116 2002-08-10: Sander van Leeuwen <sandervl@innotek >
117 - WGSS50: o Update from IBM
118
119 2002-08-09: Sander van Leeuwen <sandervl@innotek >
120 - USER32: o Partly implemented GetGUIThreadInfo
121 - KERNEL32: o Lock drive when sharing is disabled (CreateFile for drives);
122 unlock when closed
123
124 2002-08-08: Platon Fomichev <platon@innotek >
125 - USER32: o Fix for handling VK_RETURN in dialogs
126
127 2002-08-08: Sander van Leeuwen <sandervl@innotek >
128 - ChangeLog:o Obfuscated email addresses because people continue to
129 post the ChangeLog file in mailinglists/newsgroups.
130 - KERNEL32: o CreateFile now fails earlier if used for non-existing drive
131 letter.
132 - OLE32: o Disabled mouse cursor changes in drag 'n drop code.
133 (causes mouse cursor changes when clicking on item in
134 file open dialog)
135
136 2002-08-07: Platon Fomichev <platon@innotek >
137 - USER32: o Listbox fix for keyboard search (Rewind (Wine/X11))
138
139 2002-08-05: Sander van Leeuwen <sandervl@innotek >
140 - USER32: o MsgWaitForMultipleObjects changes; check objects before
141 message queue status
142 o Translate WM_DRAWCLIPBOARD for clipboard change notification
143
144 2002-08-04: Sander van Leeuwen <sandervl@innotek >
145 - KERNEL32: o Return ERROR_OPERATION_ABORTED in GetOverlappedResult if
146 request was cancelled
147
148 2002-08-01: Sander van Leeuwen <sandervl@innotek >
149 - WINMM: o Keep filling DART buffers during WaveOutWrite until there's
150 no more room.
151 o Fill DART buffers during resume
152 - KERNEL32: o Create event semaphore during TEB setup. Used for
153 Post(Thread)Message in combination with MsgWaitForMultipleObjects
154 - USER32: o MsgWaitForMultipleObjects; change for waiting for object &
155 message (timeout != 0, fWaitAll == FALSE, nCount > 0)
156 If dwWakeMsg & QS_POSTMESSAGE, also wait for post msg event
157 semaphore.
158 o Signal post message event semaphore in PostMessageA/W &
159 PostThreadMessage
160
Note: See TracBrowser for help on using the repository browser.