source: trunk/changelog@ 3871

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

* empty log message *

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