|
1 | 1 | # Changelog #
|
2 | 2 |
|
3 |
| -## Version 3.2.3 ## |
| 3 | +## Version 3.3.0 ## |
| 4 | + |
| 5 | +💥 New features: |
| 6 | + * Array editor now supports row/column insertion/deletion: |
| 7 | + * Added `variable_size` argument to `setup_and_check` method |
| 8 | + * The feature is disabled by default (backward compatible) |
| 9 | + * It supports standard arrays, masked arrays, record arrays and N-dimensional arrays |
| 10 | + * New dataset read-only mode: |
| 11 | + * Added `readonly` argument to `DataSet` constructor |
| 12 | + * This is useful to create a dataset that will be displayed in read-only mode |
| 13 | + (e.g. string editing widgets will be in read-only mode: text will be selectable |
| 14 | + but not editable) |
| 15 | + * The items remain modifiable programmatically (e.g. `dataset.item = 42`) |
| 16 | + * New dataset group edit mode: |
| 17 | + * Added `mode` argument to `DataSetGroup.edit` method, with the following options: |
| 18 | + * `mode='tabs'` (default): each dataset is displayed in a separate tab |
| 19 | + * `mode='table'`: all datasets are displayed in a single table |
| 20 | + * In the new table mode, the datasets are displayed in a single table with |
| 21 | + one row per dataset and one column per item |
| 22 | + * Clicking on a row will display the corresponding dataset in a modal dialog box |
4 | 23 |
|
5 | 24 | 🛠️ Bug fixes:
|
6 | 25 |
|
|
11 | 30 | which will flush the output stream when closing the application)
|
12 | 31 | * This concerns all console-related widgets: `DockableConsole`, `Console`,
|
13 | 32 | `InternalShell`, `PythonShellWidget` and `ShellBaseWidget`
|
| 33 | +* Code editor: fixed compatibility issue with PySide6 |
| 34 | + (`AttributeError: 'QFont' object has no attribute 'Bold'`) |
14 | 35 |
|
15 | 36 | ## Version 3.2.2 ##
|
16 | 37 |
|
|
0 commit comments