source: trunk/changelog@ 2439

Last change on this file since 2439 was 2439, checked in by cbratschi, 26 years ago

* empty log message *

File size: 11.4 KB
Line 
1 /* $Id: changelog,v 1.647 2000-01-14 17:47:13 cbratschi Exp $ */
2
3 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
4 - USER32/NEW: added caption clipping for faster window text updates
5
6 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
7 - USER32\NEW: Fixed min/max bug for mdi child windows
8 Fixed DrawMenuBar (invalidate frame rectangle in
9 FrameUpdateClient if client rectangle wasn't changed)
10 Fixed bugs in MsgFormatFrame & SendNCCalcSize
11 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
12 (Winamp works now)
13 Removed code that's no longer used (subclassed OS/2 frame
14 controls & OS/2 scrollbar functions etc)
15
16 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
17 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
18 is activated or deactivated
19 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
20 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
21 Return window desktop handle for window handle returned by
22 SetActiveWindow if window is non-Odin.
23 Fixed activation of windows. (send WM_ACTIVATE when receiving
24 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
25 Fixed DrawFrame; bottom & right frame borders now drawn correctly
26 Fixed scrollbar positioning (style.exe)
27 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
28 DC to save/restore a window's own dc.
29 Fixed client rectangle problems. Client rectangles
30 are always in frame coordinates; window rectangles in
31 screen coordinates. Whenever necessary (i.e WM_MOVE)
32 client coordinates are converted to coordinates relative
33 to it's parent client window.
34 Changed WM_MOVE -> client coordinates relative to parent origin
35 if child; otherwise relative to screen origin. (needs testing)
36 (WM_NCCALCSIZE needs to be done as well)
37 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
38<<<<<<< ChangeLog
39=======
40 - KERNEL32: Added DisableLogging & EnableLogging functions to
41 disable logging in parts of code. Logging will only be
42 done if the logcount is bigger than 0.
43>>>>>>> 1.646
44
45
46 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
47 - USER32/NEW: fixed WM_CALCVALIDRECTS
48 activated WM_NCPAINT clipping
49 added improved frame redraw mechanism
50
51 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
52 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
53 handler anymore) -> fixes problems with Shell About dialog
54 and jumping controls when resizing (Winhlp32)
55 Fixed menu tracking for different submenus
56 Fixed delayed repaints of invalidated menu rectangles
57 Ported Wine messagebox code. (for GUI consistency)
58 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
59 in notepad)
60 Fixed 'frame' control updates (resizing client window in
61 SetWindowPos for SWP_FRAMECHANGED)
62
63 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
64 - TWAIN_32: Bugfix (removed test code)
65
66 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
67 - USER32/NEW: fixed AdjustWindowRectEx
68
69 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
70 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
71 Removed hardcoded dependancy on shell32; load it on-demand
72 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
73 Fixed wrong return value for OSLibWinGetMsg
74 Workaround for bug in GDI32 FillRect (menu items painted
75 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
76 Applied patch to Wine menu code for RealPlayer
77 Fixed default return value of DefWndProc (0)
78 Fixed SetMenu (menus should be set when a window is no child)
79 Call correct SetMenu function from MsgCreate Win32BaseWindow method
80 Use WIN32_INNERFRAME frame class for top level windows again.
81 (VPBuddy repaint problems were solved by using this class)
82
83 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
84 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
85 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
86 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
87 there's no audio device
88 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
89 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
90 or button down/up message translation.
91 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
92 Added WM_NCACTIVATE message generation
93 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
94 Changed GetSystemMenu; added method to Win32BaseWindow class
95 (destroy old menu if present and switch back to default system
96 menu if bRevert = TRUE; needs changes in non-client code)
97
98 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
99 - USER32/NEW: activated menu code
100
101 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
102 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
103 (borders are not drawn correctly)
104 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
105 client/window rectangle when size nor position have changed)
106 Fixed out of sync rectWindow. (children don't get notified of
107 parent position change -> rectWindow (in screen coord.) not updated)
108 Fixed LoadBitmap for system bitmaps
109 Fixes for win32 titlebar + added win32 system menu
110 System menu commands now work
111 Fixed repaint problem for win32 titlebar
112 Added Christoph's gradient filled title bars code
113 For (experimental) win32-like windows add this to odin.ini:
114 [CUSTOMIZATION]
115 OS2Look=0
116
117 [COLORS]
118 UseWinColors=1
119
120 2000-01-09: David Raison <djr@lemur.co.uk>
121 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
122
123 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
124 - USER32/NEW: implemented scrollbar nc handling
125 windows without menus work now fine
126 implemented gradient filled title bars
127
128 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
129 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
130 OSLibGetMsg bugfix + WM_QUIT translation fix
131 OSLibGetMenuItemRect fix (y coordinate conversion)
132 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
133 or button down/up message translation.
134 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
135 Added Wine-like license that supercedes the main Odin license
136 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
137 CRTDLL__CIatan etc etc)
138
139 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
140 - CRTDLL: Compile fix
141
142 2000-01-08: Patrick Haller <phaller@gmx.net>
143 - SHELL32: Update: to WINE level 2000/01/08
144 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
145
146 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
147 - GDI32: added PatBlt support for negative width/height
148
149 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
150 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
151 Faked RegisterServiceCtrlHandlerA/W (TODO)
152 Partly implemented SetServiceBits/SetServiceStatus
153 Improved QueryServiceStatus
154 Call RtlCreateAcl in InitializeAcl
155 - LZ32: Create correct library
156 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
157 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
158 (991212) (-> fixes errors in RealPlayer)
159 - USER32: GetMenuStringA fix (return length of string if string pointer
160 or size parameter == 0)
161
162 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
163 - TWAIN_32: Update
164
165 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
166 - USER32/NEW: single window works now
167
168 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
169 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
170 (should be changed)
171 MS Office 2000 install (first part) almost working.
172 (installs windows installer as system service)
173 - OLEAUT32: Typelib bugfix for MS Office 2k install
174 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
175
176 2000-01-05: David Raison <djr@lemur.co.uk>
177 - OLEAUT32: LHashValOfNameSys(A)
178
179 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
180 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
181
182 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
183 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
184 Delete old region in SetWindowRegion
185
186 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
187 - KERNEL32: Named pipe updates & bugfixes
188
189 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
190 - LZ32/TAPI32: Updated def files to match NT 4 SP6
191 - MSVCRT: Updated def files + MSVCRT40 version info
192 - WINMM: Added Wine's MCI dlls (not compiled as this requires
193 a working MCI subsystem in winmm and a redesign of
194 wave & midi)
195
196 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
197 - LZ32: Cleaned up .def file (don't import directly) & removed
198 debugtools.h
199 - USER32: Fixed PostThreadMessage + bugs in GetMessage
200 - KERNEL32: Set hmq & hab THDB values for newly created
201 threads (hmq not correct now)
202
203 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
204 - KERNEL32: Started implementing named pipe apis
205
206 2000-01-02: David Raison <djr@lemur.co.uk>
207 - OLEAUT32: Typelib fixes - Custom Data & Default values.
208 Added private logging to tlib_n.log when reading a TLIB.
209 (Should clarify what is being read & why)
210 Now supports embedded named TLIBS in the format
211 <path>\<libname>\<id> (required for VB6, etc.)
212 Preparatory work to reduce dependance on
213 current file position to enable delaying parsing
214 data until it is requested by user.
215
216 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
217 - USER32: Implemented Set/GetWindowRgn (not activated)
218 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
219 vfprintf during logging.
220 Cleaned up file io procedures in oslibdos.cpp
221
222 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
223 - USER32: Workaround for crash in Lotus Notes when switching to a new
224 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
225 has been called for a window -> don't dispatch this msg)
226
Note: See TracBrowser for help on using the repository browser.