diff options
author | Spartan322 <Megacake1234@gmail.com> | 2023-03-24 03:22:30 +0100 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2023-03-24 03:22:30 +0100 |
commit | 7ac46980e9c2d42088744b46a6a3b42ada9e5475 (patch) | |
tree | cb6bd70cc1724e9add8f40e847b92aed16c7d3d5 /game | |
parent | a0b5784bafca6e377dbae1a26b1f48fa000dd317 (diff) |
Fix MacOS OpenVic2.dmg export_path to OpenVic2.app
Godot cannot output a dmg file
Rename macOS export preset to MacOS
To make export platform names consistent
Add `common/*` to include_filter
So exports will include everything in the common directory
Make credits.csv not translation file but to keep the file on import
Prevents replacement of the file as a translation
Diffstat (limited to 'game')
-rw-r--r-- | game/common/credits.csv.import | 16 | ||||
-rw-r--r-- | game/export_presets.cfg | 10 |
2 files changed, 6 insertions, 20 deletions
diff --git a/game/common/credits.csv.import b/game/common/credits.csv.import index 63b33aa..8dd0c09 100644 --- a/game/common/credits.csv.import +++ b/game/common/credits.csv.import @@ -1,17 +1,3 @@ [remap] -importer="csv_translation" -type="Translation" -uid="uid://4dwpfaaedki" - -[deps] - -files=["res://common/credits.OpenVic2.translation"] - -source_file="res://common/credits.csv" -dest_files=["res://common/credits.OpenVic2.translation"] - -[params] - -compress=true -delimiter=0 +importer="keep" diff --git a/game/export_presets.cfg b/game/export_presets.cfg index b8be1ac..4a031ea 100644 --- a/game/export_presets.cfg +++ b/game/export_presets.cfg @@ -6,7 +6,7 @@ runnable=true dedicated_server=false custom_features="" export_filter="all_resources" -include_filter="" +include_filter="common/*" exclude_filter="" export_path="export/Linux-x86_64/OpenVic2.x86_64" encryption_include_filters="" @@ -47,7 +47,7 @@ runnable=true dedicated_server=false custom_features="" export_filter="all_resources" -include_filter="" +include_filter="common/*" exclude_filter="" export_path="export/Windows/OpenVic2.exe" encryption_include_filters="" @@ -107,15 +107,15 @@ Remove-Item -Recurse -Force '{temp_dir}'" [preset.2] -name="macOS" +name="MacOS" platform="macOS" runnable=true dedicated_server=false custom_features="" export_filter="all_resources" -include_filter="" +include_filter="common/*" exclude_filter="" -export_path="export/MacOS/OpenVic2.dmg" +export_path="export/MacOS/OpenVic2.app" encryption_include_filters="" encryption_exclude_filters="" encrypt_pck=false |