Open shrivaths16 opened 1 year ago
Attention: 7 lines
in your changes are missing coverage. Please review.
Comparison is base (
c218b10
) 73.39% compared to head (150453d
) 73.46%.
Files | Patch % | Lines |
---|---|---|
sleap/gui/app.py | 85.71% | 3 Missing :warning: |
sleap/gui/commands.py | 66.66% | 2 Missing :warning: |
sleap/gui/dialogs/bulletin.py | 95.55% | 2 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
CodeRabbit review skipped
By default, CodeRabbit only reviews PRs on the default branch. If you wish to have PRs reviewed on additional branches, you can configure that under the repository settings in the UI.
The SLEAP GUI has introduced a new feature to keep users informed of updates through a bulletin dialog. This feature includes the creation of a BulletinDialog
class, a BulletinWorker
to fetch and display announcements, and a system to track when users last saw an announcement. Additionally, changes to the GUI styling and updates to AUTHORS files reflect contributions and code maintenance efforts.
File Path | Change Summary |
---|---|
sleap/gui/app.py |
Reorganized initialization logic, added bulletin_dialog method, and included new imports. |
sleap/gui/dialogs/bulletin.py |
Introduced BulletinDialog and related entities for displaying announcements in the GUI. |
sleap/gui/commands.py |
Added a new method showBulletin to the Commands class and a corresponding ShowBulletin class with a do_action method to open the latest bulletin. |
tests/gui/test_app.py |
Added a check for a bulletin in the test_app_workflow function. |
BulletinDialog
and BulletinWorker
, which could display updates and announcements to the user.π° Oh hop and leap, let's take a peek,
π A bulletin's here, with updates each week.
π No need to search, it's all in view,
π SLEAP's new feature, fresh as morning dew.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Description
Creating a new file
bulletin.py
and classBulletinDialog
to display the announcement. An instance of this BulletinDialog class is created while initializing theMainWindow
if there is an unseen announcement.This will create a bulletin pop-up that will display the latest information that is found in the
bulletin.md
file.Types of changes
Does this address any currently open issues?
1563
Outside contributors checklist
Thank you for contributing to SLEAP!
:heart:
Summary by CodeRabbit
New Features
Tests
Chores