]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/changes.txt
applied a patch to remove spurious constrains unsatisifed warnings
[wxWidgets.git] / docs / changes.txt
... / ...
CommitLineData
1wxWindows 2 Change Log
2----------------------
3
42.3.2
5-----
6
7wxBase:
8
9- wxRegEx class added
10- wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
11- more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
12 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
13 capabilities at runtime instead of in the configure script.
14
15All (GUI):
16
17- support for virtual list control added
18- wxFindReplaceDialog added (based on work of Markus Greither)
19- wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
20- polygon support in wxRegion (Klaas Holwerda)
21
22wxHTML:
23
24- new HTML parser with correct parsing of character entities and fixes
25 to tags parsing
26
272.3.1
28-----
29
30wxBase:
31
32- Fixes for gcc 3.0
33- Fixed new charset detection code
34- ODBC Informix fixes (submitted by Roger Gammans)
35- Added ODBC date support to wxVariant
36- Added wxDir::Traverse
37- Added wxSingleInstanceChecker class
38- Removed redundant wxDebugContext functions using C++ streams,
39 so now standard stream usage should be unnecessary
40
41All (GUI):
42
43- Added wxDbGrid class for displaying ODBC tables
44- Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
45 user code can get access to the edit control when it is created, (to
46 push on a custom event handler for example)
47- Added wxTextAttr class and SetStyle, SetDefaultStyle and
48 GetDefaultStyle methods to wxTextCtrl
49- Added wxSingleInstanceChecker
50- Improvements to Tex2RTF
51- Added Paul and Roger Gammans' grid controls
52- Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
53 first-time saved
54- Fixed memory leak in textcmn.cpp
55- Various wxXML enhancements
56- Removed wxCLIP_CHILDREN style from wxSplitterWindow
57- Fixed memory leak in DoPrint, htmprint.cpp
58- Fixed calendar sample bug with using wxCommandEvent::GetInt()
59 instead of GetId()
60- Added wxDbGrid combining wxODBC classes with wxGrid
61- Added more makefiles and project files for contrib hierarchy
62
63wxMSW:
64
65- Fixed wxApp::ProcessMessage so controls don't lose their
66 accelerators when the accelerators are redefined elsewhere
67- Accelerators consisting of simple keystrokes (without control,
68 alt or shift) now work
69- Compile fixes for Watcom C++ added
70- Compile fixes for Cygwin 1.0 added
71- Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
72- Replaced wxYield() call in PopupMenu() by a much safer
73 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
74- Enter processing in wxSpinCtrl fixed
75- Fixed bug in determining the best listbox size
76- Fix for wxFrame's last focus bug
77- We now send iconize events
78- Fixed wxFrame::SetClientSize() with toolbar bug
79- Added mousewheel processing
80- Added wxSystemSettings::Get/SetOption so we can configure
81 wxWindows at run time; used this to implement no-maskblt option
82 in wxDC
83- Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
84 child frame styles are honoured
85
86wxGTK:
87
88- Fixed slider rounding bug
89- Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
90- We now send iconize events
91- Fix for discrepancies between wxNotebookEvent and wxNotebook
92 GetSelection() results
93
942.3.0
95-----
96
97wxBase:
98
99- fixed problem with wxURL when using static version of the library
100- wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
101- wxMimeTypesManager now can create file associations too (Chris Elliott)
102- wxCopyFile() respects the file permissions (Roland Scholz)
103