Deprecated bundles. Added CustomBiomes w/RSS support.
This commit is contained in:
parent
15e097deba
commit
1910345268
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"spec_version" : 1,
|
||||
"name" : "Custom Biomes",
|
||||
"identifier" : "CustomBiomes",
|
||||
"abstract" : "Add or replace biomes to any celestial body in KSP",
|
||||
"download" : "http://addons.cursecdn.com/files/2217%5C373/CustomBiomes_1_6_8.zip",
|
||||
"license" : "CC-BY-NC-SA-3.0",
|
||||
"version" : "1.6.8",
|
||||
"release_status" : "stable",
|
||||
"ksp_version" : "0.25",
|
||||
"depends" : [
|
||||
{ "name" : "CustomBiomesData" },
|
||||
],
|
||||
"recommends" : [
|
||||
{ "name" : "CustomBiomesKerbal" },
|
||||
],
|
||||
"resources" : {
|
||||
"homepage" : "http://forum.kerbalspaceprogram.com/threads/66256"
|
||||
},
|
||||
"install" : [
|
||||
{
|
||||
"file" : "CustomBiomes",
|
||||
"install_to" : "GameData",
|
||||
"filter" : "PluginData"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"spec_version" : 1,
|
||||
"name" : "Custom Biomes (Kerbal data)",
|
||||
"identifier" : "CustomBiomesKerbal",
|
||||
"abstract" : "Custom biomes data for the Kerbal system",
|
||||
"download" : "http://addons.cursecdn.com/files/2217%5C373/CustomBiomes_1_6_8.zip",
|
||||
"license" : "CC-BY-NC-SA-3.0",
|
||||
"version" : "1.6.8",
|
||||
"release_status" : "stable",
|
||||
"ksp_version" : "any",
|
||||
"depends" : [ { "name" : "CustomBiomes" } ],
|
||||
"provides" : [ { "name" : "CustomBiomesData" } ],
|
||||
"conflicts" : [ { "name" : "CustomBiomesData" } ],
|
||||
"resources" : {
|
||||
"homepage" : "http://forum.kerbalspaceprogram.com/threads/66256"
|
||||
},
|
||||
"install" : [
|
||||
{
|
||||
"file" : "CustomBiomes",
|
||||
"install_to" : "GameData",
|
||||
"comment" : "This regexp only installs PluginData, and nothing else",
|
||||
"filter_regexp" : "^(?!CustomBiomes/PluginData/)"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"spec_version": 1,
|
||||
"name": "Custom Biomes (Real Solar System data)",
|
||||
"identifier": "CustomBiomesRSS",
|
||||
"abstract": "Custom biomes for the Real Solar System",
|
||||
"license": "CC-BY-NC-SA",
|
||||
"release_status": "stable",
|
||||
"ksp_version": "any",
|
||||
"depends": [
|
||||
{
|
||||
"name": "RealSolarSystem"
|
||||
},
|
||||
{
|
||||
"name": "CustomBiomes"
|
||||
}
|
||||
],
|
||||
"provides": [
|
||||
"CustomBiomesData"
|
||||
],
|
||||
"conflicts": [
|
||||
{
|
||||
"name": "CustomBiomesData"
|
||||
}
|
||||
],
|
||||
"resources": {
|
||||
"homepage": "http://forum.kerbalspaceprogram.com/threads/55145",
|
||||
"github": {
|
||||
"url": "https://github.com/NathanKell/RealSolarSystem"
|
||||
}
|
||||
},
|
||||
"install": [
|
||||
{
|
||||
"file": "CustomBiomes",
|
||||
"install_to": "GameData",
|
||||
"comment": "This regexp only installs PluginData, and nothing else",
|
||||
"filter_regexp": "^(?!CustomBiomes/PluginData/)"
|
||||
}
|
||||
],
|
||||
"author": "NathanKell",
|
||||
"version": "v8.2.1",
|
||||
"download": "https://github.com/NathanKell/RealSolarSystem/releases/download/v8.2.1/RealSolarSystem_v8.2.1.zip",
|
||||
"x_generated_by": "netkan",
|
||||
"download_size": 221951
|
||||
}
|
|
@ -16,6 +16,9 @@
|
|||
}
|
||||
],
|
||||
"recommends": [
|
||||
{
|
||||
"name": "CustomBiomesRSS"
|
||||
},
|
||||
{
|
||||
"name": "RealismOverhaul"
|
||||
},
|
||||
|
@ -35,16 +38,6 @@
|
|||
"install_to": "GameData"
|
||||
}
|
||||
],
|
||||
"bundles": [
|
||||
{
|
||||
"file": "CustomBiomes",
|
||||
"identifier": "CustomBiomes",
|
||||
"version": "1.6.6",
|
||||
"install_to": "GameData",
|
||||
"license": "CC-BY-NC-SA",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"author": "NathanKell",
|
||||
"version": "v8.2.1",
|
||||
"download": "https://github.com/NathanKell/RealSolarSystem/releases/download/v8.2.1/RealSolarSystem_v8.2.1.zip",
|
||||
|
|
Loading…
Reference in New Issue