Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: include override cfg in export presets #28

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading