From 695d8b1c3b8bc1578126317791cfd2f037e57d94 Mon Sep 17 00:00:00 2001 From: QuickBASIC Date: Tue, 16 Aug 2016 16:22:58 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 277bed0..429f433 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ISRUThanksButNoTanks -ModuleManager Script to allow mining and converting ore (with ISRU) without Ore storage tanks. (Adds small amount of storage to all ISRUs.) +ModuleManager Script to allow mining and converting Ore without storage tanks. It does this by adding a small amount of Ore storage to all ISRUs. + +Supports ISRUs in Stockalike Mining Extension by SuicidalInsanity. https://github.com/SuicidalInsanity/Stockalike-Mining-Extension From 4c44a5adf5f943150f2e95cf1b6b65c026f98933 Mon Sep 17 00:00:00 2001 From: QuickBASIC Date: Tue, 16 Aug 2016 16:24:19 -0400 Subject: [PATCH 2/4] Create ISRUThanksButNoTanks.cfg --- ISRUThanksButNoTanks.cfg | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ISRUThanksButNoTanks.cfg diff --git a/ISRUThanksButNoTanks.cfg b/ISRUThanksButNoTanks.cfg new file mode 100644 index 0000000..9836db4 --- /dev/null +++ b/ISRUThanksButNoTanks.cfg @@ -0,0 +1,43 @@ +//Stock ISRU +@PART[ISRU] { + %RESOURCE + { + name = Ore + amount = 0 + maxAmount = 2 + } +} +@PART[MiniISRU] { + %RESOURCE + { + name = Ore + amount = 0 + maxAmount = 1 + } +} + +//Stockalike Mining Extension +@PART[SMX_Mk2ISRURefinery]:NEEDS[MiningExpansion]:AFTER[MiningExpansion] { + %RESOURCE + { + name = Ore + amount = 0 + maxAmount = 1 + } +} +@PART[SMX_Size0ISRU]:NEEDS[MiningExpansion]:AFTER[MiningExpansion] { + %RESOURCE + { + name = Ore + amount = 0 + maxAmount = 0.5 + } +} +@PART[SMX_Size3ISRU]:NEEDS[MiningExpansion]:AFTER[MiningExpansion] { + %RESOURCE + { + name = Ore + amount = 0 + maxAmount = 4 + } +} From 8f43013d62531213b9ef06fa8f58e37ddfa8dd32 Mon Sep 17 00:00:00 2001 From: QuickBASIC Date: Tue, 16 Aug 2016 16:25:20 -0400 Subject: [PATCH 3/4] Create ISRUThanksButNoTanks.version --- ISRUThanksButNoTanks.version | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ISRUThanksButNoTanks.version diff --git a/ISRUThanksButNoTanks.version b/ISRUThanksButNoTanks.version new file mode 100644 index 0000000..47a6884 --- /dev/null +++ b/ISRUThanksButNoTanks.version @@ -0,0 +1,30 @@ + +{ + "NAME":"ISRU Thanks But No Tanks", + "DOWNLOAD":"https://github.com/QuickBASIC/ISRUThanksButNoTanks/releases", + "VERSION": + { + "MAJOR":0, + "MINOR":1, + "PATCH":0, + "BUILD":0 + }, + "KSP_VERSION": + { + "MAJOR":1, + "MINOR":1, + "PATCH":3 + }, + "KSP_VERSION_MIN": + { + "MAJOR":1, + "MINOR":1, + "PATCH":3 + }, + "KSP_VERSION_MAX": + { + "MAJOR":1, + "MINOR":1, + "PATCH":99 + } +} From 003c979596af99f031fcdadd99803b8d43ca1735 Mon Sep 17 00:00:00 2001 From: QuickBASIC Date: Tue, 16 Aug 2016 16:26:06 -0400 Subject: [PATCH 4/4] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a8fc851 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.