9 Commits
1_0_1 ... main

Author SHA1 Message Date
68555904cf Update README.md
Removed link to mod downloader.
2025-07-12 03:45:40 +02:00
6e06b55fc2 Quick changelog fix #2 2024-10-21 17:47:02 +02:00
59e811a9b7 Quick changelog fix 2024-10-21 17:44:41 +02:00
10808b100e Return from the dead update! 2024-10-21 17:15:16 +02:00
d5f21e0575 New format 2024-03-28 22:44:42 +01:00
ed9f88f340 Delete changelog.txt 2024-03-28 22:21:19 +01:00
f4adbe7d94 Add files via upload 2024-01-08 01:27:40 +01:00
253aba7e9a Delete bigger-concrete-stack_0.1.1.zip 2024-01-08 01:17:19 +01:00
dab32498d6 Update CHANGELOG.md 2023-11-11 11:17:58 +01:00
14 changed files with 210 additions and 28 deletions

13
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug"
}
]
}

16
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"factorio.versions": [
{
"name": "Factorio_ModDev",
"factorioPath": "c:\\BARTL\\Factorio_ModDev\\bin\\x64\\factorio.exe",
"active": true
}
],
"Lua.workspace.library": [
"c:\\BARTL\\Factorio_1.1.107\\data"
],
"Lua.workspace.userThirdParty": [
"c:\\Users\\bartl\\AppData\\Roaming\\Code\\User\\workspaceStorage\\7b372f3bc38d2196850595c27863ee9c\\justarandomgeek.factoriomod-debug\\sumneko-3rd"
],
"Lua.workspace.checkThirdParty": "ApplyInMemory"
}

View File

@ -1,20 +1,35 @@
# Version: 1.0.0
Date: 10.11.2023
Changes:
- Added settings to change stack sizes (deafult: 1000)
- Added support for hazard concrete
- Mod no longer changes concrete recipes
Fixes:
- Because mod no loger changes recipes, concrete recipe is no longer broken (sorry for this terrible bug)
# Version: 0.1.1
Fixes:
- Added missing thumbnail.png file
# Version: 0.1.0
Changes:
- Initial release.
# Version 2.0.0 [21-10-2023]
### Changes
- Completely redone file structure to make future changes easier
- Updated to Factorio 2.0
- Mod is no longer deprecated (yay)
# Version 1.0.1 [11-11-2023]
### Features:
- Added polish locales
# Version 1.0.0 [10-11-2023]
### Changes:
- Added settings to change stack sizes (deafult: 1000)
- Added support for hazard concrete
- Mod no longer changes concrete recipes
### Fixes:
- Because mod no loger changes recipes, concrete recipe is no longer broken (sorry for this terrible bug)
# Version 0.1.1 [unknown]
### Fixes:
- Added missing thumbnail.png file
# Version 0.1.0 [date unknown]
### Changes:
- Initial release.

View File

@ -1,8 +1,5 @@
# Bigger concrete stack
This mod makes cocrete stacks bigger.
You can find mod on factorio mod portal:
https://mods.factorio.com/mod/bigger-concrete-stack
Don't have factorio? No problem! Go here:
https://re146.dev/factorio/mods/en#https://mods.factorio.com/mod/bigger-concrete-stack
# Bigger concrete stack
This mod makes cocrete stacks bigger.
You can find mod on factorio mod portal:
https://mods.factorio.com/mod/bigger-concrete-stack

View File

@ -0,0 +1,29 @@
---------------------------------------------------------------------------------------------------
Version: 2.0.0
Date: 21.10.2024
Changes:
- Completely redone file structure to make future changes easier
- Updated to Factorio 2.0
- Mod is no longer deprecated (yay)
---------------------------------------------------------------------------------------------------
Version: 1.0.1
Date: 11.11.2023
Features:
- Added polish locales
---------------------------------------------------------------------------------------------------
Version: 1.0.0
Date: 10.11.2023
Changes:
- Added settings to change stack sizes (deafult: 1000)
- Added support for hazard concrete
- Mod no longer changes concrete recipes
Fixes:
- Because mod no loger changes recipes, concrete recipe is no longer broken (sorry for this terrible bug)
---------------------------------------------------------------------------------------------------
Version: 0.1.1
Fixes:
- Added missing thumbnail.png file
---------------------------------------------------------------------------------------------------
Version: 0.1.0
Changes:
- Initial release.

View File

@ -0,0 +1,4 @@
-- Vanilla
if mods['base'] then
require('vanilla.data')
end

View File

@ -0,0 +1,9 @@
{
"name":"bigger-concrete-stack",
"version": "2.0.0",
"title":"Bigger Concrete Stack",
"author":"Crisenpuer",
"description":"This mod makes cocrete stacks bigger",
"factorio_version":"2.0",
"dependencies":[ "base" ]
}

View File

@ -0,0 +1,5 @@
[mod-setting-name]
bcs-concrete-stack-size=[VANILLA] Concrete stack size
bcs-hazard-concrete-stack-size=[VANILLA] Hazard concrete stack size
bcs-refined-concrete-stack-size=[VANILLA] Refined concrete stack size
bcs-refined-hazard-concrete-stack-size=[VANILLA] Refined hazard concrete stack size

View File

@ -0,0 +1,5 @@
[mod-setting-name]
bcs-concrete-stack-size=[VANILLA] Rozmiar stosu betonu
bcs-hazard-concrete-stack-size=[VANILLA] Rozmiar stosu betonu ostrzegawczego
bcs-refined-concrete-stack-size=[VANILLA] Rozmiar stosu żelazobetonu
bcs-refined-hazard-concrete-stack-size=[VANILLA] Rozmiar stosu żelazobetonu ostrzegawczego

View File

@ -0,0 +1,4 @@
-- Vanilla
if mods['base'] then
require('vanilla.settings')
end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,19 @@
local concreteItem = data.raw["item"]["concrete"]
concreteItem.stack_size = settings.startup["bcs-concrete-stack-size"].value
local hazardConcreteItem = data.raw["item"]["hazard-concrete"]
hazardConcreteItem.stack_size = settings.startup["bcs-hazard-concrete-stack-size"].value
data:extend({hazardConcreteItem})
data:extend({concreteItem})
local refinedConcreteItem = data.raw["item"]["refined-concrete"]
refinedConcreteItem.stack_size = settings.startup["bcs-refined-concrete-stack-size"].value
local refinedHazardConcreteItem = data.raw["item"]["refined-hazard-concrete"]
refinedHazardConcreteItem.stack_size = settings.startup["bcs-refined-hazard-concrete-stack-size"].value
data:extend({refinedConcreteItem})
data:extend({refinedHazardConcreteItem})

View File

@ -0,0 +1,45 @@
data:extend({
{
type = "int-setting",
name = "bcs-concrete-stack-size",
setting_type = "startup",
default_value = 1000,
maximum_value = 2000,
minimum_value = 50
}
})
data:extend({
{
type = "int-setting",
name = "bcs-hazard-concrete-stack-size",
setting_type = "startup",
default_value = 1000,
maximum_value = 2000,
minimum_value = 50
}
})
data:extend({
{
type = "int-setting",
name = "bcs-refined-concrete-stack-size",
setting_type = "startup",
default_value = 1000,
maximum_value = 2000,
minimum_value = 50
}
})
data:extend({
{
type = "int-setting",
name = "bcs-refined-hazard-concrete-stack-size",
setting_type = "startup",
default_value = 1000,
maximum_value = 2000,
minimum_value = 50
}
})

21
mklink.ps1 Normal file
View File

@ -0,0 +1,21 @@
#Paths
$factorio_path = "C:\BARTL\Factorio_ModDev\"
$mods_folder = "$factorio_path\mods"
$curr_path = Get-Location
#Mods
$mod1 = "bigger-concrete-stack"
# Wiązania
$link1 = "$mods_folder\$mod1"
# Ścieżki źródłowe
$src1 = "$curr_path\$mod1"
# Tworzenie linków (jeśli jeszcze nie istnieją)
if (-not (Test-Path $link1)) {
New-Item -ItemType SymbolicLink -Path $link1 -Target $src1
Write-Output "Symlink dla $mod1 został utworzony."
} else {
Write-Output "Symlink dla $mod1 już istnieje."
}