-
Notifications
You must be signed in to change notification settings - Fork 130
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) Enhanced orientation breadcrumbs with explicit "from" and "to" #486
Merged
robinmacharg
merged 8 commits into
v6
from
robin/Enhance-automatic-breadcrumbs-for-orientation-change
Mar 27, 2020
Merged
(feat) Enhanced orientation breadcrumbs with explicit "from" and "to" #486
robinmacharg
merged 8 commits into
v6
from
robin/Enhance-automatic-breadcrumbs-for-orientation-change
Mar 27, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
robinmacharg
force-pushed
the
robin/Enhance-automatic-breadcrumbs-for-orientation-change
branch
from
March 18, 2020 12:00
109acd2
to
5625833
Compare
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.
A few minor comments, otherwise this looks like a good implementation 👍
robinmacharg
force-pushed
the
robin/Enhance-automatic-breadcrumbs-for-orientation-change
branch
from
March 20, 2020 18:57
04c3285
to
5dffde0
Compare
robinmacharg
force-pushed
the
robin/Enhance-automatic-breadcrumbs-for-orientation-change
branch
from
March 23, 2020 10:52
5dffde0
to
7133d6f
Compare
robinmacharg
force-pushed
the
robin/Enhance-automatic-breadcrumbs-for-orientation-change
branch
from
March 24, 2020 18:42
032e861
to
9b4b54a
Compare
12 tasks
…hance-automatic-breadcrumbs-for-orientation-change # Conflicts: # Source/BugsnagClient.m
…dcrumb type checking, made "last" orientation instance-level
fractalwrench
approved these changes
Mar 27, 2020
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.
LGTM ✅
tomlongridge
approved these changes
Mar 27, 2020
robinmacharg
deleted the
robin/Enhance-automatic-breadcrumbs-for-orientation-change
branch
March 27, 2020 17:28
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Goal
Report both the old and new orientation values as metadata. Match the casing for the breadcrumb message.
Design
On device orientation change notification, record the current device orientation to be used the next time orientation changes. When both current and previous orientations are non-nil and differ record an appropriate breadcrumb.
Changeset
The change is located in
BugsnagClient
.Tests
This is difficult to test. For Unit testing mocking would allow the UIDevice to be stubbed out and simulate a rotation. For CI/e2e tests the possibility exists (but has not been proven to work) of sending a rotation keypress (Cmd-Left) to the simulator.
The implementation is simple and in the interests of time this feature is left as a manual test until mocking libraries have been added.
Review
Outstanding Questions
master
for fixes,next
forfeatures)