[4985] | 1 | /* $Id: changelog,v 1.1226 2001-01-20 16:58:03 sandervl Exp $ */
|
---|
[4454] | 2 |
|
---|
[4985] | 3 | 2001-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - AVIFIL32: o Resynched with latest Wine code
|
---|
| 5 | o Added AVIStreamTimeToSample & AVIStreamSampleToTime stubs
|
---|
| 6 |
|
---|
| 7 | 2001-01-20: Yuri Dario <mc6530@mclink.it>
|
---|
| 8 | - USER32: o Set codepage for DCs returned by GetDCEx
|
---|
| 9 |
|
---|
| 10 | 2000-01-20: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
|
---|
| 11 | - WINMM/MCICDA:
|
---|
| 12 | o MCI_STATUS_POSITION bugfix
|
---|
| 13 |
|
---|
[4978] | 14 | 2001-01-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 15 | - USER32: o GetCaretPos & SetCaretPos bugfixes. Did not take client
|
---|
| 16 | window origin into account.
|
---|
| 17 | (fixes cursor position problems in e.g. Notepad)
|
---|
| 18 |
|
---|
| 19 | 2000-01-19: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
|
---|
| 20 | - WNASPI32: o DosCreateMutexSem call bugfix.
|
---|
| 21 | (CDRWIN works again)
|
---|
| 22 |
|
---|
[4974] | 23 | 2001-01-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 24 | - Win32k: o Added support for kernel revisions. (like 14062A)
|
---|
| 25 | o Added build 14062a kernels.
|
---|
| 26 | o Added build 14062 kernels for Warp 4.
|
---|
| 27 |
|
---|
[4958] | 28 | 2001-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 29 | - GDI32: o More logging
|
---|
| 30 | o Use StretchDIBits in SetDIBitsToDevice instead of Open32
|
---|
| 31 | function. (which doesn't work for compressed bitmaps)
|
---|
| 32 | (MS Excel 97 startup bitmap displays correctly now)
|
---|
[4978] | 33 | Also solves y inversion related problems.
|
---|
| 34 | (MS Developer startup bitmap overlay correct now (Visual C++ logo))
|
---|
[4958] | 35 | - WGSS50: o Reported problems with SaveDC/RestoreDC and StretchDIBits
|
---|
| 36 | (Modelator graphics corruption fixed)
|
---|
| 37 | - KERNEL32: o Create system.ini with '[mci] cdaudio=mcicda.drv' section
|
---|
| 38 | during installation
|
---|
| 39 | o Fixed bug in lstrncpyA (return when specified length is 0)
|
---|
[4974] | 40 | o MultiByteToWideChar bugfix (calculate string length if input
|
---|
[4958] | 41 | length is -1 before checking if dest length is 0)
|
---|
| 42 | (MS Word 97 no longer crashes)
|
---|
[4974] | 43 | o RegQueryValueExW bugfix
|
---|
[4969] | 44 | (caused stack corruption in Excel and probably many other
|
---|
[4967] | 45 | apps that use this function too)
|
---|
[4958] | 46 | - OLEAUT32: o Ported David's typelib changes.
|
---|
| 47 | (MS Word 97 starts immediately and doesn't spend an hour
|
---|
| 48 | searching for typelibs in dlls)
|
---|
| 49 | TODO: Check bugfixes/changes in latest Wine code and merge
|
---|
| 50 | them.
|
---|
| 51 | TODO: Port picture classes
|
---|
[4974] | 52 |
|
---|
[4958] | 53 | 2000-01-17: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
|
---|
| 54 | - WINMM\MCICDA:
|
---|
| 55 | o Wrong call to os2CDCloseTray
|
---|
| 56 |
|
---|
[4940] | 57 | 2001-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 58 | - COMDLG32: o Get current directory if initial dir == NULL (win31 style
|
---|
[4974] | 59 | file dialog).
|
---|
[4940] | 60 | o Fix for filter. (default to NULL; not " /0/0")
|
---|
| 61 | o Scale icons to 16x16 (win31 style file dialog) -> system
|
---|
| 62 | default (32x32) is too big. (TODO: Our user32 icons are too
|
---|
| 63 | big)
|
---|
| 64 | o Drive list not initialized correctly. (GetDriveTypeA return
|
---|
| 65 | value interpreted wrong)
|
---|
| 66 | -> use GetLogicalDrives instead to avoid accessing floppy
|
---|
| 67 | drives (which GetDriveType does)
|
---|
| 68 | - USER32: o Replaced some icons with those found in SHELL32:
|
---|
| 69 | - open & closed folder
|
---|
| 70 | - floppy, harddisk & network drive
|
---|
| 71 | o Fixed bug in NotifyFormatFrame method (fixes problems
|
---|
| 72 | with combobox)
|
---|
| 73 | o ComboLBox bugfix (extra vertical scrollbar)
|
---|
| 74 | o LISTBOX_Directory bugfix (must check for FILE_ATTRIBUTE_NORMAL)
|
---|
| 75 | (removes files from directory listing in common file dialog)
|
---|
| 76 | - KERNEL32: o Fix for executable names with spaces in path
|
---|
| 77 | o Workaround for applications that block the PM input queue
|
---|
| 78 | while waiting for a child process to terminate.
|
---|
| 79 | (WaitSingleObject now calls MsgWaitMultipleObjects and
|
---|
| 80 | processes messages while waiting for the process to die)
|
---|
| 81 | (Napster install now doesn't block PM anymore (forcing a reboot))
|
---|
| 82 | o Add class keys for SHDOCVW during install
|
---|
| 83 | - SHDOCVW: o Added (Wine 20010112 port)
|
---|
[4951] | 84 | - WSOCK32: o Changed File and Product version to 0x0400, 0x0565012C (NT4, SP6)
|
---|
[4940] | 85 |
|
---|
[4935] | 86 | 2001-01-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 87 | - tools\install, tools\dailybuild:
|
---|
| 88 | o Added odincrt.dll to debug release (to make wgss50.dll happy).
|
---|
| 89 |
|
---|
[4929] | 90 | 2001-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 91 | - USER32: o DrawIconEx bugfix (fixes bitmap menu item when maximizing
|
---|
| 92 | MDI window)
|
---|
| 93 | - COMDLG32: o Added/Ported 16 bits common dialog Wine code.
|
---|
| 94 | (GetOpen/SaveFileName with hook and without OFN_EXPLORER
|
---|
| 95 | flag implies old Windows 3.1 style dialog)
|
---|
| 96 | (not completely working yet, but better than the mess we
|
---|
| 97 | saw before (InstallShield -> browse dir))
|
---|
| 98 |
|
---|
[4922] | 99 | 2001-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 100 | - KERNEL32: o Fix for WriteFile & ReadFile (wrong return code was expected)
|
---|
| 101 | - USER32: o HAS_THICKFRAME macro changed (identical to Wine now)
|
---|
| 102 | (fixes MDI window borders (which were too thin))
|
---|
| 103 |
|
---|
[4921] | 104 | 2001-01-10: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 105 | - tools\install:
|
---|
| 106 | o Corrected packing of wpss50.dll.
|
---|
| 107 | o Added .sym files to release distributions. (optional package)
|
---|
| 108 |
|
---|
| 109 | - tools\dailybuild:
|
---|
| 110 | o Removed uploading of glide-stuff.
|
---|
| 111 |
|
---|
[4912] | 112 | 2001-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[4921] | 113 | - INCLUDE\dcdata, GDI32, USER32:
|
---|
| 114 | o Updates for WGSS50.
|
---|
[4912] | 115 |
|
---|
[4921] | 116 | - LIB\WGSS50.lib, BIN\WGSS50.dll:
|
---|
[4912] | 117 | o Binary distribution of WGSS50 added
|
---|
| 118 |
|
---|
[4907] | 119 | 2001-01-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 120 | - tools\dailybuild:
|
---|
| 121 | o Added wgss50.dll to the .ZIPs.
|
---|
| 122 |
|
---|
[4910] | 123 | - lib o Added making of wgss50.lib.
|
---|
| 124 | (So, that it corresponds to the other libraries made there.)
|
---|
| 125 | o Converted wgss50.lib to a deffile.
|
---|
| 126 |
|
---|
[4913] | 127 | 2001-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 128 | - ReportingBugs.txt:
|
---|
| 129 | o Specify windows & system32 directory in bug reports
|
---|
| 130 | (description included on how to determine this)
|
---|
| 131 |
|
---|
[4885] | 132 | 2001-01-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 133 | - tools\dailybuild:
|
---|
| 134 | o Updated with temporary server address.
|
---|
| 135 | o Put ftp userid/passwords into separate file.
|
---|
[4893] | 136 | o Build number incrementation. (Stored in versionos2.h)
|
---|
| 137 | (Use bldlevel on the DLLs to look at it.)
|
---|
[4906] | 138 | o Splitted out 3dxf/glide stuff into separat .zips.
|
---|
[4885] | 139 |
|
---|
| 140 | - Win32k: o Added support for the ldrCheckInternalName bug. :-)
|
---|
| 141 | (see /src/win32k/ldr/myldrCheckInternalName.cpp for details.)
|
---|
| 142 | o Made pe.exe default.
|
---|
[4895] | 143 | o Added UNI and SMP 14062 kernels (convenience pack).
|
---|
| 144 | (Have anyone got the Warp 4 convenience pack with the right .sym files?)
|
---|
[4885] | 145 |
|
---|
[4887] | 146 | - bin\bldlevelinf.cmd:
|
---|
| 147 | o Removed colon after otherwise to make it work with Object REXX.
|
---|
| 148 |
|
---|
[4893] | 149 | - makefiles:
|
---|
| 150 | o Merged BuildLevel revisions with the LXOpt revisions.
|
---|
| 151 | (There seems like there have been some kind of revision mixup in
|
---|
| 152 | Sanders tree?)
|
---|
| 153 | o Updated the other post files with LXOpt.
|
---|
| 154 |
|
---|
[4878] | 155 | 2001-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[4885] | 156 | - install: o Win32k installation temporarily disabled due to a WarpIn bug
|
---|
[4878] | 157 | (config.sys lines removed)
|
---|
[4912] | 158 | o Update: This is NOT a WarpIn bug, but an error in the script.
|
---|
| 159 | Now fixed.
|
---|
[4878] | 160 | o Added check for WarpIn 0.9.6 or higher
|
---|
| 161 | o Added check for OS/2 3.x or higher
|
---|
| 162 | - src\makefile:
|
---|
| 163 | o Exclude msvcrt from build process.
|
---|
| 164 | (download odinapp.zip from ftp.os2.org to install a small
|
---|
| 165 | MFC app with MFC + MSVCRT dlls)
|
---|
| 166 |
|
---|
[4874] | 167 | 2001-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 168 | - makefiles:o Use LXLite for release build binaries (better compression)
|
---|
| 169 | Can't use it for debug binaries as IPMD doesn't like it.
|
---|
| 170 |
|
---|
[4869] | 171 | 2001-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 172 | - KERNEL32: o KERNEL32_99 should return 1 (according to Wine)
|
---|
| 173 | o KERNEL32_100 export added (stub)
|
---|
| 174 | - USER32: o Rewrote window handle management; only start reusing window
|
---|
| 175 | handles when max handle has been assigned.
|
---|
| 176 | - GDI32/USER32/KERNEL32:
|
---|
[4885] | 177 | o Don't export private Odin functions by name (we import
|
---|
[4871] | 178 | everything by ordinal)
|
---|
[4869] | 179 |
|
---|
[4864] | 180 | 2001-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 181 | - USER32: o Menu cast bugfix (bitmap handle is 32 bits)
|
---|
| 182 | (Fixes menu bitmaps in Lotus Notes 5)
|
---|
| 183 |
|
---|