Skip to content

Commit

Permalink
1.7.0 + Minecraft 1.19.4 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
retrixe committed Apr 6, 2023
1 parent ff40068 commit 657c2a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func InteractiveCliInstall() {

// Detect if update is possible.
updatableVersions := getUpdatableVersions()
versions := "1.14.4/1.15.2/1.16.5/1.17.1/1.18.2/1.19.3"
versions := "1.14.4/1.15.2/1.16.5/1.17.1/1.18.2/1.19.4"
if len(updatableVersions) > 0 {
versions += " (updatable: " + strings.Join(updatableVersions, ", ") + ")"
}
Expand Down Expand Up @@ -68,7 +68,7 @@ func InteractiveCliInstall() {
selectedVersion = getMajorMinecraftVersion(takeInput(
"Version of Minecraft to use? ["+versions+"]",
&Inputs{
"1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.2", "1.19.3",
"1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.2", "1.19.4",
"1.14", "1.15", "1.16", "1.17", "1.18", "1.19",
},
))
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
)

const modpackVersion = "1.6.0"
const modpackVersion = "1.7.0"
const defaultVersion = "1.19"

var selectedVersion = defaultVersion
Expand Down
2 changes: 1 addition & 1 deletion ui/src/screens/VersionSelectionScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const VersionSelectionScreen = ({ setCurrentStep, minecraftVersion, setMinecraft
</Typography>
<FormControl>
<RadioGroup value={minecraftVersion} onChange={event => setMinecraftVersion(event.target.value)}>
<FormControlLabel value='1.19' control={<Radio />} label={l('1.19', 'Minecraft 1.19.3')} />
<FormControlLabel value='1.19' control={<Radio />} label={l('1.19', 'Minecraft 1.19.4')} />
<FormControlLabel value='1.18' control={<Radio />} label={l('1.18', 'Minecraft 1.18.2')} />
<FormControlLabel value='1.17' control={<Radio />} label={l('1.17', 'Minecraft 1.17.1 (UNSUPPORTED)')} />
<FormControlLabel value='1.16' control={<Radio />} label={l('1.16', 'Minecraft 1.16.5 (UNSUPPORTED)')} />
Expand Down

0 comments on commit 657c2a1

Please sign in to comment.