source: trunk/changelog@ 2646

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

* empty log message *

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