Skip to content

Commit 6e8239e

Browse files
authored
Release version 1.1.1 (#730)
2 parents adcd71f + 4d5e9e5 commit 6e8239e

File tree

450 files changed

+17782
-5565
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

450 files changed

+17782
-5565
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
*.zip
33
*.dat
44
mod-list.json
5+
56
# Python
67
__pycache__/
8+
79
# IDE config
810
.idea/
911
.vscode/
12+
13+
# Unit test files
14+
angelsdev-unit-test/log/
1015
run_unit_tests_PWJ.bat

angelsaddons-cab/changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---------------------------------------------------------------------------------------------------
22
Version: 0.2.8
3-
Date: ##.##.202#
3+
Date: 19.12.2021
44
Changes:
55
- Added tips and tricks for the CAB
66
---------------------------------------------------------------------------------------------------

angelsaddons-cab/locale/en/cab.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ deploy-driveSpeed=Cannot deploy the __ENTITY__angels-cab__ while the vehicle is
4747
deploy-alreadyDeployed=Cannot deploy the __ENTITY__angels-cab__ when it's already deployed.
4848
deploy-noEnergyInterface=Cannot deploy the __ENTITY__angels-cab__ if there is no __1__ in the grid.
4949
undeploy-notDeployed=The __ENTITY__angels-cab__ wasn't deployed.
50-
deployed-driveSpeed=The __ENTITY__angels-cab__ can't move while beiing deployed.
50+
deployed-driveSpeed=The __ENTITY__angels-cab__ can't move while being deployed.
5151
grid-noEnergyInterfaceRemoval=Cannot remove __1__ while it is in use. Undeploy the __ENTITY__angels-cab__ first.
5252
grid-noSecondEnergyInterfaceInsertion=Cannot insert more than one __1__ into this grid.
5353
grid-noPreviousEnergyInterfacePresent=Cannot insert __1__ when the previous tier is not present in this grid.

angelsaddons-mobility/locale/en/tips-and-tricks.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
angelsaddons-mobility=Angel's Addons (Mass Transit) Mobility
33
44
[tips-and-tricks-description]
5-
angelsaddons-mobility=This mod adds a variety of angels themed trains independantly of angels modset.\nThe three themed trains include [img=item/crawler-locomotive]Crawler, [img=item/smelting-locomotive-1]Smelting, and [img=item/petro-locomotive-1]Petrochem.\nEach train theme has different working values such as mass, power, capacity, braking, and max speed.\n\n[font=default-bold]NOTES[/font]: Each train (with some small exceptions) has compatible copy/paste information including schedule, color, and these are also blueprint compatible.
5+
angelsaddons-mobility=This mod adds a variety of angels themed trains independently of angels modset.\nThe three themed trains include [img=item/crawler-locomotive]Crawler, [img=item/smelting-locomotive-1]Smelting, and [img=item/petro-locomotive-1]Petrochem.\nEach train theme has different working values such as mass, power, capacity, braking, and max speed.\n\n[font=default-bold]NOTES[/font]: Each train (with some small exceptions) has compatible copy/paste information including schedule, color, and these are also blueprint compatible.
66
angelsaddons-mobility-notes=\n[font=default-bold]NOTES[/font]:Tenders are locomotives with high air resistance, but high power, good as a secondary locomotive for larger trains.\n[font=default-bold]NOTES[/font]:Bot wagons are cargo wagons which can use roboport equipment.

angelsaddons-storage/changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 0.0.8
3+
Date: 19.12.2021
4+
Bugfixes:
5+
- Fixed technology cost of logistics silos when not playing with bobslogisitcs
6+
- Fixed technology cost of logistics warehouses when not playing with bobslogisitcs
7+
---------------------------------------------------------------------------------------------------
28
Version: 0.0.7
39
Date: 10.08.2021
410
Changes:

angelsaddons-storage/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angelsaddons-storage",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"factorio_version": "1.1",
55
"title": "Angel's Addons - Storage Options",
66
"author": "Arch666Angel",

angelsaddons-storage/locale/en/tips-and-tricks.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
angelsaddons-storage=Angel's Addons Storage Options
33
44
[tips-and-tricks-description]
5-
angelsaddons-storage=This mod adds a variety of angels silos, warehouses and pressure tanks independantly of angels modset.
5+
angelsaddons-storage=This mod adds a variety of angels silos, warehouses and pressure tanks independently of angels modset.
66
angelsaddons-storage-notes=\n\n[font=default-bold]NOTES[/font]: Silos are 4x4 storage boxes with 256 slots (logistics versions vary)\n[font=default-bold]NOTES[/font]: Warehouses are 6x6 storage boxes with 768 slots (logistics versions vary)\n[font=default-bold]NOTES[/font]: Fluid storage tanks contain larger volumes than vanilla

angelsaddons-storage/prototypes/overrides/silos.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,14 @@ if angelsmods.industries then
6666
data.raw["item-subgroup"]["angels-silo"].order = "ac[chests-silo]"
6767
data.raw["item-subgroup"]["angels-ore-silo"].group = "angels-logistics"
6868
data.raw["item-subgroup"]["angels-ore-silo"].order = "ac[chests-silo]"
69+
end
70+
71+
--OVERRIDE FOR BOBS
72+
--LOGISTICS
73+
if angelsmods.addons.storage.silos then
74+
if mods["boblogistics"] then
75+
else
76+
table.insert(data.raw.technology["logistic-silos"].unit.ingredients,
77+
{type = "item", name = "utility-science-pack", amount = 1})
78+
end
6979
end
Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1-
if angelsmods.addons.storage.icon_scaling then
2-
if angelsmods.addons.storage.warehouses then
1+
if angelsmods.addons.storage.warehouses then
2+
if angelsmods.addons.storage.icon_scaling then
33
data.raw["container"]["angels-warehouse"].scale_info_icons = true
44
data.raw["logistic-container"]["angels-warehouse-passive-provider"].scale_info_icons = true
55
data.raw["logistic-container"]["angels-warehouse-active-provider"].scale_info_icons = true
66
data.raw["logistic-container"]["angels-warehouse-storage"].scale_info_icons = true
77
data.raw["logistic-container"]["angels-warehouse-requester"].scale_info_icons = true
88
data.raw["logistic-container"]["angels-warehouse-buffer"].scale_info_icons = true
99
end
10-
end
1110

12-
--OVERRIDE FOR ANGELS
13-
--INDUSTRIES
14-
if angelsmods.industries then
15-
data.raw["item-subgroup"]["angels-warehouse"].group = "angels-logistics"
16-
data.raw["item-subgroup"]["angels-warehouse"].order = "ad[chests-warehouse]"
11+
--OVERRIDE FOR ANGELS
12+
--INDUSTRIES
13+
if angelsmods.industries then
14+
data.raw["item-subgroup"]["angels-warehouse"].group = "angels-logistics"
15+
data.raw["item-subgroup"]["angels-warehouse"].order = "ad[chests-warehouse]"
16+
end
17+
18+
--OVERRIDE FOR BOBS
19+
--LOGISTICS
20+
if mods["boblogistics"] then
21+
else
22+
table.insert(data.raw.technology["angels-logistic-warehouses"].unit.ingredients,
23+
{type = "item", name = "utility-science-pack", amount = 1})
24+
end
25+
1726
end

0 commit comments

Comments
 (0)