chore: storing version and changelog

This commit is contained in:
BHSDuncan
2022-07-18 23:29:43 +00:00
parent 4991ff3423
commit 6cf08a607f
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
## [4.0.0-alpha.199](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.199) (2022-07-18)
### Bug Fixes
* logs a warning if the avatar path isn't set or if the avatar itself can't be found ([4991ff3](https://github.com/godot-escoria/escoria-demo-game/commit/4991ff342363767497e4188f6f44418d93bf612f))
* puts a default avatar path back as it had gone missing for some reason ([c4afb59](https://github.com/godot-escoria/escoria-demo-game/commit/c4afb59121b01cb3328f74354179b2b0fa137623))
## [4.0.0-alpha.196](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.196) (2022-07-18)

View File

@@ -72,7 +72,7 @@ func set_current_character(name: String):
if ResourceLoader.exists(avatar):
avatar_node.texture = ResourceLoader.load(avatar)
else:
escoria.logger.warn(self, "Unable to load avatar '%s': Resource not found in path '%s'" %
escoria.logger.warn(self, "Unable to load avatar '%s': Resource not found in path '%s'" %
[name, ProjectSettings.get_setting("escoria/dialog_simple/avatars_path")])