source: trunk/changelog@ 2622

Last change on this file since 2622 was 2622, checked in by sandervl, 26 years ago

* empty log message *

File size: 19.1 KB
Line 
1 /* $Id: changelog,v 1.691 2000-02-03 21:42:02 sandervl Exp $ */
2
3 2000-02-03: Jens Wiessner <wiessnej@rfi.de>
4 - NTDLL: Ported Wine security apis
5 - CRTDLL: Update
6
7 2000-02-03: Christoph Bratschi <cbratschi@datacomm.ch>
8 - USER32: merged controls with WINE 20000130
9
10 2000-02-03: Daniela Engert <dani@ngrt.de>
11 - GDI32: Implement RGB 555 to RGB 565 conversion in assembler
12
13 2000-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
14 - GDI32: Prelimary RGB 555 to RGB 565 conversion in SetDIBitsToDevice
15 (will be rewritten in assembly for better performance)
16 (for RealPlayer videos in 16 bits mode)
17 BitBlt fix (return after dibsection blit -> fixes Quake 2)
18 Added MMX RGB conversion.
19 - COMDLG32: Merged with latest Wine version (20000109)
20 - INCLUDE\WIN: Fixes to compile comdlg32 in C mode
21 (will be rewritten in assembly for better performance)
22 (for RealPlayer videos in 16 bits mode)
23 BitBlt fix (return after dibsection blit -> fixes Quake 2)
24
25 2000-02-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
26 - OPENGL: Ported SGI GLUT sources + Opengl update
27
28 2000-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
29 - GDI32: Cleaned up
30 Fixes for dib section apis. RealPlayer 7 can play videos
31 now (correct in 24 bps mode; upside down and wrong colors
32 in 16 bps mode)
33
34 2000-02-01: Knut Stange Osmundse <knut.stange.osmundsen>
35 - Pe2Lx: Makefile should be working again.
36 - KERNEL32: RegisterPe2LxDll - no detach is done for Pe2Lx/Win32k DLLs.
37 This is a temporary fix.
38
39 2000-02-01: Patrick Haller <phaller@gmx.net>
40 - SHELL32: Added PathSkipRootAW
41
42 2000-02-01: Jens Wiessner <wiessnej@rfi.de>
43 - NTDLL: Updated .def file (similar to NT 4 SP6) + bugfix for impdef
44
45 2000-01-31: Sander van Leeuwen <sandervl@xs4all.nl>
46 - USER32: GetDCEx with window handle 0 fails in Windows 98; now it also
47 returns an error in Odin.
48 GetWindowDC & GetDC use the desktop window handle if hwnd == 0
49 (before calling GetDCEx)
50 - GDI32: Set dibsection bitmap data to 0 when allocating it.
51
52 2000-01-30: Sander van Leeuwen <sandervl@xs4all.nl>
53 - PELDR: Fixed error messages for images without fixups (peldr.dll no
54 longer required)
55 - GDI32: Removed wrong bugfix for GetDIBits (breaks Lotus Notes)
56 - USER32: Don't check for window visibility when calling SetWindowPos
57 in SetMenu. (fixes menu in standard minesweeper)
58 (NOTE: May need to call SetWindowPos with SWP_FRAMECHANGED
59 when showing a window (see Wine code))
60 Put back GetMenuStringA fix (return length of string if string pointer
61 or size parameter == 0) (almost fixes Realplayer 7 menu)
62
63 2000-01-29: Sander van Leeuwen <sandervl@xs4all.nl>
64 - GDI32: Save and restore FPU control word when calling
65 Open32's DrawText. DrawText trashes it which causes drawing
66 problems in RealPlayer 7.
67 - USER32: Call DrawTextA in uitools.cpp, not Open32's DrawText.
68 Fix for SetWindowPos for showing hidden windows
69 (call ShowWindow) -> fixed non-visible button bar in mIRC
70 Don't set WS_VISIBLE on by default. Windows are made visible
71 during creation by calling ShowWindow.
72 Call UpdateWindow for client window, not the frame.
73 - INCLUDE\WIN\wingdi.h: Added GdiFlush declaration
74 - INCLUDE\makefiles: Added c/c++ definitions for win32 apps (without
75 -D__WINE__ so you don't need to specify whether you use the ascii
76 or unicode version of a win32 api)
77
78 2000-01-29: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
79 - KERNEL32: Added GlobalWire/GlobalUnwire
80
81 2000-01-28: Sander van Leeuwen <sandervl@xs4all.nl>
82 - GDI32: Wrong return values for GetDIBits & SetDIBitsToDevice
83 (nr of scan lines copied; not true/false)
84 - USER32: Don't call default frame handler for WM_ADJUSTWINDOWPOS
85 (fixes window resize when playing videos in RealPlayer v7 &
86 dragging titlebar in Professional Mine Sweeper)
87
88 2000-01-28: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
89 - Win32k: Heap is splitted into a swappable and a resident heap.
90 Fixups are now applied when a page is loaded from disk.
91 This is done by overloading the kernel function called
92 (_)ldrEnum32bitRelRecs. This should improve performance a lot!
93
94 2000-01-27: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
95 - OPENGL: First version of opengl implementation
96
97 2000-01-27: Sander van Leeuwen <sandervl@xs4all.nl>
98 - USER32: Fixed FS corruption in OSLibPostThreadMessage
99 Send WM_CHILDACTIVATE to child windows (not only
100 to MDI children) instead of WM_ACTIVATE
101 - SHELL32: Fixed FS corruption in DragAcceptFiles
102
103 2000-01-26: Yuri Dario <mc6530@mclink.it>
104 - INCLUDE\WIN: Additions & changes for compiling Opera.
105 - many dlls: create correct library (impdef)
106
107 2000-01-26: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
108 - GDI32: Changes for Opengl support
109
110 2000-01-26: Christoph Bratschi <cbratschi@datacomm.ch>
111 - USER32: fixed WM_MOVE, MsgFormatFrame and WM_WINDOWPOS* to use parent
112 coordinates
113 changed min frame size
114 - COMCTL32: fixed wrong progress frame
115
116 2000-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
117 - OLEAUT32: Don't create logfile when logging is turned off
118 - PELDR: Don't modify cmd line in PIB structure
119 - INCLUDE: Removed string.h.
120 - KERNEL32: Added workaround for OS/2 DosSetMem bug in VirtualAlloc
121 (if memory is reserved, set read & write page flags)
122
123 2000-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
124 - PELDR/KERNEL32: Allocate low memory at right address and with right size
125 in peldr.dll (fixes install of Windows Media Player)
126 - KERNEL32: Print thread id for each log message
127
128 2000-01-22: Michal Necasek <mike@mendelu.cz>
129 - DINPUT: Fixes + basic functionality is complete; enough for many games
130
131 2000-01-21: Sander van Leeuwen <sandervl@xs4all.nl>
132 - USER32: Put back old WM_MOVE, MsgFormatChanged & OSLibSWPToWINDOWPOSFrame
133 Previous changes broke many apps (VPBuddy, MIrc32)
134 Don't update window if style changes (responsibility of the app)
135 Store window menu & id in same variable (fixes clock ->
136 double click on analog window -> titlebar & menu gone; menu
137 used to stay there)
138 Put back WM_CALCVALIDRECT code in pmwindow. Fixes updates
139 of clock window (who's class has CS_H/VREDRAW style).
140 - KERNEL32: Fixed image loading for resource lookup only (don't care
141 where those images are loaded as we only use it to query
142 the version resource; so base address doesn't matter)
143 (-> RealPlayer 7 installs now)
144
145 2000-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
146 - KERNEL32: Disabled creation of pe_x.log if logging disabled
147 Only get codepage once from odin.ini.
148
149 2000-01-20: Vit Timchishin <tvv@sbs.kiev.ua>
150 - KERNEL32: Codepage bugfix & unicode translation changes (heapstring.cpp)
151 - GDI32: Added codepage support for CreateCompatibleDC
152
153 2000-01-20: Christoph Bratschi <cbratschi@datacomm.ch>
154 - USER32: fixed WM_CONTEXTMENU
155 dispatch WM_MOUSEMOVE in menu loop
156
157 2000-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
158 - USER32: Removed 'old' user32 and replaced it with the new one
159 Call default window proc when DefMDIChildProcA/W is called
160 for a non-MDI window.
161 Fixed menu check & submenu marks painting
162 - KERNEL32: Increased shared heap reserve size to 512 kb
163 - SHELL32: Display Odin logo in Shell about dialog box
164
165 2000-01-18: Jens Wiessner <wiessnej@rfi.de>
166 - WINMM\WAVEMAP
167 Updated to Wine level 20000109 + corrected compile
168 - MCICDA: ported MCICDA.DLL from Wine 20000901 (Linux cdrom calls stubbed
169 so it doesn't work)
170
171 2000-01-17: Sander van Leeuwen <sandervl@xs4all.nl>
172 - USER32\NEW: Added basic support for DInput WM_CHAR notification
173 (the rest needs to be done in dinput.dll)
174 Use KEYBOARD_Enable user32 export to (un)register WM_CHAR
175 handler. (WNDPROC type) It's called when a WM_CHAR message
176 arrives for an Odin window with hwnd, msg, wParam & lParam.
177 - DINPUT: Fixed bugs reported by Michal Necasek
178
179 2000-01-16: Christoph Bratschi <cbratschi@datacomm.ch>
180 - USER32/NEW: implemented sysmenu commands: SC_SIZE and SC_TASKLIST
181 fixed WM_MOVE
182 changed HTCAPTION system menu position
183 changed maximized window position
184 don't move/size maximized windows
185
186 2000-01-15: Jens Wiessner <wiessnej@rfi.de>
187 - TWAIN_32: Update
188 - WINMM\MCIANIM,MCIAVI32,MCISEQ,MCIWAVE,MIDIMAP
189 Updated to Wine level 20000109 + corrected compile errors
190 - WINMM: Ported Wine wave mapper.
191
192 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
193 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
194 handle as that can prevent WM_PAINTs from being dispatched)
195 (may need reworking of Get/PeekMessage instead)
196 ScrollWindow changes
197 Removed frame drawing 'bugfix'.
198 Fixed system menu position for child windows (i.e. MDI)
199 Fixed titlebar tracking for child windows (i.e. MDI)
200 - KERNEL32: Check for null pointers in lstrcmpA
201
202 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
203 - USER32/NEW: cache menu and caption drawing
204 changed minimize button position
205 don't redraw system menu icon in menu.cpp
206 hilighted menubar items don't have an edge in Win9x
207 don't open system menu on mouseover if menubar is used and vice versa
208 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
209 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
210
211 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
212 - USER32/NEW: added caption clipping for faster window text updates
213
214 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
215 - USER32\NEW: Fixed min/max bug for mdi child windows
216 Fixed DrawMenuBar (invalidate frame rectangle in
217 FrameUpdateClient if client rectangle wasn't changed)
218 Fixed bugs in MsgFormatFrame & SendNCCalcSize
219 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
220 (Winamp works now)
221 Removed code that's no longer used (subclassed OS/2 frame
222 controls & OS/2 scrollbar functions etc)
223
224 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
225 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
226 is activated or deactivated
227 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
228 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
229 Return window desktop handle for window handle returned by
230 SetActiveWindow if window is non-Odin.
231 Fixed activation of windows. (send WM_ACTIVATE when receiving
232 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
233 Fixed DrawFrame; bottom & right frame borders now drawn correctly
234 Fixed scrollbar positioning (style.exe)
235 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
236 DC to save/restore a window's own dc.
237 Fixed client rectangle problems. Client rectangles
238 are always in frame coordinates; window rectangles in
239 screen coordinates. Whenever necessary (i.e WM_MOVE)
240 client coordinates are converted to coordinates relative
241 to it's parent client window.
242 Changed WM_MOVE -> client coordinates relative to parent origin
243 if child; otherwise relative to screen origin. (needs testing)
244 (WM_NCCALCSIZE needs to be done as well)
245 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
246 - KERNEL32: Added DisableLogging & EnableLogging functions to
247 disable logging in parts of code. Logging will only be
248 done if the logcount is bigger than 0.
249
250 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
251 - USER32/NEW: fixed WM_CALCVALIDRECTS
252 activated WM_NCPAINT clipping
253 added improved frame redraw mechanism
254
255 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
256 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
257 handler anymore) -> fixes problems with Shell About dialog
258 and jumping controls when resizing (Winhlp32)
259 Fixed menu tracking for different submenus
260 Fixed delayed repaints of invalidated menu rectangles
261 Ported Wine messagebox code. (for GUI consistency)
262 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
263 in notepad)
264 Fixed 'frame' control updates (resizing client window in
265 SetWindowPos for SWP_FRAMECHANGED)
266
267 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
268 - TWAIN_32: Bugfix (removed test code)
269
270 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
271 - USER32/NEW: fixed AdjustWindowRectEx
272
273 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
274 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
275 Removed hardcoded dependancy on shell32; load it on-demand
276 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
277 Fixed wrong return value for OSLibWinGetMsg
278 Workaround for bug in GDI32 FillRect (menu items painted
279 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
280 Applied patch to Wine menu code for RealPlayer
281 Fixed default return value of DefWndProc (0)
282 Fixed SetMenu (menus should be set when a window is no child)
283 Call correct SetMenu function from MsgCreate Win32BaseWindow method
284 Use WIN32_INNERFRAME frame class for top level windows again.
285 (VPBuddy repaint problems were solved by using this class)
286
287 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
288 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
289 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
290 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
291 there's no audio device
292 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
293 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
294 or button down/up message translation.
295 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
296 Added WM_NCACTIVATE message generation
297 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
298 Changed GetSystemMenu; added method to Win32BaseWindow class
299 (destroy old menu if present and switch back to default system
300 menu if bRevert = TRUE; needs changes in non-client code)
301
302 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
303 - USER32/NEW: activated menu code
304
305 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
306 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
307 (borders are not drawn correctly)
308 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
309 client/window rectangle when size nor position have changed)
310 Fixed out of sync rectWindow. (children don't get notified of
311 parent position change -> rectWindow (in screen coord.) not updated)
312 Fixed LoadBitmap for system bitmaps
313 Fixes for win32 titlebar + added win32 system menu
314 System menu commands now work
315 Fixed repaint problem for win32 titlebar
316 Added Christoph's gradient filled title bars code
317 For (experimental) win32-like windows add this to odin.ini:
318 [CUSTOMIZATION]
319 OS2Look=0
320
321 [COLORS]
322 UseWinColors=1
323
324 2000-01-09: David Raison <djr@lemur.co.uk>
325 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
326
327 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
328 - USER32/NEW: implemented scrollbar nc handling
329 windows without menus work now fine
330 implemented gradient filled title bars
331
332 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
333 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
334 OSLibGetMsg bugfix + WM_QUIT translation fix
335 OSLibGetMenuItemRect fix (y coordinate conversion)
336 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
337 or button down/up message translation.
338 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
339 Added Wine-like license that supercedes the main Odin license
340 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
341 CRTDLL__CIatan etc etc)
342
343 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
344 - CRTDLL: Compile fix
345
346 2000-01-08: Patrick Haller <phaller@gmx.net>
347 - SHELL32: Update: to WINE level 2000/01/08
348 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
349
350 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
351 - GDI32: added PatBlt support for negative width/height
352
353 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
354 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
355 Faked RegisterServiceCtrlHandlerA/W (TODO)
356 Partly implemented SetServiceBits/SetServiceStatus
357 Improved QueryServiceStatus
358 Call RtlCreateAcl in InitializeAcl
359 - LZ32: Create correct library
360 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
361 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
362 (991212) (-> fixes errors in RealPlayer)
363 - USER32: GetMenuStringA fix (return length of string if string pointer
364 or size parameter == 0)
365
366 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
367 - TWAIN_32: Update
368
369 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
370 - USER32/NEW: single window works now
371
372 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
373 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
374 (should be changed)
375 MS Office 2000 install (first part) almost working.
376 (installs windows installer as system service)
377 - OLEAUT32: Typelib bugfix for MS Office 2k install
378 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
379
380 2000-01-05: David Raison <djr@lemur.co.uk>
381 - OLEAUT32: LHashValOfNameSys(A)
382
383 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
384 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
385
386 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
387 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
388 Delete old region in SetWindowRegion
389
390 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
391 - KERNEL32: Named pipe updates & bugfixes
392
393 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
394 - LZ32/TAPI32: Updated def files to match NT 4 SP6
395 - MSVCRT: Updated def files + MSVCRT40 version info
396 - WINMM: Added Wine's MCI dlls (not compiled as this requires
397 a working MCI subsystem in winmm and a redesign of
398 wave & midi)
399
400 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
401 - LZ32: Cleaned up .def file (don't import directly) & removed
402 debugtools.h
403 - USER32: Fixed PostThreadMessage + bugs in GetMessage
404 - KERNEL32: Set hmq & hab THDB values for newly created
405 threads (hmq not correct now)
406
407 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
408 - KERNEL32: Started implementing named pipe apis
409
410 2000-01-02: David Raison <djr@lemur.co.uk>
411 - OLEAUT32: Typelib fixes - Custom Data & Default values.
412 Added private logging to tlib_n.log when reading a TLIB.
413 (Should clarify what is being read & why)
414 Now supports embedded named TLIBS in the format
415 <path>\<libname>\<id> (required for VB6, etc.)
416 Preparatory work to reduce dependance on
417 current file position to enable delaying parsing
418 data until it is requested by user.
419
420 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
421 - USER32: Implemented Set/GetWindowRgn (not activated)
422 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
423 vfprintf during logging.
424 Cleaned up file io procedures in oslibdos.cpp
425
426 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
427 - USER32: Workaround for crash in Lotus Notes when switching to a new
428 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
429 has been called for a window -> don't dispatch this msg)
430
Note: See TracBrowser for help on using the repository browser.