source: trunk/changelog@ 1699

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

Add: font remapping

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