hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.3K
active users

BD103

After that, I left a review on github.com/TheBevyFlock/bevy_c. It's a PR by the lovely DaAlbrecht that updates the linter to support Bevy 0.16! Though Bevy 0.16 has not officially released yet, it's just around the corner. I'm planning on publishing a new version of the linter (v0.3.0-rc.1 or v0.3.0) when that happens so that developers can use it in Bevy Jam #6!

Updating the linter to support a new version of Bevy isn't terribly challenging, but it has its moments! For example, in order to check if your code uses a specific type, we hard-code the absolute path to that type in one giant file (github.com/TheBevyFlock/bevy_c). If a type gets moved across versions, even if it was within a private module, we still have to update that file for it to work! This is part of the reason why the linter doesn't support multiple versions of Bevy yet.

Either way, DaAlbrecht's work is excellent; I just have a few minor changes before it can be merged. :apusheencomputer:

This updates the linter to support Bevy 0.16. As #138 has not yet been
implemented, Bevy 0.15 support is being dropped.
Relatively easy bump, all the Query and QueryState methods no longer panic, s...
GitHubLinter: Support Bevy 0.16 by DaAlbrecht · Pull Request #323 · TheBevyFlock/bevy_cliBy DaAlbrecht