Skip to content

Commit dcb31f3

Browse files
committed
Update CHANGELOG.md for improved formatting and clarity
1 parent 9d48390 commit dcb31f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
```python
7272
class PersonDataSet(DataSet):
7373
"""Personal Information Dataset
74-
74+
7575
This dataset collects basic personal information.
7676
"""
7777
name = StringItem("Full Name", default="John Doe")
7878
age = IntItem("Age", default=30)
7979
active = BoolItem("Account Active", default=True)
80-
80+
8181
dataset = PersonDataSet()
8282
html_output = dataset.to_html() # Generate HTML representation
8383
```
@@ -1019,7 +1019,7 @@ New features:
10191019
10201020
Bug fixes:
10211021
1022-
* disthelpers.prepend_module_to_path: unload modules which were already imported to be able to replace them by other versions (mostly `guidata` should be concerned by this if the function is used -as it should be- in package's __init__.py script)
1022+
* disthelpers.prepend_module_to_path: unload modules which were already imported to be able to replace them by other versions (mostly `guidata` should be concerned by this if the function is used -as it should be- in package's `__init__`.py script)
10231023
10241024
### Version 1.5.1 ###
10251025
@@ -1159,7 +1159,7 @@ Other changes:
11591159
* guidata.utils.utf8_to_unicode: translated error message in english
11601160
* Add support for 'int' in hdf5 save function
11611161
* guidata.dataset/Numeric items (FloatItem, IntItem): added option 'unit' (automatically add suffix ' (unit)' to label in edit mode and suffix ' unit' to value in read-only mode)
1162-
* Improved dataset __str__ method: code refactoring with read-only dataset widgets (DataItem: added methods 'format_string' and 'get_string_value', DataSet: added method 'to_string')
1162+
* Improved dataset `__str__` method: code refactoring with read-only dataset widgets (DataItem: added methods 'format_string' and 'get_string_value', DataSet: added method 'to_string')
11631163
* Added coding guidelines to the documentation
11641164
* guidata.dataset.qtwidget: added specific widget (ShowBooleanWidget) for read-only display of bool items (text is striked out when value is False)
11651165
* guidata.hdf5io.Dset: added missing keyword argument 'optional' (same effect as parent class Attr)
@@ -1182,7 +1182,7 @@ Bug fixes:
11821182
11831183
* setup.py: added svg icons to data files
11841184
* gettext helpers were not working on Linux (Windows install pygettext was hardcoded)
1185-
* DataSet/bugfix: comment/title options now override the DataSet class __doc__ attribute
1185+
* DataSet/bugfix: comment/title options now override the DataSet class `__doc__` attribute
11861186
* Added missing option 'basedir' for FilesOpenItem
11871187
* DirectoryItem: fixed missing child_title attribute bug
11881188
* For all DataSet GUI representation, the comment text is now word-wrapped

0 commit comments

Comments
 (0)