]>
Commit | Line | Data |
---|---|---|
a4c013b2 RR |
1 | 0.1.2-1 |
2 | _______ | |
3 | ||
4 | Added support for wxGridBagSizer (supported in wxPython 2.5). | |
5 | ||
6 | 0.1.1-5 | |
7 | ------- | |
8 | ||
9 | Added subclass attribute. | |
10 | ||
8b9a4190 RD |
11 | 0.1.1-4 |
12 | ------- | |
13 | ||
14 | Fixed problems with wxStaticBitmap (stock_id attribute, icon type | |
15 | switching). | |
16 | ||
17 | Changed some dimensions in properties panel elements. | |
18 | ||
1fded56b RD |
19 | 0.1.1-3 |
20 | ------- | |
21 | ||
22 | Sizes of some controls were not normal on wxMSW. Fixed. | |
23 | ||
24 | Some changes to test window code to make it resize better and to | |
25 | have focus control with sawfish for all types of windows. | |
26 | ||
27 | 0.1.1-2 | |
28 | ------- | |
29 | ||
30 | Bugs with currentEncoding and frame testing fixed. | |
31 | ||
32 | Some required parameters are set to default if missing. | |
33 | ||
34 | Unsupported classes are tolerated, with warning message. | |
35 | ||
36 | wxScrolledWindow added (to 'control' pulldown menu, not yet to the | |
37 | tool palette). | |
38 | ||
39 | Multi-line editing for labels and some values (wxTextCtrl, | |
40 | wxHtmlWindow). | |
41 | ||
42 | 0.1.1-1 | |
43 | ------- | |
44 | ||
45 | Changed internationalization support. '-i' option removed, default | |
46 | encoding is used (should be defined in sitecustomize.py, or 'ascii' by | |
47 | default). When XRC file is opened with encoding specified, | |
48 | translations are not used. | |
49 | ||
50 | 0.1.1 | |
51 | ----- | |
52 | ||
53 | Replace command added (not quite finished yet). | |
54 | ||
1e4a197e RD |
55 | 0.1.0 |
56 | ----- | |
57 | ||
58 | Finally implemented tools panel for almost all controls (except | |
59 | wxHtmlWindow, wxCalendarCtrl and wxGenericDirCtrl - they are too | |
60 | rarely used). | |
61 | ||
62 | Changed some sizes in panel to better work with different fonts. | |
63 | ||
64 | Fixed double-refreshing after Ctrl+R. | |
65 | ||
66 | Maybe something else that I've forgot. It's been a looong day... :) | |
67 | ||
1fded56b | 68 | |
1e4a197e RD |
69 | 0.0.9-6 |
70 | ------- | |
71 | ||
72 | Added dialog unit support. | |
73 | ||
74 | Dealing with non-specified required values (set to defaults, if exist). | |
75 | ||
76 | Added 'minsize' parameter of sizeritem. | |
77 | ||
78 | Added '-i' option to turn off translations and use international characters. | |
79 | ||
80 | 0.0.9-5 | |
81 | ------- | |
82 | ||
83 | Mac platform-specific checks. | |
84 | ||
85 | 0.0.9-4 | |
86 | ------- | |
87 | ||
88 | Implemented standard bitmap selection. | |
89 | ||
90 | Fixed a bug in FlexGridSizer code. | |
91 | ||
92 | 0.0.9-3 | |
93 | ------- | |
94 | ||
95 | File browsing (for bitmaps/icons, etc.) had a small problem when current | |
96 | file was not saved yet. | |
97 | ||
98 | 0.0.9-2 | |
99 | ------- | |
100 | ||
101 | Small bug fix for initial don't panic message. | |
102 | ||
103 | 0.0.9-1 | |
104 | ------- | |
105 | ||
106 | Changed program structure, reduced use of global variables (grouped in | |
107 | module 'globals', which creates an instanse 'g' of class Globals. | |
108 | ||
109 | First version of undo/redo working! | |
110 | ||
111 | Support for toolbars inside panels and frames. | |
112 | ||
113 | Added 'container' submenu for creating Panel, Notebook and ToolBar objects. | |
114 | ||
115 | wxMSW-only: added code to switch focus back to main window when test | |
116 | window is updated. | |
117 | ||
118 | 0.0.8-2 | |
119 | ------- | |
120 | ||
121 | Fixed unicode problem for unicode build. | |
122 | ||
123 | 0.0.8-1 | |
124 | ------- | |
125 | ||
126 | Using WX_2_4_BRANCH. | |
127 | ||
128 | Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom | |
129 | control), improved wxXRC format suppor (menu styles, etc.). | |
130 | ||
131 | Some I18N support: parsing "encoding" attribute in XML header, later | |
132 | it can be modified in "properties" panel for "XML tree". | |
133 | ||
134 | UNIX note: currently XML writing for non-ascii chars works only if | |
135 | sys.getdefaultencoding() returns good value. To do this, one has to | |
136 | put following lines to "sitecustomize.py" file: | |
137 | ||
138 | # Start code segment | |
139 | import sys | |
140 | sys.setdefaultencoding('iso-8859-1') # or whatever | |
141 | # End code segment | |
142 | ||
143 | 0.0.7 | |
144 | ----- | |
145 | ||
146 | Some command-line arguments. | |
147 | ||
148 | "Test window" command and toolbar button. | |
149 | ||
150 | New panel interphace (wxHTMLWindow is not used anymore). | |
151 | ||
152 | Toggling between embedded and detached panel. | |
153 | ||
154 | Cache for already used windows. | |
155 | ||
156 | Current top-level control is bold, if test window shown. | |
157 | ||
158 | Undo/redo broken. | |
159 | ||
160 | CheckListBox does not work unless wxXRC source fixed (in both wxPytnon and | |
161 | wxWin): | |
162 | ||
163 | contrib/src/xrc/xmlrsall.cpp | |
164 | 45,46c45,46 | |
165 | < AddHandler(new wxListCtrlXmlHandler); | |
166 | < #if CHECKLISTBOX | |
167 | --- | |
168 | > AddHandler(new wxListCtrlXmlHandler); | |
169 | > #if wxUSE_CHECKLISTBOX | |
170 | ||
171 | This is fixed in CVS. | |
172 | ||
173 | 0.0.6 | |
174 | ----- | |
175 | ||
176 | Toolbar, bitmap, icon support (no display yet). | |
177 | ||
178 | Changed parameter objects, added support for multiple parameters (like | |
179 | `growablecols'). | |
180 | ||
181 | Fixed double-clicking problem with tree control on Windows. | |
182 | ||
183 | Some performance improovements. | |
184 | ||
185 | ||
186 | 0.0.5 | |
187 | ----- | |
188 | ||
189 | Added notebook with properties page and style page. Fixed some problems | |
190 | on Windows. | |
191 | ||
192 | ||
193 | 0.0.4 | |
194 | ----- | |
195 | ||
196 | Some fixes suggested by RD | |
197 | ||
198 | ||
199 | 0.0.3 | |
200 | ----- | |
201 | ||
202 | Faster preview window refresh. | |
203 | ||
204 | Cut/Paste works better. | |
205 | ||
206 | Some tree icons. | |
207 | ||
208 | Tree item names. | |
209 | ||
210 | Bugfixes. | |
211 | ||
212 | ||
213 | 0.0.2 | |
214 | ----- | |
215 | ||
216 | The first release. | |
217 |