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