Skip to content

Commit dc4b02f

Browse files
committed
added version 2.0.39
1 parent 57a1dac commit dc4b02f

File tree

8 files changed

+38
-10
lines changed

8 files changed

+38
-10
lines changed

base/data-updates.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ local function create_empty_barrel_recipe(item, fluid)
191191
allow_decomposition = false,
192192
hide_from_player_crafting = true,
193193
factoriopedia_alternative = "barrel",
194-
hide_from_signal_gui = false
194+
hide_from_signal_gui = false,
195+
unlock_results = false
195196
}
196197

197198
data:extend({recipe})

base/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "base",
3-
"version": "2.0.39",
3+
"version": "2.0.40",
44
"title": "Base Mod",
55
"author": "Wube Software",
66
"contact": "[email protected]",

changelog.txt

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
11
---------------------------------------------------------------------------------------------------
2-
Version: 2.0.39
2+
Version: 2.0.40
33
Date: ????
44
---------------------------------------------------------------------------------------------------
5+
Version: 2.0.39
6+
Date: 05. 03. 2025
7+
Changes:
8+
- Added extra info about the evaluation order and dependencies into the blueprint parametrisation UI.
9+
Bugfixes:
10+
- Fixed not being able to interact with GUI elements behind transparent parts of other windows. (https://forums.factorio.com/119608)
11+
- Fixed display panels not drawing text correctly at larger GUI scales. (https://forums.factorio.com/122533)
12+
- Fixed a crash related to placing cargo landing pads on space platforms. (https://forums.factorio.com/127260)
13+
- Fixed a crash when rendering thrusters without fire plumes defined. (https://forums.factorio.com/127265)
14+
- Fixed that fast-transfer of ghost modules did not work for out of reach entities. (https://forums.factorio.com/122150)
15+
- Fixed that trains with the same top in their schedule would not move between stops even if the one it is waiting at is disabled. (https://forums.factorio.com/118475)
16+
- Fixed decider combinator GUI signals tables getting squashed too much when there are a lot of conditions/outputs. (https://forums.factorio.com/126808)
17+
- Fixed intro sound not respecting music-muted and master-muted settings. (https://forums.factorio.com/127154)
18+
- Fixed graphical issue happening when lightning attractor's collection range boundary was touching larger range attractor's collection range boundary from the inside. (https://forums.factorio.com/122739)
19+
- Fixed incorrect lightning protection visualisation when surface lightning search range was larger than attractor's protection range.
20+
- Fixed overbuilding ghost with module requests with physical entity of different quality would not retain the module requests. (https://forums.factorio.com/125374)
21+
- Fixed normal building underground belts and pipes in remote view would deconstruct rocks, trees and cliffs. (https://forums.factorio.com/123925)
22+
- Fixed normal building underground belts and pipes in remote view would have missing tiles autofilled. (https://forums.factorio.com/123817)
23+
- Fixed crash in latency when upgrading ghost of elevated rails to different quality (https://forums.factorio.com/120345, https://forums.factorio.com/124222)
24+
- Fixed crash when car would collide with 0 health entity in latency (https://forums.factorio.com/126295)
25+
- Fixed splash screen progress bar size not scaling with the UI.
26+
---------------------------------------------------------------------------------------------------
527
Version: 2.0.38
628
Date: 04. 03. 2025
729
Changes:

core/prototypes/style.lua

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2668,21 +2668,27 @@ data:extend(
26682668
}
26692669
},
26702670

2671-
transparent_slot =
2671+
transparent_button =
26722672
{
26732673
type = "button_style",
26742674
parent = "button",
2675-
size = 32,
26762675
padding = 0,
26772676
default_graphical_set = {},
26782677
clicked_graphical_set = {},
26792678
hovered_graphical_set = {},
26802679
clicked_vertical_offset = 0,
2681-
draw_shadow_under_picture = true,
26822680
pie_progress_color = {0.98, 0.66, 0.22, 0.5},
26832681
left_click_sound = {}
26842682
},
26852683

2684+
transparent_slot =
2685+
{
2686+
type = "button_style",
2687+
parent = "transparent_button",
2688+
size = 32,
2689+
draw_shadow_under_picture = true
2690+
},
2691+
26862692
universe_frame =
26872693
{
26882694
type = "frame_style",

elevated-rails/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elevated-rails",
3-
"version": "2.0.39",
3+
"version": "2.0.40",
44
"title": "Elevated Rails",
55
"author": "Wube Software",
66
"contact": "[email protected]",

quality/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quality",
3-
"version": "2.0.39",
3+
"version": "2.0.40",
44
"title": "Quality",
55
"author": "Wube Software",
66
"contact": "[email protected]",

space-age/info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "space-age",
3-
"version": "2.0.39",
3+
"version": "2.0.40",
44
"title": "Space Age",
55
"author": "Wube Software",
66
"contact": "[email protected]",

space-age/prototypes/entity/entities.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,6 @@ data:extend({
16781678
},
16791679
energy_usage = "300kW",
16801680
module_slots = 4,
1681-
allowed_effects = {"consumption", "speed", "productivity", "pollution", "quality"},
16821681
icons_positioning =
16831682
{
16841683
{inventory_index = defines.inventory.lab_modules, shift = {0, 1.6}},

0 commit comments

Comments
 (0)