source: trunk/changelog@ 3890

Last change on this file since 3890 was 3890, checked in by sandervl, 25 years ago

* empty log message *

File size: 8.2 KB
Line 
1 /* $Id: changelog,v 1.1044 2000-07-22 12:53:42 sandervl Exp $ */
2
3 2000-07-22: Sander van Leeuwen <sandervl@xs4all.nl>
4 - DOC\ReportingBugs.txt
5 Added file that tells users how to report bugs
6 - TOOLS\install:
7 Added ReportingBugs.txt to WarpIN script
8 - USER32: Fixed BeginPaint; set clip region to update region; not update
9 rectangle -> fixes invisible buttons in winzip install
10 - KERNEL32: Include message in log entry if FS != 0x150b (doesn't always
11 means FS is trashed though)
12
13 2000-07-21: Sander van Leeuwen <sandervl@xs4all.nl>
14 - SHLWAPI: SHGetSpecialFolderPathA: StartMenu changed in 'Start Menu'
15 (now identical to Windows 98/NT)
16 - TOOLS\install:
17 Changed makefile for odininst; standard odin makefile now
18 Changed warpin script for new odininst location
19
20 2000-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
21 - USER32: SetWindowPlacement bugfix for Papyrus (do not change the
22 current window position)
23 Fixed FS corruption in CreateCaret
24 Fixed positioning of caret (needed due to client/frame -> frame window changes)
25 WM_ADJUSTWINDOWPOS & WM_WINDOWPOSCHANGED bugfixes (hwndInsertAfter
26 set to HWND_TOP if non-Odin window)
27 - KERNEL32/PELDR
28 Always try to allocate an executable image at it's preferred address
29 (even if it has fixups)
30
31 2000-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
32 - INCLUDE\makefiles
33 SRC\*\makefile
34 ODINCRT
35 Build different odincrt for debug & release build (odincrtd & odincrt)
36 Odin dlls now link with correct version
37 - GDI32: Wrapper rewrite for region apis
38 Changed export for user32 (uses stdcall calling convention now
39 to avoid problem when using debug user32 with retail gdi32)
40 - DOC\Readme.txt
41 Updated installation instructions
42 - TOOLS\INSTALL\odin.cmd
43 Updated script for new doc directory
44
45 2000-07-18: Yuri Dario <mc6530@mclink.it>
46 - INCLUDE\win:
47 Compilation fixes for Opera
48 - USER32: Extra logging information
49 Fixed sending WM_PARENTNOTIFY in ::DestroyWindow
50
51 2000-07-18: Sander van Leeuwen <sandervl@xs4all.nl>
52 - WINMM: If waveOutSetVolume called with NULL waveout handle, use
53 that volume as the default for newly created streams.
54 (fixes volume in RealPlayer 7)
55 - KERNEL32: Fixed old unload order bug (causes a crash when quitting
56 RealPlayer 7); increase dynamic library count after calling
57 dll entrypoint with DLL_PROCESS_ATTACH. (used to be before;
58 -> wrong unload order of RPAP3260 & PNRS3260)
59 Call dll entrypoint with DLL_PROCESS_DETACH even when
60 thread library calls disabled.
61
62 2000-07-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
63 - KERNEL32: APIs are to be placed should have ordinal less than 1200
64 - even if they don't belong in the dll but just happend to be
65 implemented there. The reason is for humans and for
66 documentation tools to be able to tell which exports are APIs
67 and which are internal Odin32 function/APIs.
68 - div: Added some missing $Id keywords.
69 - database: Trying to make the database more useful. Extracting more
70 data from the source files.
71 According to the doc\ToDo file we're to write structured
72 and well documented code. This database is indetended to
73 make the documentation (++) browsable. (PHP)
74
75 2000-07-17: Patrick Haller <phaller@gmx.net>
76 - KERNEL32: fixed ReadFile/WriteFile bugfix
77 fixed return codes for HMWaitForSingleObject
78
79 2000-07-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
80 - Win32k: Created a development branch called "Grace" and checked my
81 current code in into it. (This is the reason why there are
82 some new files in the src/win32k tree.)
83
84 2000-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
85 - USER32: XWing vs Tie Fighter fix broke RealPlayer 7 setup (missing buttons)
86 -> rewrote RDW_INVALIDATE code in RedrawWindow to work for
87 both applications
88 - KERNEL32: Added extra check in isPEImage method
89 lpNumberOfBytesRead/Written can be NULL in Read/WriteFile
90 - PELDR: Fix for arguments with quotes (first and last quote removed)
91 (i.e. pe rnuninst "RealNetworks|RealPlayer|6.0| -i -p")
92 Fix for exe name with dir containing spaces
93
94 2000-07-12: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
95 - KERNEL32: Implemented handlemanager support for named and unnamed pipes
96
97 2000-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
98 - KERNEL32: Don't try to search for resources if the module doesn't contain any
99
100 2000-07-09: Patrick Haller <phaller@gmx.net>
101 - doc: Moved several documents to the new doc directory and
102 created initial version of "ToDo.txt". We should place
103 our open tasks in there for better overview and to be able
104 to assign priorities and people to them.
105
106 2000-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
107 - NTDLL: Bugfix for NtQueryInformationToken (TOKEN_USER); updated
108 with latest Wine code (TODO: NTDLL needs to be resynced)
109
110 2000-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
111 - KERNEL32: Store user default language in thread database struct
112 Set/GetThreadLocale change/return this LCID value
113 Fixed EnumSystemLocalesA/W; now returns default user language id
114 (in text) (TODO: should return all supported locales)
115 - KERNEL32/GDI32/USER32: Changed/fixed calls to strncpy (for 0 termination)
116
117 2000-07-06: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>
118 - ODINCRT: Fixed wrong implementation of strncpy; do not 0 terminate
119 string unless length < length parameter
120 (this is correct behaviour according to C library manual)
121
122 2000-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
123 - KERNEL32: Unstubbed CopyFileExA/W (calls CopyFileA/W; not properly implemented)
124 Unstubbed CreateDirectoryExA/W (calls CreateDirectoryA/W; not properly implemented)
125 Fixed GetShortPathNameA/W; don't touch short path parameter if
126 it's NULL; behaviour (as seen in NT 4, SP6):
127 - converts long filename to 8.3 short filname (TODO: not yet done here!)
128 - fails on volume that doesn't support 8.3 filenames
129 - if lpszShortPath 0 or cchBuffer too small -> return required length
130 (INCLUDING 0 terminator)
131 - if lpszLongPath == NULL -> ERROR_INVALID_PARAMETER (return 0)
132 - if lpszLongPath empty -> proceed as if nothing is wrong
133 (Wine claims it sets last error to ERROR_BAD_PATHNAME)
134 - does NOT clear the last error if successful!
135 - if successful -> return length of string (excluding 0 terminator)
136 - USER32: Fixed adding windows to tasklist (done too late)
137 - GDI32/USER32:
138 - Rewrote Set/GetViewportExtEx, Set/GetMapMode & moved them
139 from gdi32 to user32
140
141 2000-07-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
142 - KERNEL32: Added IsDebuggerPresent (debug.cpp). Returns FALSE, but by
143 SETing ODIN32.DEBUGGERPRESENT=1 it will return TRUE. (Some
144 application might issue calls to OutputDebugString if they
145 think they're being debugged.)
146 Moved OutputDebugString(A/W) to debug.cpp.
147
148 2000-07-02: Sander van Leeuwen <sandervl@xs4all.nl>
149 - RICHED32: Fixed bug when creating edit window (needs to be WS_CHILD)
150 - USER32: Fixed moving of child windows in MsgFormatFrame & move
151 child windows if only client rectangle changes
152 (fixes Acrobat Distiller window)
153 - SHELL32: Put back check for registration of ShellView window class
154 -> RegisterClass now fails if already registered
155 (fixed openfile dialogs)
Note: See TracBrowser for help on using the repository browser.