chore: storing version and changelog

This commit is contained in:
StraToN
2022-07-11 21:04:09 +00:00
parent 833f9bb503
commit d7b8c893af
4 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
## [4.0.0-alpha.190](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.190) (2022-07-11)
## [4.0.0-alpha.189](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.189) (2022-07-10) ## [4.0.0-alpha.189](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.189) (2022-07-10)

View File

@@ -188,7 +188,7 @@ class ESCLoggerFile extends ESCLoggerBase:
class ESCLoggerVerbose extends ESCLoggerBase: class ESCLoggerVerbose extends ESCLoggerBase:
func _init(): func _init():
pass pass
func debug(owner: Object, msg: String): func debug(owner: Object, msg: String):
var context = owner.get_script().resource_path.get_file() var context = owner.get_script().resource_path.get_file()
print(context, ": ", msg) print(context, ": ", msg)

View File

@@ -135,7 +135,7 @@ func say(character: String, type: String, text: String) -> void:
escoria.logger.warn( escoria.logger.warn(
self, self,
"Unable to find voice file with key '%s'." % matches.get_string("key") "Unable to find voice file with key '%s'." % matches.get_string("key")
) )
else: else:
( (
escoria.object_manager.get_object(escoria.object_manager.SPEECH).node\ escoria.object_manager.get_object(escoria.object_manager.SPEECH).node\

View File

@@ -56,7 +56,7 @@ func enable_plugin():
"type": TYPE_STRING "type": TYPE_STRING
} }
) )
ESCProjectSettingsManager.register_setting( ESCProjectSettingsManager.register_setting(
ESCProjectSettingsManager.AVATARS_PATH, ESCProjectSettingsManager.AVATARS_PATH,
"", "",