Skip to content

Commit

Permalink
chore: storing version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
BHSDuncan committed Sep 1, 2022
1 parent 238b1d2 commit bc244d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [4.0.0-alpha.213](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.213) (2022-09-01)



## [4.0.0-alpha.212](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.212) (2022-08-26)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func apply_settings() -> void:
self,
"******* settings loaded"
)

AudioServer.set_bus_volume_db(
AudioServer.get_bus_index(escoria.BUS_MASTER),
linear2db(
Expand Down Expand Up @@ -122,7 +122,7 @@ func load_settings():
+ "Setting default settings."
)
save_settings()

var settings: ESCSaveSettings = load(save_settings_path)
save_settings_resource_to_project_settings(settings)

Expand All @@ -132,7 +132,7 @@ func get_settings() -> ESCSaveSettings:
var plugin_config = ConfigFile.new()
plugin_config.load("res://addons/escoria-core/plugin.cfg")
settings.escoria_version = plugin_config.get_value("plugin", "version")

settings.text_lang = ESCProjectSettingsManager.get_setting(
ESCProjectSettingsManager.TEXT_LANG
)
Expand Down
2 changes: 1 addition & 1 deletion addons/escoria-core/game/escoria.gd
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func _ready():

escoria.settings_manager.load_settings()
escoria.settings_manager.apply_settings()

escoria.room_manager.register_reserved_globals()
escoria.inputs_manager.register_core()
if ESCProjectSettingsManager.get_setting(
Expand Down

0 comments on commit bc244d5

Please sign in to comment.