Skip to content

Commit

Permalink
REL/DOC: run pre-release notes script, touch up docstrings and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tangkong committed Dec 19, 2023
1 parent 27163da commit bc4fce0
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 124 deletions.
6 changes: 3 additions & 3 deletions atef/widgets/config/find_replace.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def walk_find_match(
Yields a list of 'paths' to the matching key / field. A path is a list of
(object, field) tuples that lead from the top level ``item`` to the matching
key / field.
- If the object is a dataclass, `field` will be a field in that dataclass
- If the object is a list, `field` will be the index in that list
- If the object is a dict, `field` will be a key in that dictionary
- If the object is a dataclass, ``field`` will be a field in that dataclass
- If the object is a list, ``field`` will be the index in that list
- If the object is a dict, ``field`` will be a key in that dictionary
``match`` should be a Callable taking a single argument and returning a boolean,
specifying whether that argument matched a search term or not. This is
Expand Down
1 change: 1 addition & 0 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Dataclasses
atef.config
atef.procedure
atef.tools
atef.walk
36 changes: 33 additions & 3 deletions docs/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,47 @@ Release History
###############


v1.3.0 (2023-12-19)
===================

Features
--------
- Adds results summary page accessible from run-mode in the `atef config` GUI
- Adds icons to run-mode tree view
- Adds page widget cache and lazy loading functionality to the atef config GUI

Bugfixes
--------
- :class:`~atef.widgets.config.data_passive.RangeWidget`'s visualizations update a bit more frequently, and also the label text actually updates. Closes #212
- Adds a menu option to open the welcome tab, since people like it. Closes #201
- Properly shows an error message box when a file can't be opened. Closes #202
- Allow tolerances to be `None` in `Equals` comparison. Modifies the line-edit setup to allow null values (`''`, `None`) when casting the line edit value. Closes #128

Maintenance
-----------
- Make comparisons against enum signals more robust by trying both the int and string versions if the check fails.
- Refactors tree-walking helpers to a separate submodle (`atef.walk`)
- Replaces use of `functools.partial` with `WeakPartialMethodSlot` in qt slots, cleaning up intermittent test suite failures (and hopefully production crashes)
- Refactors GUI backend to support lazy page loading
- Move tree-building logic to dataclasses
- Consolidate GUI backend classes (`EditTree` / `RunTree` -> `DualTree`, `AtefItem` / `TreeItem` -> `TreeItem`)

Contributors
------------
- tangkong



v1.2.0 (2023-09-27)
===================

Features
--------
- Adds `ScientificDoubleSpinbox` and uses it in MultiModeValueEdit.
- Adds :class:`~atef.widgets.config.utils.ScientificDoubleSpinbox` and uses it in MultiModeValueEdit.

Bugfixes
--------
- Waits for signal connection during :class:`ActionRowWidget` initialization to properly
read enum strings from signal.
- Waits for signal connection during :class:`~atef.widgets.config.data_active.ActionRowWidget` initialization to properly read enum strings from signal.

Contributors
------------
Expand Down
27 changes: 0 additions & 27 deletions docs/source/upcoming_release_notes/213-mnt_bug_misc_fixes.rst

This file was deleted.

22 changes: 0 additions & 22 deletions docs/source/upcoming_release_notes/214-tst_qt_teardown.rst

This file was deleted.

22 changes: 0 additions & 22 deletions docs/source/upcoming_release_notes/219-mnt_enum_check.rst

This file was deleted.

23 changes: 0 additions & 23 deletions docs/source/upcoming_release_notes/221-enh_status_out.rst

This file was deleted.

24 changes: 0 additions & 24 deletions docs/source/upcoming_release_notes/224-perf_lazy_page.rst

This file was deleted.

0 comments on commit bc4fce0

Please sign in to comment.