source: trunk/changelog@ 1695

Last change on this file since 1695 was 1695, checked in by phaller, 26 years ago

Add: updated to WINE19991108

File size: 10.9 KB
RevLine 
[1695]1 /* $Id: changelog,v 1.435 1999-11-10 22:14:12 phaller Exp $ */
[1567]2
[1692]3 99-11-10: Christoph Bratschi <cbratschi@datacomm.ch>
4 - USER32: ShowScrollBar: create not existing scrollbars
5
[1689]6 99-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
7 - KERNEL32: Rewrote OSLibDosAllocMem to only return addresses
8 aligned at 64kb boundaries (that's what NT's VirtualAlloc
9 does and it fixes problems with MS Word & StarCraft)
10 Fixed wrong dprintf in GetProcAddress.
11 Added code to VirtualAlloc for committing pages of memory mapped
12 files. (Word needs this)
13 - USER32: Implemented WindowFromDC
14 Call WinWaitMsg from WaitMessage instead of calling Open32 api.
15 Added wvsnprintfA export (required for NTDLL)
16 - NTDLL: Link with user32.lib, don't import by name directly
17 (needs to be done for the kernel32 forwards too)
18 - GDI32: Removed flipping of bitmaps in dibsection (no longer necessary)
19
[1684]20 99-11-10: Patrick Haller <phaller@gmx.net>
21 - COMDLG32: Fix: erroneous filter data for GetOpenFileName now tolerated
22 Open32 keeps to close to the docs :)
[1695]23 - SHELL32: Add: update to WINE19991108
[1684]24
[1681]25 99-11-10: knut.st.osmundsen <knut.stange.osmundsen@pmsc.no>
[1689]26 - PE2LX: Added OLE32 to the lie list. New Base class.
27 - WIN32K: Disabled Yield - this solves problems running win32k
28 at SMP kernels and logging problems on all kernels.
29 Added some parameters.
[1681]30
[1672]31 99-11-09: Rene Pronk <R.Pronk@twi.tudelft.nl>
32 - USER32: Added support for control mnemonics (Alt-key sends BM_CLICK
33 to buttons if key == mnemonic for that control)
34
[1665]35 99-11-09: Christoph Bratschi <cbratschi@datacomm.ch>
36 - GDI32: fixed line functions -> don't draw end pixel
37 - COMCTL32/USER32: removed some old workarounds
38 - USER32: fixed system resource handling
39
[1661]40 99-11-09: Sander van Leeuwen <sandervl@xs4all.nl>
41 - OLE32: Renamed dll to OLE32OS2 to avoid conflicts with Lotus SmartSuite's
42 OLE32.dll
43 - OLE32/OLEAUT32/AVIFIL32: compilation fixes
44 - KERNEL32: Fixed lstrcpynAtoW & lstrcpynWtoA, OS/2 unicode api
45 translated up to maxlen characters -> heap corruption
46 in Solitaire. Translate upto min(stringlength+1, maxlen).
47 Also, terminate at strlen(strlength), not maxbuf-1 (lstrcpynWtoA)
48 - KERNEL32: Added code for renaming dlls (i.e. OLE32 <-> OLE32OS2)
49 Odin.ini in bin directory needs to be present for PE loader
50 (includes renaming entries for OLE32 & NETAPI32)
51 NOTE: Dll name in ole32.lib has changed, so a complete recompilation
52 is required!
53 NOTE 2: We might need to add some code to the file io apis in case
54 dirty apps try to read directly from system dlls.
55 - KERNEL32: No need to export private apis by name & ordinal (ord is enough)
[1681]56 - INCLUDE\odinwrap.h
[1672]57 added wrappers that don't print dbg messages (regardless
58 of whether DEBUG is defined or not)
59 - INCLUDE\misc.h: Added dprintf2 function for extensive logging
60 - KERNEL32,USER32, replaced commented out dprintf calls with dprintf2
61 Changed makefiles to enable dprintf2 (DEBUGALL)
62 - KERNEL32: Wrapper heap apis with ODIN* macros. -> fixes FS corruption
[1676]63 - USER32: Fixed LoadMenuIndirectW (didn't call new code)
[1661]64
[1653]65 99-11-09: Patrick Haller <phaller@gmx.net>
66 - NTDLL: Add: various new functions added (DbgXXX)
67
[1648]68 99-11-08: Markus Montkowski <mmontkowski@gmx.de>
69 - WING32: Added first implementation of this old 32bit DLL.
70
[1645]71 99-11-08: Edgar Buerkle <Edgar.Buerkle@gmx.net>
72 - KERNEL32: SetCurrentDirectory, CreateDirectory, RemoveDirectory bugfixes.
73 (remove terminating backslash if present)
74
[1638]75 99-11-08: Patrick Haller <phaller@gmx.net>
[1681]76 - COMCTL32: Fix: EDIT: if obtaining font information fails,
[1638]77 prevent division by zero
[1650]78 - NTDLL: Add: numerous integer arithmetic functions added
[1638]79
[1635]80 99-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
81 - KERNEL32: Fixed bug in thread handler (exception handler set
82 at wrong moment)
[1643]83 Ported Wine critical section code (991031), Open32
84 doesn't correctly fill in the CRITICAL_SECTION structure.
85 Limit size of memory mapped files.
[1635]86 - USER32: PostThreadMessageA/W fix
87
88 99-11-06: Sander van Leeuwen <sandervl@xs4all.nl>
89 - DINPUT: Ported Wine code (991031) (not tested yet)
90 - USER32: Added code for sending mouse events to dinput.dll
91 Added PM <-> win32 key translation (used in dinput.dll)
92
93 99-11-06: Edgar Buerkle <Edgar.Buerkle@gmx.net>
94 - USER32: GetMenuStringW fix
95
[1617]96 99-11-05: Achim Hasenmueller <achimha@innotek.de>
97 - COMCTL32: Source code cleanup, remove warnings, corrected typecasts
98 Added logging, warnings for stub functions
[1623]99 - KERNEL32: Source code cleanup, fix warnings
100 - USER32: Source code cleanup, fix warnings
[1617]101
[1614]102 99-11-05: Patrick Haller <phaller@gmx.net>
103 - COMCTL32: Fix: TREEVIEW_Edit_Subclass is called with freed infoPtr
104 This only cures the symptoms, not the origin!
105
[1611]106 99-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
107 - USER32: Fixed InsertMenuA
108 Message translation fix for WM_USER+n messages (GetMessage)
109 Extra translation.
110 Rewrote/Ported LoadStringA/W (similar to Wine now)
111 - KERNEL32: Changed FindResource, string id translation should be done
112 in LoadStringA/W (done that way in Wine)
[1619]113 Fixed GetModuleHandleA
[1611]114
[1608]115 99-11-05: Jens Wiessner <wiessnej@rfi.de>
116 - MSVFW32: Updated to Wine level 991031
117 - IMM32: Replaced some FIXME entries with dprintf;
118 - KERNEL32: Added _wsnprintfA to .DEF file for export (MSACM32 needs this)
119 - INCLUDE: New MSACM.H from Wine991031 (MSACM32 needs this)
120 - MSACM32: New MSACM32.DLL (Ported from Wine9910131)
121
122 99-11-05: Edgar Buerkle <Edgar.Buerkle@gmx.net>
123 - GDI32: Fixes for StretchDIBits & GetDIBColorTable
124 - USER32: Fixes for ArrangeIconicWindows & ShowOwnedPopups
125 NULL pointer checks in hasWindowName/hasClassName/FindClass
[1611]126 Message translation fix for WM_USER+n messages
[1608]127 - OLE32: Always create OLE window class
128 - KERNEL32: Null pointer check in lstrcmpiA
129 - SHELL32: Corrected export of Shell_GetCachedImageIndex
130
[1598]131 99-11-04: Sander van Leeuwen <sandervl@xs4all.nl>
132 - SHLWAPI: Fixed makefile
133 - USER32: Put back Dani's dialog fix (WS_CLIPSIBLINGS bit for dialog controls)
134 (fixes winhlp32 & comboboxes)
135
[1590]136 99-11-04: Patrick Haller <phaller@gmx.net>
137 - WNETAP32: Add: numerous undocumented functions stubbed
[1591]138 - ADVAPI32: Add: LsaXXX-functions stubbed
[1593]139 - USER32: Fix: wvsprintfA/W fixed (buffer overwrite)
[1603]140 - KERNEL32: Fix: unnamed kernel objects (events, mutexes, semaphores)
[1590]141
[1586]142 99-11-03: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
143 - Makefiles: Changes to build the libraries first
144
[1578]145 99-11-03: Sander van Leeuwen <sandervl@xs4all.nl>
146 - COMDLG32: Import from shlwapi as the original Wine code does
147 - SHELLL32: Added exports
148 - SHLWAPI: Link with shell32.lib for forwarders + added exports
149 - USER32: Fixed mouseactivate for subclassed OS/2 windows (scrollbars)
150 Fixed CreateIconIndirect (Wine file dialog now shows button
151 icons correctly)
152 Don't clear WS_CLIPSIBLINGS bit in OSSetWindowStyle.
153 Removed fix in PMFRAME WM_ADJUSTWINDOWPOS: Previous fix breaks
154 a lot of apps (button.exe/style.exe/header4.exe)
155 (fix = call default frame handler when receiving this msg
156 when the window hasn't been 'created' yet)
157
[1571]158 99-11-03: Christoph Bratschi <cbratschi@datacomm.ch>
[1577]159 - USER32: fixed modal dialogs
[1582]160 added WM_CONTEXTMENU
161 - COMCTL32: implemented statusbar size grip
[1571]162
[1570]163 99-11-03: Patrick Haller <phaller@gmx.net>
[1681]164 - KERNEL32: Fix: undocumented behaviour in SearchPathA
[1570]165 and bugfix in SearchPathW
[1573]166 - USER32: Fix: TrackPopupMenuEx lpPM can be NULL
[1590]167 Fix LoadBitmapA checked for incorrect return value
[1570]168
[1569]169 99-11-02 Markus Montkowski <mmontkowski@gmx.de>
[1577]170 - DDRAW: Changed debug output to DDRAW: ...
[1569]171 Copied Framebuffer if in colorconversion mode for Normal Blits to
[1577]172 the primary surface. => Map Editor of Red Alert works.
[1569]173
[1567]174 00-11-02: Achim Hasenmueller <achimha@innotek.de>
175 - COMCTL32: Incorporated latest WINE 991031 updates
176 Note: listview doesn't paint properly now. Will be fixed later.
177
178 99-11-02: Markus Montkowski <mmontkowski@gmx.de>
[1564]179 - DDRAW: Changed interface handling of Surfaces=> Quake 2 runs again!
[1486]180
[1563]181 99-11-02: Patrick Haller <phaller@gmx.net>
182 - SHELL32: Up to current WINE level
183 - SHLWAPI: Created (in WINE it mostly links to SHELL32)
184
[1544]185 99-11-02: Sander van Leeuwen <sandervl@xs4all.nl>
[1681]186 - INCLUDE\odinwrap.h:
[1544]187 fixed wrong define (_ODINWARP instead of _ODINWRAP)
188 Only check the heap for consistency when DEBUG_ODINHEAP is
189 defined.
190 - USER32: Uncommented EDIT_NOTIFY_PARENT call in EDIT_WM_SetFocus
191 (yesterday's showwindow fix makes sure no WM_SETFOCUS msgs
192 arrive before the dialog received it's WM_INITDIALOG msg)
193 Fixed more FS corruption in dc.cpp.
194 - SHELL32: Added extra exports for comdlg32
[1554]195 - COMDLG32: Ported Wine file & find common dialogs (991031)
[1544]196 Find & Replace dialogs enabled, Wine code called for
197 file dialogs if the app supplies a dialog template.
198 NOTE: Disabled for now. Comctl32 isn't stable enough
199 for the Win95 style Wine comdlg dialogs.
200 Fixed check for find/replace dialog. Notepad uses 32 byte
201 buffer, so why does the wine code fail for < 80 bytes?
202 Fixed display of find/replace dialog -> if not hooked
203 show dialog!
204 - makefiles: Added debugsmp/nodebuginfosmp/releasesmp options to
205 start two nmake process to build everything on two cpus.
206
[1541]207 99-11-01: Sander van Leeuwen <sandervl@xs4all.nl>
208 - USER32: Delete all process windows & classes in exitlist handler
209 Set hwndInsertBehind to HWND_BOTTOM for group boxes
210 (fixes problems when groupbox control is defined after
211 controls inside it in dialog template)
212 Mouse activate fix.
[1544]213 Don't activate child windows in ShowWindow.
[1541]214 - WINMM: Return failure for waveOutGetDevCapsA/W when there's no
215 audio hardware present.
216
217
[1537]218 99-11-01: Daniela Engert <dani@ngrt.de>
219 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls
220 (fixes missing text in WELCOME)
[1531]221
[1537]222 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
223
224 This is a hack!
225
226 Dialog controls which contain/surround other controls *need* to be
227 created with the WS_CLIPSIBLINGS style.
228
229 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Note: See TracBrowser for help on using the repository browser.