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