Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

106 changes: 77 additions & 29 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,90 +1,138 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.0
Date: 11/1/2020
Version: 2.0.4
Date: 2026/02/10
By: @Fr_Dae
Changes:
- Updated mod to be compatible with factorio 2.0
- added additional green color for turbo transport belts
- Date format to ISO
- Change owner
- changlog update & improve
- change name in style.lua l12 & l30
- add localisation francais
- add localisation italien
- add localisation portugaise
- add localisation espagnol
- add localisation russe
- add localisation chinoise
- add localisation japonaise
---------------------------------------------------------------------------------------------------
Version: 1.5.9
Date: 18/11/2024
Changes:
- space age should not be a required dependency
---------------------------------------------------------------------------------------------------
Version: 1.5.8
Date: 14/11/2024
Changes:
- space age compatibilty
- fix issues with pressing "n". genuinely no idea what the gui did in the past.
---------------------------------------------------------------------------------------------------
Version: 1.5.7
Date: 25/10/2024
Changes:
- fix an oopsie and update a number
---------------------------------------------------------------------------------------------------
Version: 1.5.6
Date: 25/10/2024
Changes:
- Update a number
---------------------------------------------------------------------------------------------------
Version: 1.5.5
Date: 2/18/2021
Major Features:
- Added RandomFactorioThings/PlutoniumEnergy belts.
- Added Bob's basic belt.
- Added Krastorio2 Belts.
- Fixed 5Dim belts as they were renamed.
- Added the rest of 5Dim belts.
- Added Loaders
---------------------------------------------------------------------------------------------------
Version: 1.5.4
Date: 2020/11/24
Changes:
- Update for Base v1.1.
---------------------------------------------------------------------------------------------------
Version: 1.5.3
Date: 04/30/2020
Date: 2020/04/30
Changes:
- Custom script using "none" instead of "script-only"
- Updated on_configuration_changed function
---------------------------------------------------------------------------------------------------
Version: 1.5.2
Date: 02/07/2020
Date: 2020/02/07
Major Features:
- Added startup settings to switch between mod and game colors (breaks multi-player)
---------------------------------------------------------------------------------------------------
Version: 1.5.1
Date: 01/21/2020
Date: 2020/01/21
Changes:
- Game Version 0.18.x Update.
---------------------------------------------------------------------------------------------------
Version: 1.5.0
Date: 01/05/2020
Date: 2020/01/05
Changes:
- Added colors for all modded pipes, pumps, storage tanks, heatpipes and reactors.
- Brought changelog upto standard format.
---------------------------------------------------------------------------------------------------
Version: 1.4.9
Date:
Date: 2019
Bugfixes:
- Fixed crash due to bobs technology rename.
---------------------------------------------------------------------------------------------------
Version: 1.4.8
Date:
Date: 2019
Bugfixes:
- Fixed controls hotkey locale.
Changes:
- Added changelog.
---------------------------------------------------------------------------------------------------
Version: 1.4.7
Date:
Date: 2019/02/28
Changes:
- Update to 0.17.x
- Added thumbnail.
---------------------------------------------------------------------------------------------------
Version: 1.4.6
Date:
Date: 2018/08/11
Changes:
- Sdded colors for heatpipes and reactors.
---------------------------------------------------------------------------------------------------
Version: 1.4.5
Date:
Date: 2018/04/24
Bugfixes:
- Fixed one require I missed removing in previous version.
---------------------------------------------------------------------------------------------------

Version: 1.4.4
Date:
Date: 2018/04/23
Bugfixes:
- (Broken, DO NOT USE)
- Safer sprite checks will help prevent errors with future mod changes.
---------------------------------------------------------------------------------------------------
Version: 1.4.3
Date:
Date: 2017/05/02
Bugfixes:
- Update for boblogistics belt name and tier changes.
---------------------------------------------------------------------------------------------------

Version: 1.4.2
Date:
Date: 2017/05/01
Changes:
- 0.16.x update.
---------------------------------------------------------------------------------------------------
Version: 1.4.1
Date:
Date: 2017/05/01
Changes:
- Works in 0.15.x
---------------------------------------------------------------------------------------------------
Version: 1.4.0
Date:
Version: 1.4.00
Date: 2017/04/12
Bugfixes:
- Fixes from 1.3.10
Changes:
- Removing DyTech belts.
---------------------------------------------------------------------------------------------------
Version: 1.3.10
Date:
Date: 2016
Changes:
- Changed colors for walls, turrets, accumulators, and solar panels as per 0.15. Try out the new colors before 0.15.x is released. :)
- Added colors for underground belts and splitters for all tiers and mods.
Expand All @@ -93,44 +141,44 @@ Date:
- Added English locale file.
---------------------------------------------------------------------------------------------------
Version: 1.3.9
Date:
Date: 2016
Changes:
- Removed main button. Open/close legend via custom key press "N"(default for now) changeable in settings.
- *Legend now on gui.left - recommend using Mooncats Vertical left gui mod till 0.15 is released.
---------------------------------------------------------------------------------------------------
Version: 1.3.8
Date:
Date: 2016
Bugfixes:
- Legend should no longer open for all players when any player opens legend or when a technology is researched.
---------------------------------------------------------------------------------------------------
Version: 1.3.6
Date:
Date: 2016
Bugfixes:
- Fixed bad logic using on_configuration_changed.
- Fixed gui legend height.
---------------------------------------------------------------------------------------------------
Version: 1.3.5
Date:
Date: 2016
Changes:
- GUI update.
- Update to factorio version 0.14.x with new colors
---------------------------------------------------------------------------------------------------
Version: 1.3
Date:
Date: 2015
Changes:
- Update for factorio version 0.13.x
---------------------------------------------------------------------------------------------------
Version: 1.2
Date:
Date: 2015
Minor Features:
- 5dim and DyTech belts are now colored.
---------------------------------------------------------------------------------------------------
Version: 1.1
Date:
Date: 2015
Minor Features:
- Bobsmods support
---------------------------------------------------------------------------------------------------
Version: 1.0
Date:
Date: 2015
Features:
- Base release
- Base release
7 changes: 5 additions & 2 deletions control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ end

local function rechart(msg)
pprint(msg)
game.forces.player.rechart()
for _,force in pairs(game.forces) do
force.rechart()
end
end

local function destroyOldMainGuiButton()
Expand Down Expand Up @@ -74,4 +76,5 @@ script.on_event(defines.events.on_research_finished, onResearchFinished)
--redraws map to update colors when mod is installed on old save games.
script.on_configuration_changed(modChange)

script.on_event("EMC-Hotkey", customInputForLegend) --open/close gui legend
--fix later?
--script.on_event("EMC-Hotkey", customInputForLegend) --open/close gui legend
Loading