This commit is contained in:
Theenoro 2024-11-02 04:36:12 +01:00
parent 99336d0d62
commit fd89b67f8f
4 changed files with 26 additions and 10 deletions

View File

@ -5,13 +5,18 @@ More Uranium-235 (original by NancyBDrew)
This mod sets the ratio to 5% U235 95% U238. This mod sets the ratio to 5% U235 95% U238.
## Versions ## Versions
* 0.0.5 - adding 2 more recipes. One for recyceling and one for enrichment.
* 0.0.4 - complete rewrite for 2.0 with some recycle functions * 0.0.4 - complete rewrite for 2.0 with some recycle functions
* 0.0.3 05/95 produce * 0.0.3 05/95 produce
* 0.0.2 50/50 produce * 0.0.2 50/50 produce
* 0.0.1 Initial release * 0.0.1 Initial release
## Infos
#### 0.0.5
The icons I used are AI generated cause I would say I'm unable to create something of my own. I'm really really sorry for that.
## License ## License
MIT license MIT license

View File

@ -1,8 +0,0 @@
powershell rm tmp -r -force
powershell mkdir tmp
powershell cp -r src tmp
powershell mv tmp/src tmp/more-u235_extended
cd tmp
powershell Compress-Archive ./more-u235_extended ../dist/more-u235_extended.zip
cd ..
powershell rm tmp -r -force

19
pack.ps1 Normal file
View File

@ -0,0 +1,19 @@
#
#
#
#
Write-Host "PACK MOD"
$code = Get-Content .\src\info.json -Raw | ConvertFrom-Json
$name = $code.name + "_" + $code.version
Write-Host ("Packing as $name")
rm tmp -r -force
mkdir tmp
cp -r src tmp
cp README.md tmp/src
mv "tmp/src" "tmp/$name"
cd tmp
Compress-Archive "./$name" "../dist/$name.zip"
cd ..
rm tmp -r -force

View File

@ -1,6 +1,6 @@
{ {
"name": "more-u235_50_50", "name": "more-u235_50_50",
"version": "0.0.4", "version": "0.0.5",
"factorio_version": "2.0", "factorio_version": "2.0",
"title": "More Uranium-235 05/95", "title": "More Uranium-235 05/95",
"author": "Theenoro", "author": "Theenoro",