-
Notifications
You must be signed in to change notification settings - Fork 577
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
Create individual Scanner and Review image controller #213
Conversation
… view controller.
…velop # Conflicts: # WeScan.xcodeproj/project.pbxproj
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.
First of all, thanks for your contribution! This starts to look good. @Boris-Em I would love to have your perspective as well as this is quite a big code change.
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.
Thank you for your contribution @chawatvish!
I like the idea of this PR. I have a few high level comments we should address.
WeScanSampleProject.app: Coverage: 32.2
WeScan.framework: Coverage: 36.48
Generated by 🚫 Danger Swift against 74a3471 |
@chawatvish you can use |
I will try. Thank you 🙏🏻 |
# Conflicts: # WeScan.xcodeproj/project.pbxproj
Can you review and approve my merge request? @Boris-Em |
Hey Guy, I just discovered your library today. It's so amazing and easy to work with. |
Thank a lot. I waiting for @Boris-Em approve my PR. |
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.
Apologies for the late reply.
The code looks good @chawatvish, but I struggle a bit to really understand what's happening on this PR.
Could you elaborate a bit more about how the new classes you're introducing are supposed to be used for example? What is the end goal of this PR from a user perspective?
import UIKit | ||
import AVFoundation | ||
|
||
/// A method that your delegate object must implement to get cropped image. |
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.
This is the documentation for the function, but it is on the protocol.
We need to have documentation for both.
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.
Hi @Boris-Em
Apologies for the late reply.
This PR I would like to split the camera and edit image view out of other components.
I think we should have an individual view of a capture object and edit images after capture.
About other components like flash button, auto/manual detect, or shutter button people can customize it.
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.
This is the documentation for the function, but it is on the protocol.
We need to have documentation for both.
Means I have to document on code right?
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.
Yes, on the function (line 14).
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.
I changed it las 2 days. Thank you 🙏🏻
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.
Did you review it?
This PR is stale because it has been open for 30 days with no activity. Remove the Stale label or comment or this will be closed in 10 days. |
Merge wescan master to master
Update cancel button title. wescan.edit.button.cancel is not found in…
@Boris-Em Any comment else? |
@Boris-Em please revisit this once you're back from your holiday! 💪 |
Merge origin master to master
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.
I'm back!
Thanks for the hard work @chawatvish.
Congratulations! 🎉 This was released as part of Release 1.7.0 🚀 Generated by GitBuddy |
I make the new one from your code to the individual scanner and review the image controller. People can use it easier and they can custom control UI.
Thanks for the review and feel free for any questions or comments on my code.