Skip to content

Commit

Permalink
fix: include override cfg in export presets (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianvazelle authored Dec 7, 2023
1 parent f7e0333 commit c7589a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Removed
### Fixed
- Correct loading of sound effects for the menu ([#27](https://github.com/MechanicalFlower/Marble/pull/27))
- Include `override.cfg` in each export presets ([#28](https://github.com/MechanicalFlower/Marble/pull/28))
### Security
### Dependencies

Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ import-resources:

echo "Create the override.cfg"
touch override.cfg
echo '[build_info]\npackage/version="{{ game_version }}"\npackage/build_date="{{ build_date }}"\nsource/commit="{{ commit_hash }}"' > override.cfg
echo -e '[build_info]\npackage/version="{{ game_version }}"\npackage/build_date="{{ build_date }}"\nsource/commit="{{ commit_hash }}"' > override.cfg

# Godot binary wrapper
@godot *ARGS: makedirs install-godot install-templates
Expand Down
8 changes: 4 additions & 4 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runnable=true
dedicated_server=false
custom_features=""
export_filter="all_resources"
include_filter=""
include_filter="override.cfg"
exclude_filter=""
export_path=""
encryption_include_filters=""
Expand Down Expand Up @@ -70,7 +70,7 @@ runnable=true
dedicated_server=false
custom_features=""
export_filter="all_resources"
include_filter=""
include_filter="override.cfg"
exclude_filter=""
export_path=""
encryption_include_filters=""
Expand Down Expand Up @@ -110,7 +110,7 @@ runnable=true
dedicated_server=false
custom_features=""
export_filter="all_resources"
include_filter=""
include_filter="override.cfg"
exclude_filter=""
export_path=""
encryption_include_filters=""
Expand Down Expand Up @@ -217,7 +217,7 @@ runnable=true
dedicated_server=false
custom_features=""
export_filter="all_resources"
include_filter=""
include_filter="override.cfg"
exclude_filter=""
export_path=""
encryption_include_filters=""
Expand Down

0 comments on commit c7589a8

Please sign in to comment.