Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
- Initial Android support ([#169](https://github.com/getsentry/sentry-godot/pull/169))
- Refine demo for mobile screens ([#196](https://github.com/getsentry/sentry-godot/pull/196))

## Fixes

- Fixed Godot 4.5 complaining that "usage" is not supported ([#214](https://github.com/getsentry/sentry-godot/pull/214))

### Dependencies

- Bump Native SDK from v0.9.0 to v0.9.1 ([#210](https://github.com/getsentry/sentry-godot/pull/210))
Expand Down
1 change: 1 addition & 0 deletions src/sentry_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ void _define_setting(const String &p_setting, const Variant &p_default, bool p_b
void _define_setting(const godot::PropertyInfo &p_info, const godot::Variant &p_default, bool p_basic = true) {
_define_setting(p_info.name, p_default, p_basic);
Dictionary info = (Dictionary)p_info;
info.erase("usage"); // Fix "usage" not supported warning.
ProjectSettings::get_singleton()->add_property_info(info);
}

Expand Down
Loading