Skip to content

Commit a3723d7

Browse files
committed
Support for Factorio 1.1
1 parent 308e2f5 commit a3723d7

File tree

6 files changed

+72
-21
lines changed

6 files changed

+72
-21
lines changed

LICENSE

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
This repository includes modified assets from the game "Factorio"
2+
by Wube Software Ltd., e.g. the graphics for the inserters
3+
are just recolored versions of the normal items in the game.
4+
Those assets are Copyright (C) by Wube Software Ltd. and therefore
5+
their license/usage conditions apply to them. In short, they allow
6+
pretty much any use within the "Free Mod for Factorio" sphere, but
7+
not much else. For details, check their terms of service, which
8+
at the time of writing this were available at
9+
https://www.factorio.com/terms-of-service
10+
11+
For the rest of the things in this repository:
12+
113
MIT License
214

315
Copyright (c) 2017

README.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
11
# Factorio_Fast-Long-Inserters
2-
Fast Long Inserters is a mod that adds the normal inserters in a long hand variant.
3-
4-
https://mods.factorio.com/mods/DerMistkaefer/FastLongInserters
5-
6-
# Changelog
7-
1.4.0 - Update to Factorio 1.0
8-
9-
1.3.1 - Optimizing Gui / Fix Gui Bugs
102

11-
1.3.0 - Update to Factorio 0.18
12-
13-
1.2.1 - Fix Icon Size Problems
14-
15-
1.2.0 - Update to Factorio 0.15
16-
17-
1.1.1 - Language fix
3+
Fast Long Inserters is a mod that adds the normal inserters in a long hand variant.
184

19-
1.1.0 - Add Gui for Input and Output
5+
[https://mods.factorio.com/mods/DerMistkaefer/FastLongInserters](https://mods.factorio.com/mods/DerMistkaefer/FastLongInserters)
206

21-
1.0.1 - Update to Factorio 0.14
7+
## Changelog
228

23-
1.0.0 - First Release
9+
[Factorio Changelog File](../blob/master/changelog.txt)

changelog.txt

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---------------------------------------------------------------------------------------------------
2+
Version: 1.5.0
3+
Date: 05.12.2020
4+
Features:
5+
- Support for Factorio 1.1
6+
---------------------------------------------------------------------------------------------------
7+
Version: 1.4.0
8+
Date: 14.08.2020
9+
Features:
10+
- Support for Factorio 1.0
11+
---------------------------------------------------------------------------------------------------
12+
Version: 1.3.1
13+
Date: 31.01.2020
14+
Bugfixes:
15+
- Optimizing Gui / Fix Gui Bugs
16+
---------------------------------------------------------------------------------------------------
17+
Version: 1.3.0
18+
Date: 30.01.2020
19+
Features:
20+
- Support for Factorio 0.18
21+
---------------------------------------------------------------------------------------------------
22+
Version: 1.2.1
23+
Date: 10.05.2017
24+
Bugfixes:
25+
- Fix Icon Size Problems
26+
---------------------------------------------------------------------------------------------------
27+
Version: 1.2.0
28+
Date: xx.xx.2017
29+
Features:
30+
- Support for Factorio 0.15
31+
---------------------------------------------------------------------------------------------------
32+
Version: 1.1.0
33+
Date: xx.xx.2016
34+
Features:
35+
- Add Gui for Input and Output Range of Inserters
36+
---------------------------------------------------------------------------------------------------
37+
Version: 1.0.1
38+
Date: xx.xx.2016
39+
Features:
40+
- Support for Factorio 0.14
41+
---------------------------------------------------------------------------------------------------
42+
Version: 1.0.0
43+
Date: xx.xx.2016
44+
Features:
45+
- First Release

data.lua

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,13 @@ function FastLongInserter_addEntity(base,baseName)
6161
local baseGraphics = "__".. FLI.modName .."__/graphics/entity/"
6262
local baseGraphicsInserter = baseGraphics .. baseName .. "/" .. baseName
6363
obj.hand_base_picture.filename = baseGraphics .. "inserter-hand-base.png"
64-
obj.hand_closed_picture.filename = baseGraphicsInserter .. "-hand-closed.png"
64+
obj.hand_base_picture.hr_version = null
65+
obj.hand_closed_picture.filename = baseGraphicsInserter .. "-hand-closed.png"
66+
obj.hand_closed_picture.hr_version = null
6567
obj.hand_open_picture.filename = baseGraphicsInserter .. "-hand-open.png"
68+
obj.hand_open_picture.hr_version = null
6669
obj.platform_picture.sheet.filename = baseGraphics .. "inserter-platform.png"
70+
obj.platform_picture.sheet.hr_version = null
6771

6872
obj.pickup_position = {0, -2}
6973
obj.insert_position = {0, 2.2}
@@ -95,9 +99,13 @@ function FastLongInserter_addEntityG(base,baseName,GhostName)
9599
local baseGraphics = "__".. FLI.modName .."__/graphics/entity/Ghost/"
96100
local baseGraphicsInserter = baseGraphics .. baseName .. "/" .. baseName
97101
obj.hand_base_picture.filename = baseGraphics .. "inserter-hand-base.png"
102+
obj.hand_base_picture.hr_version = null
98103
obj.hand_closed_picture.filename = baseGraphics .. "Ghost-hand-closed.png"
104+
obj.hand_closed_picture.hr_version = null
99105
obj.hand_open_picture.filename = baseGraphics .. "Ghost-hand-open.png"
106+
obj.hand_open_picture.hr_version = null
100107
obj.platform_picture.sheet.filename = baseGraphics .. GhostName .. ".png"
108+
obj.platform_picture.sheet.hr_version = null
101109
--obj.flags = {"hidden"}
102110

103111
data.raw[obj.type][obj.name] = obj

info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "FastLongInserters",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"title": "Fast Long Inserters",
55
"author": "DerMistkaefer",
66
"contact": "http://www.dermistkaefer.com/contact",
77
"homepage": "http://www.dermistkaefer.com",
88
"description": "Fast Long Inserters is a mod that adds the normal inserters in a long hand variant.",
9-
"factorio_version": "1.0",
9+
"factorio_version": "1.1",
1010
"dependencies": ["base >= 1.0.0"]
1111
}

thumbnail.png

214 KB
Loading

0 commit comments

Comments
 (0)