Skip to content

Commit a8221f0

Browse files
committed
Bump version, create changelog
1 parent c505efc commit a8221f0

File tree

5 files changed

+77
-9
lines changed

5 files changed

+77
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Suggested approaches for minimizing damage from overflow:
2020
* Use splitter filters or smart inserters to filter trash from belts before they reach your assemblers
2121

2222
Known bugs:
23-
* Some side loading configurations overflow incorrectly
23+
https://github.com/sparr/factorio-mod-belt-overflow/issues

changelog.txt

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---------------------------------------------------------------------------------------------------
2+
Version: 1.1.0
3+
Date: ????
4+
Changes:
5+
- Version bump for Factorio 1.1
6+
- Remove unnecessary mod settings definition properties
7+
Other:
8+
- Retroactive changelog entries based on Github releases
9+
---------------------------------------------------------------------------------------------------
10+
Version: 0.17.0
11+
Date: 2019-??-??
12+
Changes:
13+
- Version bump for Factorio 0.17
14+
---------------------------------------------------------------------------------------------------
15+
Version: 0.16.0
16+
Date: 2018-05-28
17+
Changes:
18+
- Version bump for Factorio 0.16
19+
---------------------------------------------------------------------------------------------------
20+
Version: 0.15.4
21+
Date: 2017-09-17
22+
Bugfixes:
23+
- Fix crash related to math.random
24+
---------------------------------------------------------------------------------------------------
25+
Version: 0.15.1
26+
Date: 2017-05-06
27+
Bugfixes:
28+
- Fix validity check bug in the configuration change code
29+
---------------------------------------------------------------------------------------------------
30+
Version: 0.15.0
31+
Date: 2017-05-02
32+
Changes:
33+
- Version bump for Factorio 0.15 (experimental)
34+
Bugfixes:
35+
- Many, especially for underground belts
36+
---------------------------------------------------------------------------------------------------
37+
Version: 0.13.0
38+
Date: 2016-06-28
39+
Changes:
40+
- Version bump for Factorio 0.13
41+
Bugfixes:
42+
- Some
43+
---------------------------------------------------------------------------------------------------
44+
Version: 0.12.1
45+
Date: 2016-06-09
46+
Bugfixes:
47+
- Fixed problem with application of terminal belt highlight option
48+
---------------------------------------------------------------------------------------------------
49+
Version: 0.12.0
50+
Date: 2016-06-09
51+
Features:
52+
- Optional highlight of terminal belt locations
53+
Optimizations:
54+
- Major rewrite and refactor
55+
Bugfixes:
56+
- Some
57+
Other:
58+
- Mod versioning aligned with Factorio version
59+
---------------------------------------------------------------------------------------------------
60+
Version: 0.0.2
61+
Date: 2016-06-03
62+
Changes:
63+
- Items spill in a slightly better location
64+
Optimizations:
65+
- Some
66+
Bugfixes:
67+
- Some
68+
---------------------------------------------------------------------------------------------------
69+
Version: 0.0.1
70+
Date: 2016-06-01
71+
Other:
72+
- First version!
73+

info.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "belt-overflow",
3-
"version": "0.17.0",
3+
"version": "1.1.0",
44
"title": "Belt Overflow",
55
"author": "Sparr",
66
"homepage": "http://github.com/sparr/factorio-mod-belt-overflow",
77
"contact": "[email protected]",
88
"description": "Causes full belts to overflow at the end.",
9-
"dependencies": ["base >= 0.17.0"],
10-
"factorio_version": "0.17"
9+
"factorio_version": "1.1"
1110
}

license.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017 Clarence "Sparr" Risher
1+
Copyright (c) 2021 Clarence "Sparr" Risher
22
Copyright (c) 2015 GopherAtl
33

44
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:

settings.lua

-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ data:extend(
44
type = "int-setting",
55
name = "belt_overflow_poll_frequency",
66
setting_type = "runtime-global",
7-
per_user = "false",
8-
admin = "true",
97
default_value = 20,
108
minimum_value = 1,
119
maximum_value = 60
@@ -14,8 +12,6 @@ data:extend(
1412
type = "bool-setting",
1513
name = "belt_overflow_draw_indicators",
1614
setting_type = "runtime-global",
17-
per_user = "false",
18-
admin = "true",
1915
default_value = false
2016
}
2117
}

0 commit comments

Comments
 (0)