-
Notifications
You must be signed in to change notification settings - Fork 7
Hull classifiers to antennas #118
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
Open
drNovikov
wants to merge
19
commits into
stackcollision:master
Choose a base branch
from
drNovikov:dev-drnovikov
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
bacc7f3
Changed HullClassifier to MyRadioAntenna instead of MyBeacon
drNovikov 66ddb81
Changed HullClassifier mount points so they cover the whole surface
drNovikov eaa9d07
Bacon surfaces made fully mountable
drNovikov 36137ad
Beacon and Hull Classifiers mount points reverted to vanilla
drNovikov 7b42980
Fixed a typo in a comment
drNovikov 9820af1
Removed my *.bak from .gitignore
drNovikov 5b0d57b
"/gc fleet stop" enables thrusters, enables gyroscopes, sets gyro pow…
drNovikov dd2d4d1
Added ResourceSinkGroup to hull classifier definitions
drNovikov e6d5a38
cp round reward imprvs and fixes
zrisher 444b575
add ability to show/hide CP GPS markers
zrisher eb49dc6
Changed HullClassifier to MyRadioAntenna instead of MyBeacon
drNovikov 37b4173
Changed HullClassifier mount points so they cover the whole surface
drNovikov 7c473fe
Bacon surfaces made fully mountable
drNovikov 28a15f9
Beacon and Hull Classifiers mount points reverted to vanilla
drNovikov 0bca8bc
Fixed a typo in a comment
drNovikov 5edd8b5
Removed my *.bak from .gitignore
drNovikov 327dbc4
"/gc fleet stop" enables thrusters, enables gyroscopes, sets gyro pow…
drNovikov f67dfb1
Added ResourceSinkGroup to hull classifier definitions
drNovikov 04a0f5c
Merge remote-tracking branch 'origin/dev-drnovikov' into dev-drnovikov
drNovikov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
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.
What file were you working with that had this extension?
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.
*bak is how I marked the backups.
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.
Which backups are you referring to? So with git, you never need to save backups of files that have already been committed to the tree, because they're always available through the commit history. You can check out any version of any file from any time it's been committed.
The gitignore is meant to include all files that should everyone working on this project would want to ignore - so we only include file types that are directly correlated with the body of code. Personal preferences we leave to the global .gitignore file (likely already available in your ~ directory).
This isn't to be a dick, it's just long term better practice to be semantic about what we include to help describe the project and ensure no one is ever surprised because they try to add a legitimate file but it's ignored due to an unfamiliar ignore.
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.
Understood :) Thanks for the clarification, I've never used github before, so I am still new to the practices.
Will move this to my global .gitignore Sorry for cluttering the file, I thought it influences my github only.
*.bak is how I use Notepad++ to quickly test an idea without involving repositories. I just copy a file to *.bak, and then test ideas by changing the original file and seeing the effect. Reverting is faster than with git.