-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(shorebird_code_push): track support #232
Conversation
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! |
@@ -31,6 +31,7 @@ class _MyHomePageState extends State<MyHomePage> { | |||
late final bool _isUpdaterAvailable; | |||
var _isCheckingForUpdates = false; | |||
Patch? _currentPatch; | |||
UpdateTrack? _currentTrack; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to also add a bool to track the initialization state of the track
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"track the initialization state" = hasUpdateTrackBeenSet
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the example to provide clearer demonstration of the functionality (see video). This is less representative of how end users will likely want to structure this check, but I think that's maybe a separate example we can provide in a blog post or in our docs.
I think this is ready for review. @eseidel and I spoke about adding a version reporting function to the C API, but that probably belongs in a separate PR |
Verbal LGTM from @felangel on Discord |
Description
Add track support
ScreenRecording_11-08-2024.13-22-20_1.mp4
Type of Change