bruvzg

Results 237 comments of bruvzg

The error is correct, Mono and GDNative/GDExtension require this option to be enabled if you are using ad-hoc signature (in the export options, check `Codesign` → `Entitlements` → `Disable Library...

> Handle macos framework and their custom structure/Info.plist (auto-generate with optional override? Have it handled by godot platform exporter? Exporter will copy the whole directory, without checking internal structure. `Info.plist`...

Nothing in the plugin seems to be Unicode aware. https://github.com/godotengine/godot-git-plugin/blob/2f160a2b7926efb728025ab07a29858ff71981a1/godot-git-plugin/src/git_plugin.cpp#L385 Probably should be `godot::String msg = godot::String::utf8(git_commit_message(commit.get()));` https://github.com/godotengine/godot-git-plugin/blob/2f160a2b7926efb728025ab07a29858ff71981a1/godot-git-plugin/src/git_plugin.cpp#L278 Same here for branch names and probably every single other use of...

> Would https://github.com/godotengine/godot-git-plugin/pull/190 help with this? It seems to be fixing at least some of the strings, not sure if it's all.

> does this PR work for you with binary 'res'-Fonts? There should not be any binary (or text) font resources at all, font files should be used directly.

Something like this - https://github.com/bruvzg/godot-demo-projects/commit/0401f2871460370ba487d8506990aec5b5d43c09

This is causing issues on macOS, since the downloaded `ruff` binary is ~unsigned~unnotarized and can't run (it's fixable by removing the quarantine flag or re-signing it manually, but pretty annoying).

This makes sense to take metadata into account. For small allocs it actually might have more options than powers of 2, like https://git.musl-libc.org/cgit/musl/tree/src/malloc/mallocng/malloc.c#n12 but it's platform/CRT dependent, so I would...

Seems like for some use cases (like current directory) adding `\\?\` is not sufficient, and we should also set opt in in in the app manifest.

See https://github.com/godotengine/godot/pull/87243 for a draft (adds support for fractional font sizes and different constant types).