Skip to content

Commit

Permalink
Release version 1.0.0 Patch 1 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelySanta authored Nov 16, 2020
1 parent b45c76f commit c6404a3
Show file tree
Hide file tree
Showing 233 changed files with 1,467 additions and 1,201 deletions.
9 changes: 9 additions & 0 deletions angelsbioprocessing/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
---------------------------------------------------------------------------------------------------
Version: 0.7.16
Date: 16.11.2020
Changes:
- Balanced pollution factor of bio buildings (426)
Bugfixes:
- Fixed multiple localisation errors on agriculture module (427)
- Fixed fluid colors on liquors and nutrient pulp
- Fixed pipe and animation of gasses were showing liquids
---------------------------------------------------------------------------------------------------
Version: 0.7.15
Date: 29.10.2020
Changes:
Expand Down
8 changes: 4 additions & 4 deletions angelsbioprocessing/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelsbioprocessing",
"version": "0.7.15",
"version": "0.7.16",
"factorio_version": "1.0",
"title": "Angel's Bio Processing",
"author": "Arch666Angel",
Expand All @@ -10,9 +10,9 @@
"dependencies": [
"base >= 1.0.0",

"angelsrefining >= 0.11.17",
"angelspetrochem >= 0.9.14",
"angelssmelting >= 0.6.11",
"angelsrefining >= 0.11.18",
"angelspetrochem >= 0.9.16",
"angelssmelting >= 0.6.13",

"? bobenemies >= 0.18.5"
]
Expand Down
22 changes: 11 additions & 11 deletions angelsbioprocessing/locale/en/bio-processing.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ crystal-full-red=Polished red crystal
crystal-full-green=Polished green crystal
crystal-full-harmonic=Harmonic crystal
angels-bio-yield-module=Agrecultural module
angels-bio-yield-module-2=Agrecultural module 2
angels-bio-yield-module-3=Agrecultural module 3
angels-bio-yield-module=Agriculture module
angels-bio-yield-module-2=Agriculture module 2
angels-bio-yield-module-3=Agriculture module 3
[fluid-name]
alien-spores=Alien spores
Expand Down Expand Up @@ -482,10 +482,10 @@ bio-plastic=Bio-plastics
bio-paper=Paper making
bio-wood-processing=Wood processing
bio-arboretum=Tree arboretum
bio-arboretum-temperate=Temperate tree arboretum
bio-arboretum-swamp=Swamp tree arboretum
bio-arboretum-desert=Desert tree arboretum
bio-arboretum=Arboretum
bio-arboretum-temperate=Temperate arboretum
bio-arboretum-swamp=Swamp arboretum
bio-arboretum-desert=Desert arboretum
bio-refugium-fish=Fish refugium
bio-refugium-hatchery=Hatchery
Expand All @@ -494,9 +494,9 @@ bio-refugium-puffer=Puffer refugium
bio-refugium-biter=Biter refugium
bio-refugium-hogger=Hogger refugium
angels-bio-yield-module=Agrecultural module
angels-bio-yield-module-2=Agrecultural module 2
angels-bio-yield-module-3=Agrecultural module 3
angels-bio-yield-module=Agriculture module
angels-bio-yield-module-2=Agriculture module 2
angels-bio-yield-module-3=Agriculture module 3
[item-description]
composter=Used to turn any organic material into compost.
Expand Down Expand Up @@ -534,7 +534,7 @@ angels-bio-yield-module-2=Machine will have higher yields, which will increase p
angels-bio-yield-module-3=Machine will have higher yields, which will increase productivity.

[item-limitation]
angels-yield-module-usable-only-on-agriculture=Yield modules can only be used on agriculture.
angels-yield-module-usable-only-on-agriculture=Agriculture modules can only be used for agricultural processes.

[entity-description]
bio-refugium-biter=Fenced in safely from the outside world, biters can be grown here.
Expand Down
6 changes: 3 additions & 3 deletions angelsbioprocessing/prototypes/buildings/algae-farm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ data:extend(
energy_source = {
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -100/3 * 0.5
},
energy_usage = "100kW",
ingredient_count = 4,
Expand Down Expand Up @@ -138,7 +138,7 @@ data:extend(
energy_source = {
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.03 * 60
emissions_per_minute = -100/3 * 1
},
energy_usage = "125kW",
ingredient_count = 4,
Expand Down Expand Up @@ -233,7 +233,7 @@ data:extend(
energy_source = {
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.04 * 60
emissions_per_minute = -100/3 * 1.5
},
energy_usage = "150kW",
ingredient_count = 4,
Expand Down
8 changes: 4 additions & 4 deletions angelsbioprocessing/prototypes/buildings/arboretum.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -75
},
energy_usage = "100kW",
ingredient_count = 4,
Expand Down Expand Up @@ -177,7 +177,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -75
},
energy_usage = "100kW",
ingredient_count = 4,
Expand Down Expand Up @@ -308,7 +308,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -75
},
energy_usage = "100kW",
ingredient_count = 4,
Expand Down Expand Up @@ -443,7 +443,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -100
},
energy_usage = "100kW",
ingredient_count = 4,
Expand Down
8 changes: 4 additions & 4 deletions angelsbioprocessing/prototypes/buildings/crop-farm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -40
},
energy_usage = "100kW",
--ingredient_count = 4,
Expand Down Expand Up @@ -126,7 +126,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.04 * 60
emissions_per_minute = -80
},
energy_usage = "125kW",
--ingredient_count = 4,
Expand Down Expand Up @@ -218,7 +218,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.04 * 60
emissions_per_minute = -80
},
energy_usage = "125kW",
--ingredient_count = 4,
Expand Down Expand Up @@ -310,7 +310,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.04 * 60
emissions_per_minute = -80
},
energy_usage = "125kW",
--ingredient_count = 4,
Expand Down
6 changes: 3 additions & 3 deletions angelsbioprocessing/prototypes/buildings/refugium.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -35
},
energy_usage = "150kW",
--ingredient_count = 4,
Expand Down Expand Up @@ -147,7 +147,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -30
},
energy_usage = "150kW",
--ingredient_count = 4,
Expand Down Expand Up @@ -270,7 +270,7 @@ data:extend(
{
type = "electric",
usage_priority = "secondary-input",
emissions_per_minute = -0.02 * 60
emissions_per_minute = -25
},
energy_usage = "150kW",
--ingredient_count = 4,
Expand Down
20 changes: 10 additions & 10 deletions angelsbioprocessing/prototypes/items/bio-processing-wood-paper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 218/255, g = 102/255, b = 000/255},
flow_color = {r = 255/255, g = 204/255, b = 000/255},
icon = "__angelsbioprocessing__/graphics/icons/liquid-pulping-liquor.png",
icon_size = 32,
subgroup = "bio-liquor",
Expand All @@ -83,8 +83,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 118/255, g = 037/255, b = 008/255},
flow_color = {r = 216/255, g = 129/255, b = 027/255},
icon = "__angelsbioprocessing__/graphics/icons/liquid-brown-liquor.png",
icon_size = 32,
subgroup = "bio-liquor",
Expand All @@ -98,8 +98,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 167/255, g = 167/255, b = 167/255},
flow_color = {r = 227/255, g = 227/255, b = 227/255},
icon = "__angelsbioprocessing__/graphics/icons/liquid-white-liquor.png",
icon_size = 32,
subgroup = "bio-liquor",
Expand All @@ -113,8 +113,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 030/255, g = 030/255, b = 030/255},
flow_color = {r = 097/255, g = 097/255, b = 097/255},
icon = "__angelsbioprocessing__/graphics/icons/liquid-black-liquor.png",
icon_size = 32,
subgroup = "bio-liquor",
Expand All @@ -128,8 +128,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 002/255, g = 102/255, b = 005/255},
flow_color = {r = 118/255, g = 195/255, b = 023/255},
icon = "__angelsbioprocessing__/graphics/icons/liquid-green-liquor.png",
icon_size = 32,
subgroup = "bio-liquor",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ data:extend(
subgroup = "bio-puffer-1",
order = "b",
default_temperature = 25,
gas_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=156/255, g=206/255, b=0/255},
Expand Down
17 changes: 9 additions & 8 deletions angelsbioprocessing/prototypes/items/crop-farming-processing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=0.572, g=0.392, b=0.894},
flow_color = {r=0.572, g=0.392, b=0.894},
base_color = {r = 214/255, g = 135/255, b = 010/255},
flow_color = {r = 239/255, g = 168/255, b = 044/255},
pressure_to_speed_ratio = 0.4,
flow_to_energy_ratio = 0.59,
},
Expand All @@ -85,8 +85,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=194/255, g=122/255, b=29/255},
flow_color = {r=194/255, g=122/255, b=29/255},
base_color = {r = 194/255, g = 122/255, b = 29/255},
flow_color = {r = 194/255, g = 122/255, b = 29/255},
pressure_to_speed_ratio = 0.4,
flow_to_energy_ratio = 0.59,
},
Expand All @@ -99,8 +99,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=184/255, g=171/255, b=28/255},
flow_color = {r=184/255, g=171/255, b=28/255},
base_color = {r = 255/255, g = 255/255, b = 060/255},
flow_color = {r = 255/255, g = 255/255, b = 000/255},
pressure_to_speed_ratio = 0.4,
flow_to_energy_ratio = 0.59,
},
Expand All @@ -122,8 +122,8 @@ data:extend(
default_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=184/255, g=171/255, b=28/255},
flow_color = {r=184/255, g=171/255, b=28/255},
base_color = {r = 255/255, g = 255/255, b = 255/255},
flow_color = {r = 245/255, g = 245/255, b = 245/255},
pressure_to_speed_ratio = 0.4,
flow_to_energy_ratio = 0.59,
},
Expand All @@ -135,6 +135,7 @@ data:extend(
subgroup = "bio-processor-fermentation",
order = "b[processing]-d[ethanol]",
default_temperature = 25,
gas_temperature = 25,
max_temperature = 100,
heat_capacity = "1KJ",
base_color = {r=184/255, g=171/255, b=28/255},
Expand Down
9 changes: 9 additions & 0 deletions angelsindustries/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
---------------------------------------------------------------------------------------------------
Version: 0.4.8
Date: 16.11.2020
Bugfixes:
- Changed locales for settings and their description to make them more explicit
- Regular mode:
- Tweaked localisation of welcome message info (427)
- Component mode:
- Fixed localisation error on the rocket reactor (425)
---------------------------------------------------------------------------------------------------
Version: 0.4.7
Date: 29.10.2020
Changes:
Expand Down
10 changes: 5 additions & 5 deletions angelsindustries/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelsindustries",
"version": "0.4.7",
"version": "0.4.8",
"factorio_version": "1.0",
"title": "Angel's Industries",
"author": "Arch666Angel",
Expand All @@ -10,10 +10,10 @@
"dependencies": [
"base >= 1.0.0",

"angelsrefining >= 0.11.17",
"angelspetrochem >= 0.9.15",
"angelssmelting >= 0.6.12",
"angelsbioprocessing >= 0.7.15",
"angelsrefining >= 0.11.18",
"angelspetrochem >= 0.9.16",
"angelssmelting >= 0.6.13",
"angelsbioprocessing >= 0.7.16",

"(?) bobassembly >= 0.18.6",
"(?) boblogistics >= 1.0.0",
Expand Down
Loading

0 comments on commit c6404a3

Please sign in to comment.