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