-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
changes standard version to VT version 6 #375
Conversation
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.
Thanks for your PR, really appreciate it! I have a few comments, could you look at those?
isobus/include/isobus/isobus/isobus_virtual_terminal_client.hpp
Outdated
Show resolved
Hide resolved
Also the version passed into the function is saved as a class member of the VirtualTerminalClient class, it'll be unused after these changes. So could you remove it aswell? |
I'll try to do all these, thank you! |
I have made another commit, check it out and let me know any feedback. Thanks. |
The build still seems to fail because where this function is used, the parameter "version" is still passed in: https://github.com/davidfiliks/AgIsoStack-plus-plus/blob/9f5e841d470eb57f8713a1e24accf06ecd5227f2/isobus/src/isobus_virtual_terminal_client.cpp#L1381 Furthermore, I was referring to this class member being unused after we make the changes in this PR: https://github.com/davidfiliks/AgIsoStack-plus-plus/blob/9f5e841d470eb57f8713a1e24accf06ecd5227f2/isobus/include/isobus/isobus/isobus_virtual_terminal_client.hpp#L1341 I enabled the Github Actions checks to automatically start, try to get all checks to succeed. Again thanks for taking your time to make a contribution, highly appreciated :) |
Thank you for helping like this, it is my first ever contribution on github. Check it out and give any feedback. Thanks. |
Well, it's cool that your first contribution is here with us! Welcome! It's looking pretty good to me, my only comment would be that it would be nice to squash or fixup all your commits into one commit with a nice tile, something like your first one "Change VT Client version to VT version 6" or something similar. |
@ad3154 FYI, that's also something GitHub can do for us :). It's the |
I mean, yeah, I guess, it's just not the default on this repo so I forget it exists 😀 |
How would I merge all these commits into one? |
It depends on how you interact with Git. I use fork but for raw Git, it would be something like what is described here with a This is a very common thing in Git, and fairly critical part of most git workflows, so it's something to look into as you gain experience with it, but no worries if it's not something you want to deal with right now, we can just have GitHub auto-squash it. |
I am not sure what to do here. This is the output after git rebase -i HEAD~5 |
This seems like the rebase exited while it was happening, like maybe it couldn't open your selected default text editor or something, or there was some conflict... Don't worry about it for now, you can cancel it with |
Alright, thanks. |
should resolve issue #374 if I understood correctly.