chore: storing version and changelog

This commit is contained in:
StraToN
2022-05-02 20:51:19 +00:00
parent 738ce0debc
commit 2c5c4004dd
4 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,12 @@
## [4.0.0-alpha.181](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.181) (2022-05-02)
### Bug Fixes
* implement varargs for ESC commands. 'custom' makes use of this [#592](https://github.com/godot-escoria/escoria-demo-game/issues/592) ([738ce0d](https://github.com/godot-escoria/escoria-demo-game/commit/738ce0debca0f51ae3b639838eb959c01850ce9c))
## [4.0.0-alpha.180](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.180) (2022-05-02)

View File

@@ -9,7 +9,7 @@
# - *object*: Global ID of the target `ESCItem`
# - *node*: Name of the child node of the target `ESCItem`
# - *func_name*: Name of the function to be called
# - params: Any arguments to be passed to the function (array and object parameters are not supported).
# - params: Any arguments to be passed to the function (array and object parameters are not supported).
# Multiple parameters can be passed by simply passing them in as additional arguments separated by
# spaces, e.g. `custom the_object the_node the_function arg1 arg2 arg3`
#

View File

@@ -205,7 +205,7 @@ func queue_event(event: ESCEvent) -> void:
escoria.logger.debug(message % [event.name, CHANNEL_FRONT])
return
elif _is_event_running(event, CHANNEL_FRONT):
# Don't queue the same event if it's already running.
# Don't queue the same event if it's already running.
escoria.logger.debug(
"Event %s already running in channel '%s'. Won't be queued."
% [event.name, CHANNEL_FRONT]
@@ -248,7 +248,7 @@ func queue_background_event(channel_name: String, event: ESCEvent) -> void:
escoria.logger.debug(message % [event.name, channel_name])
return
elif _is_event_running(event, CHANNEL_FRONT):
# Don't queue the same event if it's already running.
# Don't queue the same event if it's already running.
escoria.logger.debug(
"Event %s already running in channel '%s'. Won't be queued."
% [event.name, channel_name]

View File

@@ -120,7 +120,7 @@ func validate(command: String, arguments: Array) -> bool:
if arguments[index] == null:
# No type checking for null values
continue
if has_varargs and index == arguments.size() - 1:
# If we have varargs at the end, do not validate them.
continue