Merge pull request #10 from mamoniot/experimental

version 1.1.1
This commit is contained in:
Monica Moniot
2022-12-08 18:56:18 -05:00
committed by GitHub
4 changed files with 60 additions and 115 deletions

View File

@@ -1,116 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.1.0
Date: 2022-11-04
Version: 1.1.1
Date: 2022-12-8
Changes:
- Pre-Alpha release
---------------------------------------------------------------------------------------------------
Version: 0.2.0
Date: 2022-11-10
Changes:
- Removed provide-threshold
- Added ability to specify station type on a cybernetic combinator
---------------------------------------------------------------------------------------------------
Version: 0.2.1
Date: 2022-11-11
Changes:
- Minor bugfixes and performance improvements
---------------------------------------------------------------------------------------------------
Version: 0.3.0
Date: 2022-11-13
Changes:
- Added warmup period on just built stations
---------------------------------------------------------------------------------------------------
Version: 0.4.0
Date: 2022-11-15
Changes:
- Fixed copy-paste
- Added alert sounds
---------------------------------------------------------------------------------------------------
Version: 0.4.1
Date: 2022-11-20
Changes:
- Bugfix with train allow-list
---------------------------------------------------------------------------------------------------
Version: 0.4.2
Date: 2022-11-22
Changes:
- Bugfix with station warmup time
---------------------------------------------------------------------------------------------------
Version: 0.4.3
Date: 2022-11-24
Changes:
- Added a stuck train alert
- Improved localization
- Fixed bug with fluid cargo not being detected by depots
---------------------------------------------------------------------------------------------------
Version: 0.4.4
Date: 2022-11-25
Changes:
- Greatly improved automatic train allow-list logic
---------------------------------------------------------------------------------------------------
Version: 0.5.0
Date: 2022-11-25
Changes:
- Added SE space elevator compat
---------------------------------------------------------------------------------------------------
Version: 0.5.1
Date: 2022-11-25
Changes:
- Re-added combinator copy-paste after fixing major bug
- Fixed bugs within train allow-list logic
- Fixed a crash
---------------------------------------------------------------------------------------------------
Version: 1.0.0
Date: 2022-11-29
Changes:
- Minor bugfix
- Added placeholder sprites
---------------------------------------------------------------------------------------------------
Version: 1.0.2
Date: 2022-11-29
Changes:
- Added mod description
- Added update rate setting
---------------------------------------------------------------------------------------------------
Version: 1.0.3
Date: 2022-11-30
Changes:
- Fixed a bug where duplicate orders could not be prevented on stations that share the same pool of items
---------------------------------------------------------------------------------------------------
Version: 1.0.4
Date: 2022-11-30
Changes:
- Allowed several settings to have floating point values
- Allow updates per second to be set to 0
- Fixed a bug where parallel wagon control combinators were not working
---------------------------------------------------------------------------------------------------
Version: 1.0.5
Date: 2022-11-30
Changes:
- Fixed a crash related to the central planner
---------------------------------------------------------------------------------------------------
Version: 1.0.6
Date: 2022-11-30
Changes:
- Added depot bypass
- Increased inactivity time so burner inserters are fast enough to trigger it
---------------------------------------------------------------------------------------------------
Version: 1.0.7
Date: 2022-12-1
Changes:
- Fixed a crash relating to depot bypass through space elevators
---------------------------------------------------------------------------------------------------
Version: 1.0.8
Date: 2022-12-2
Changes:
- Fixed a bug with combinator displays not updating correctly
- Improved combinator display performance
- Added a modding interface
---------------------------------------------------------------------------------------------------
Version: 1.0.9
Date: 2022-12-3
Changes:
- Fixed a bug with SE compat preventing players from joining multiplayer games
- Fixed a crash when removing a fuel loader
- Fixed a gui bug
---------------------------------------------------------------------------------------------------
Version: 1.1.0
Date: 2022-12-8
@@ -121,3 +14,55 @@ Date: 2022-12-8
- Made non-backwards compatible improvements and bugfixes to the modding interface
- Updated localization
- Fixed a crash relating to wagon control combinators on request stations
---------------------------------------------------------------------------------------------------
Version: 1.0.9
Date: 2022-12-3
Changes:
- Fixed a bug with SE compat preventing players from joining multiplayer games
---------------------------------------------------------------------------------------------------
Version: 1.0.8
Date: 2022-12-2
Changes:
- Fixed a bug with combinator displays not updating correctly
- Improved combinator display performance
- Added a modding interface
---------------------------------------------------------------------------------------------------
Version: 1.0.7
Date: 2022-12-1
Changes:
- Fixed a crash relating to depot bypass through space elevators
---------------------------------------------------------------------------------------------------
Version: 1.0.6
Date: 2022-11-30
Changes:
- Added depot bypass
- Increased inactivity time so burner inserters are fast enough to trigger it
---------------------------------------------------------------------------------------------------
Version: 1.0.5
Date: 2022-11-30
Changes:
- Fixed a crash related to the central planner
---------------------------------------------------------------------------------------------------
Version: 1.0.4
Date: 2022-11-30
Changes:
- Allowed several settings to have floating point values
- Allow updates per second to be set to 0
- Fixed a bug where parallel wagon control combinators were not working
---------------------------------------------------------------------------------------------------
Version: 1.0.3
Date: 2022-11-30
Changes:
- Fixed a bug where duplicate orders could not be prevented on stations that share the same pool of items
---------------------------------------------------------------------------------------------------
Version: 1.0.2
Date: 2022-11-29
Changes:
- Added mod description
- Added update rate setting
---------------------------------------------------------------------------------------------------
Version: 1.0.0
Date: 2022-11-29
Changes:
- Minor bugfix
- Added placeholder sprites

View File

@@ -1,6 +1,6 @@
{
"name": "cybersyn",
"version": "1.1.0",
"version": "1.1.1",
"title": "Project Cybersyn",
"author": "Mami",
"factorio_version": "1.1",

View File

@@ -89,8 +89,8 @@ function gui_opened(comb, player)
window.preview.entity = comb
window.titlebar.drag_target = window.main_window
window.main_window.force_auto_center()
local uses_network = selected_index == 1 or selected_index == 3 or selected_index == 4
local uses_allow_list = selected_index == 1 or selected_index == 4
local uses_network = selected_index == 1 or selected_index == 2 or selected_index == 3
local uses_allow_list = selected_index == 1 or selected_index == 3
window.network.visible = uses_network
window.network_label.visible = uses_network
window.radio_button.visible = uses_allow_list

View File

@@ -373,7 +373,7 @@ function on_combinator_broken(map_data, comb)
else
local refueler = map_data.refuelers[id]
if refueler and refueler.entity_comb == comb then
on_refueler_broken(map_data, id, depot)
on_refueler_broken(map_data, id, refueler)
on_stop_built(map_data, stop, comb)
end
end