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