Merge pull request #174 from pjf/CustomBiomes

Adjust CustomBiomes to also include its config.xml file
This commit is contained in:
Alexander Dzhoganov 2014-12-23 14:24:50 +02:00
commit a2675832b8
4 changed files with 16 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{
"spec_version" : 1,
"spec_version" : "v1.2",
"name" : "Custom Biomes",
"identifier" : "CustomBiomes",
"abstract" : "Add or replace biomes to any celestial body in KSP",
@ -21,7 +21,12 @@
{
"file" : "CustomBiomes",
"install_to" : "GameData",
"filter" : "PluginData"
"filter" : [ "PluginData", "Thumbs.db" ]
},
{
"file" : "CustomBiomes/PluginData/CustomBiomes/config.xml",
"install_to" : "GameData/CustomBiomes/PluginData/CustomBiomes",
"comment" : "Config for the mod itself, not the biomes."
}
]
}

View File

@ -31,7 +31,7 @@
"file": "CustomBiomes",
"install_to": "GameData",
"comment": "This regexp only installs PluginData, and nothing else",
"filter_regexp": "^(?!CustomBiomes/PluginData/)"
"filter_regexp": "^(?!CustomBiomes/PluginData/)|config.xml"
}
],
"author": "NathanKell",

View File

@ -31,7 +31,7 @@
"file": "CustomBiomes",
"install_to": "GameData",
"comment": "This regexp only installs PluginData, and nothing else",
"filter_regexp": "^(?!CustomBiomes/PluginData/)"
"filter_regexp": "^(?!CustomBiomes/PluginData/)|config.xml"
}
],
"author": "NathanKell",

View File

@ -1,5 +1,5 @@
{
"spec_version" : 1,
"spec_version" : "v1.2",
"name" : "Custom Biomes (Stock data)",
"identifier" : "CustomBiomes-Data-Stock",
"abstract" : "Custom biomes data for the stock Kerbol system",
@ -16,10 +16,10 @@
},
"install" : [
{
"file" : "CustomBiomes",
"install_to" : "GameData",
"comment" : "This regexp only installs PluginData, and nothing else",
"filter_regexp" : "^(?!CustomBiomes/PluginData/)"
"file" : "CustomBiomes/PluginData/CustomBiomes",
"install_to" : "GameData/CustomBiomes/PluginData",
"filter" : [ "config.xml", "Thumbs.db" ],
"comment" : "config.xml is bundled with the main mod itself"
}
]
}