Skip to content

Commit

Permalink
[Added] Support for KiCad 8.0.3
Browse files Browse the repository at this point in the history
Which creates a bogus window called "Report" at start-up
  • Loading branch information
set-soft committed Jun 19, 2024
1 parent cc7a9e9 commit 4dabb8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [2.3.2] - UNRELEASED
## [2.3.2] - 2024-06-19
### Added
- Support for KiCad 8.0.3 (bogus Report dialog)
- Convert command to convert Altium files


Expand Down
3 changes: 3 additions & 0 deletions kiauto/interposer.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,5 +777,8 @@ def wait_start_by_msg(cfg):
elif title.startswith(KIKIT_HIDE):
# Buggy KiKit plugin creating a dialog at start-up (many times)
pass
elif title == 'Report':
# KiCad 8.0.3 bogus hidden dialog
pass
else:
unknown_dialog(cfg, title)

0 comments on commit 4dabb8f

Please sign in to comment.