-
Notifications
You must be signed in to change notification settings - Fork 12
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: discover #211
feat: discover #211
Conversation
Icons are temporary |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #211 +/- ##
==========================================
+ Coverage 47.38% 50.32% +2.94%
==========================================
Files 144 144
Lines 17580 17619 +39
==========================================
+ Hits 8330 8867 +537
+ Misses 9250 8752 -498 ☔ View full report in Codecov by Sentry. |
Generated tech debt: |
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.
Looks great :D Only two comments
godot/.godot/uid_cache.bin
Outdated
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 shouldn't be commited
godot/src/config/config_data.gd
Outdated
else: | ||
to_remove.push_front(i) | ||
|
||
for i in to_remove: |
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 works because of the way items are pushed into the vector.
Add a comment or use by_reference remove (to_remove.push(_last_places[i])
and then use erase). Don't think the performance makes a big difference here
Close #224