Skip to content

Commit

Permalink
Merge branch '1.21.0' of D:\Repos\Minecraft\SFM\repos\SuperFactoryMan…
Browse files Browse the repository at this point in the history
…ager 1.21.0 into 1.21.1
  • Loading branch information
TeamDman committed Aug 26, 2024
2 parents 77eec97 + 1cf123c commit dabf21a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ For each version:
1.20.1 -> Forge+NeoForge
1.20.2.. -> NeoForge
}
Java=Java 17
Java=match mc version {
..1.20.4 -> Java 17
1.21.. -> Java 21
}
Minecraft=$version
Changelog= <<
```
Expand Down
10 changes: 9 additions & 1 deletion actions/Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ d---- 2024-04-14 1:39 PM SuperFactoryManager 1.20.2
d---- 2024-04-14 1:39 PM SuperFactoryManager 1.20.3
#>

$chosen = $repo_clones `
| ForEach-Object { $_.Name } `
| fzf `
--multi `
--bind "ctrl-a:select-all,ctrl-d:deselect-all,ctrl-t:toggle-all" `
--header "Pick versions to build"
$chosen_objs = $repo_clones | Where-Object { $chosen -contains $_.Name }

# Perform build
foreach ($repo in $repo_clones) {
foreach ($repo in $chosen) {
try {
Push-Location $repo
Write-Host "Running build for $repo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ END
-- Fix tooltips for manager screen showing over the program edit screen... again
-- Add `/sfm export_info` client command to dump item and recipe info
-- Update SFM 1.21.1 build to fix broken Mekanism compatibility
---- gas::, infusion::, etc are now aliases for chemical::

---- 4.18.0 ----
-- Add 1.21.0 build with Mekanism support
Expand Down

0 comments on commit dabf21a

Please sign in to comment.